]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/infcmd.c
2004-04-21 Andrew Cagney <cagney@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / infcmd.c
CommitLineData
c906108c 1/* Memory-access and commands for "inferior" process, for GDB.
b6ba6518 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
e74f0f02 3 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
c906108c
SS
4 Free Software Foundation, Inc.
5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include <signal.h>
25#include "gdb_string.h"
26#include "symtab.h"
27#include "gdbtypes.h"
28#include "frame.h"
29#include "inferior.h"
30#include "environ.h"
31#include "value.h"
32#include "gdbcmd.h"
1adeb98a 33#include "symfile.h"
c906108c
SS
34#include "gdbcore.h"
35#include "target.h"
36#include "language.h"
37#include "symfile.h"
38#include "objfiles.h"
c94fdfd0 39#include "completer.h"
8b93c638 40#include "ui-out.h"
6426a772 41#include "event-top.h"
96baa820 42#include "parser-defs.h"
36160dc4 43#include "regcache.h"
f9418c0f 44#include "reggroups.h"
fe898f56 45#include "block.h"
f9418c0f 46#include <ctype.h>
92ad9cd9 47#include "gdb_assert.h"
72cec141 48
a58dd373 49/* Functions exported for general use, in inferior.h: */
c906108c 50
a14ed312 51void all_registers_info (char *, int);
c906108c 52
a14ed312 53void registers_info (char *, int);
c906108c 54
a58dd373
EZ
55void nexti_command (char *, int);
56
57void stepi_command (char *, int);
c906108c 58
a14ed312 59void continue_command (char *, int);
c906108c 60
a58dd373
EZ
61void interrupt_target_command (char *args, int from_tty);
62
63/* Local functions: */
64
65static void nofp_registers_info (char *, int);
66
11cf8741
JM
67static void print_return_value (int struct_return, struct type *value_type);
68
a14ed312 69static void finish_command_continuation (struct continuation_arg *);
43ff13b4 70
a14ed312 71static void until_next_command (int);
c906108c 72
a14ed312 73static void until_command (char *, int);
c906108c 74
a14ed312 75static void path_info (char *, int);
c906108c 76
a14ed312 77static void path_command (char *, int);
c906108c 78
a14ed312 79static void unset_command (char *, int);
c906108c 80
a14ed312 81static void float_info (char *, int);
c906108c 82
a14ed312 83static void detach_command (char *, int);
c906108c 84
6ad8ae5c
DJ
85static void disconnect_command (char *, int);
86
a14ed312 87static void unset_environment_command (char *, int);
c906108c 88
a14ed312 89static void set_environment_command (char *, int);
c906108c 90
a14ed312 91static void environment_info (char *, int);
c906108c 92
a14ed312 93static void program_info (char *, int);
c906108c 94
a14ed312 95static void finish_command (char *, int);
c906108c 96
a14ed312 97static void signal_command (char *, int);
c906108c 98
a14ed312 99static void jump_command (char *, int);
c906108c 100
a14ed312 101static void step_1 (int, int, char *);
c2d11a7d
JM
102static void step_once (int skip_subroutines, int single_inst, int count);
103static void step_1_continuation (struct continuation_arg *arg);
c906108c 104
a14ed312 105static void next_command (char *, int);
c906108c 106
a14ed312 107static void step_command (char *, int);
c906108c 108
a14ed312 109static void run_command (char *, int);
c906108c 110
a14ed312 111static void run_no_args_command (char *args, int from_tty);
392a587b 112
a14ed312 113static void go_command (char *line_no, int from_tty);
392a587b 114
a14ed312 115static int strip_bg_char (char **);
43ff13b4 116
a14ed312 117void _initialize_infcmd (void);
c906108c
SS
118
119#define GO_USAGE "Usage: go <location>\n"
120
c906108c
SS
121#define ERROR_NO_INFERIOR \
122 if (!target_has_execution) error ("The program is not being run.");
123
124/* String containing arguments to give to the program, separated by spaces.
125 Empty string (pointer to '\0') means no args. */
126
127static char *inferior_args;
128
552c04a7
TT
129/* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
130 then we must compute INFERIOR_ARGS from this (via the target). */
131
132static int inferior_argc;
133static char **inferior_argv;
134
c906108c
SS
135/* File name for default use for standard in/out in the inferior. */
136
137char *inferior_io_terminal;
138
139/* Pid of our debugged inferior, or 0 if no inferior now.
140 Since various parts of infrun.c test this to see whether there is a program
141 being debugged it should be nonzero (currently 3 is used) for remote
142 debugging. */
143
39f77062 144ptid_t inferior_ptid;
c906108c
SS
145
146/* Last signal that the inferior received (why it stopped). */
147
148enum target_signal stop_signal;
149
150/* Address at which inferior stopped. */
151
152CORE_ADDR stop_pc;
153
154/* Chain containing status of breakpoint(s) that we have stopped at. */
155
156bpstat stop_bpstat;
157
158/* Flag indicating that a command has proceeded the inferior past the
159 current breakpoint. */
160
161int breakpoint_proceeded;
162
163/* Nonzero if stopped due to a step command. */
164
165int stop_step;
166
167/* Nonzero if stopped due to completion of a stack dummy routine. */
168
169int stop_stack_dummy;
170
171/* Nonzero if stopped due to a random (unexpected) signal in inferior
172 process. */
173
174int stopped_by_random_signal;
175
176/* Range to single step within.
177 If this is nonzero, respond to a single-step signal
178 by continuing to step if the pc is in this range. */
179
c5aa993b
JM
180CORE_ADDR step_range_start; /* Inclusive */
181CORE_ADDR step_range_end; /* Exclusive */
c906108c
SS
182
183/* Stack frame address as of when stepping command was issued.
184 This is how we know when we step into a subroutine call,
185 and how to set the frame for the breakpoint used to step out. */
186
aa0cd9c1 187struct frame_id step_frame_id;
c906108c
SS
188
189/* Our notion of the current stack pointer. */
190
191CORE_ADDR step_sp;
192
5fbbeb29 193enum step_over_calls_kind step_over_calls;
c906108c
SS
194
195/* If stepping, nonzero means step count is > 1
196 so don't print frame next time inferior stops
197 if it stops due to stepping. */
198
199int step_multi;
200
201/* Environment to use for running inferior,
202 in format described in environ.h. */
203
204struct environ *inferior_environ;
c906108c 205\f
07091751
FN
206/* Accessor routines. */
207
208char *
209get_inferior_args (void)
210{
552c04a7
TT
211 if (inferior_argc != 0)
212 {
213 char *n, *old;
214
215 n = gdbarch_construct_inferior_arguments (current_gdbarch,
216 inferior_argc, inferior_argv);
217 old = set_inferior_args (n);
218 xfree (old);
219 }
220
221 if (inferior_args == NULL)
222 inferior_args = xstrdup ("");
223
07091751
FN
224 return inferior_args;
225}
226
227char *
228set_inferior_args (char *newargs)
229{
230 char *saved_args = inferior_args;
231
232 inferior_args = newargs;
552c04a7
TT
233 inferior_argc = 0;
234 inferior_argv = 0;
07091751
FN
235
236 return saved_args;
237}
c5aa993b 238
552c04a7
TT
239void
240set_inferior_args_vector (int argc, char **argv)
241{
242 inferior_argc = argc;
243 inferior_argv = argv;
244}
245
246/* Notice when `set args' is run. */
247static void
248notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
249{
250 inferior_argc = 0;
251 inferior_argv = 0;
252}
253
254/* Notice when `show args' is run. */
255static void
9f60d481 256notice_args_read (char *args, int from_tty, struct cmd_list_element *c)
552c04a7
TT
257{
258 /* Might compute the value. */
259 get_inferior_args ();
260}
261
c2a727fa
TT
262\f
263/* Compute command-line string given argument vector. This does the
264 same shell processing as fork_inferior. */
c2a727fa
TT
265char *
266construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
267{
268 char *result;
269
270 if (STARTUP_WITH_SHELL)
271 {
272 /* This holds all the characters considered special to the
273 typical Unix shells. We include `^' because the SunOS
274 /bin/sh treats it as a synonym for `|'. */
275 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
276 int i;
277 int length = 0;
278 char *out, *cp;
279
280 /* We over-compute the size. It shouldn't matter. */
281 for (i = 0; i < argc; ++i)
03c6228e 282 length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
c2a727fa
TT
283
284 result = (char *) xmalloc (length);
285 out = result;
286
287 for (i = 0; i < argc; ++i)
288 {
289 if (i > 0)
290 *out++ = ' ';
291
03c6228e
AS
292 /* Need to handle empty arguments specially. */
293 if (argv[i][0] == '\0')
c2a727fa 294 {
03c6228e
AS
295 *out++ = '\'';
296 *out++ = '\'';
297 }
298 else
299 {
300 for (cp = argv[i]; *cp; ++cp)
301 {
302 if (strchr (special, *cp) != NULL)
303 *out++ = '\\';
304 *out++ = *cp;
305 }
c2a727fa
TT
306 }
307 }
308 *out = '\0';
309 }
310 else
311 {
312 /* In this case we can't handle arguments that contain spaces,
313 tabs, or newlines -- see breakup_args(). */
314 int i;
315 int length = 0;
316
317 for (i = 0; i < argc; ++i)
318 {
319 char *cp = strchr (argv[i], ' ');
320 if (cp == NULL)
321 cp = strchr (argv[i], '\t');
322 if (cp == NULL)
323 cp = strchr (argv[i], '\n');
324 if (cp != NULL)
325 error ("can't handle command-line argument containing whitespace");
326 length += strlen (argv[i]) + 1;
327 }
328
329 result = (char *) xmalloc (length);
330 result[0] = '\0';
331 for (i = 0; i < argc; ++i)
332 {
333 if (i > 0)
334 strcat (result, " ");
335 strcat (result, argv[i]);
336 }
337 }
338
339 return result;
340}
552c04a7
TT
341\f
342
43ff13b4
JM
343/* This function detects whether or not a '&' character (indicating
344 background execution) has been added as *the last* of the arguments ARGS
345 of a command. If it has, it removes it and returns 1. Otherwise it
346 does nothing and returns 0. */
c5aa993b 347static int
fba45db2 348strip_bg_char (char **args)
43ff13b4
JM
349{
350 char *p = NULL;
c5aa993b 351
9846de1b 352 p = strchr (*args, '&');
c5aa993b 353
9846de1b 354 if (p)
43ff13b4
JM
355 {
356 if (p == (*args + strlen (*args) - 1))
357 {
c5aa993b 358 if (strlen (*args) > 1)
43ff13b4
JM
359 {
360 do
361 p--;
362 while (*p == ' ' || *p == '\t');
363 *(p + 1) = '\0';
364 }
365 else
366 *args = 0;
367 return 1;
368 }
369 }
370 return 0;
371}
372
c906108c 373void
fba45db2 374tty_command (char *file, int from_tty)
c906108c
SS
375{
376 if (file == 0)
377 error_no_arg ("terminal name for running target process");
378
379 inferior_io_terminal = savestring (file, strlen (file));
380}
381
382static void
fba45db2 383run_command (char *args, int from_tty)
c906108c
SS
384{
385 char *exec_file;
386
387 dont_repeat ();
388
39f77062 389 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
c906108c 390 {
adf40b2e
JM
391 if (from_tty
392 && !query ("The program being debugged has been started already.\n\
c906108c
SS
393Start it from the beginning? "))
394 error ("Program not restarted.");
395 target_kill ();
396#if defined(SOLIB_RESTART)
397 SOLIB_RESTART ();
398#endif
399 init_wait_for_inferior ();
400 }
401
402 clear_breakpoint_hit_counts ();
403
c906108c
SS
404 /* Purge old solib objfiles. */
405 objfile_purge_solibs ();
406
407 do_run_cleanups (NULL);
408
39ad761d
JB
409 /* The comment here used to read, "The exec file is re-read every
410 time we do a generic_mourn_inferior, so we just have to worry
411 about the symbol file." The `generic_mourn_inferior' function
412 gets called whenever the program exits. However, suppose the
413 program exits, and *then* the executable file changes? We need
414 to check again here. Since reopen_exec_file doesn't do anything
415 if the timestamp hasn't changed, I don't see the harm. */
416 reopen_exec_file ();
c906108c
SS
417 reread_symbols ();
418
39ad761d
JB
419 exec_file = (char *) get_exec_file (0);
420
c906108c
SS
421 /* We keep symbols from add-symbol-file, on the grounds that the
422 user might want to add some symbols before running the program
423 (right?). But sometimes (dynamic loading where the user manually
424 introduces the new symbols with add-symbol-file), the code which
425 the symbols describe does not persist between runs. Currently
426 the user has to manually nuke all symbols between runs if they
427 want them to go away (PR 2207). This is probably reasonable. */
428
43ff13b4 429 if (!args)
6426a772
JM
430 {
431 if (event_loop_p && target_can_async_p ())
432 async_disable_stdin ();
433 }
43ff13b4 434 else
c906108c 435 {
43ff13b4
JM
436 int async_exec = strip_bg_char (&args);
437
438 /* If we get a request for running in the bg but the target
439 doesn't support it, error out. */
6426a772 440 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
441 error ("Asynchronous execution not supported on this target.");
442
443 /* If we don't get a request of running in the bg, then we need
c5aa993b 444 to simulate synchronous (fg) execution. */
6426a772 445 if (event_loop_p && !async_exec && target_can_async_p ())
43ff13b4
JM
446 {
447 /* Simulate synchronous execution */
6426a772 448 async_disable_stdin ();
43ff13b4
JM
449 }
450
451 /* If there were other args, beside '&', process them. */
452 if (args)
453 {
07091751
FN
454 char *old_args = set_inferior_args (xstrdup (args));
455 xfree (old_args);
43ff13b4 456 }
c906108c
SS
457 }
458
459 if (from_tty)
460 {
8b93c638
JM
461 ui_out_field_string (uiout, NULL, "Starting program");
462 ui_out_text (uiout, ": ");
463 if (exec_file)
464 ui_out_field_string (uiout, "execfile", exec_file);
465 ui_out_spaces (uiout, 1);
552c04a7
TT
466 /* We call get_inferior_args() because we might need to compute
467 the value now. */
468 ui_out_field_string (uiout, "infargs", get_inferior_args ());
8b93c638
JM
469 ui_out_text (uiout, "\n");
470 ui_out_flush (uiout);
c906108c
SS
471 }
472
552c04a7
TT
473 /* We call get_inferior_args() because we might need to compute
474 the value now. */
475 target_create_inferior (exec_file, get_inferior_args (),
c906108c
SS
476 environ_vector (inferior_environ));
477}
478
479
480static void
fba45db2 481run_no_args_command (char *args, int from_tty)
c906108c 482{
07091751
FN
483 char *old_args = set_inferior_args (xstrdup (""));
484 xfree (old_args);
c906108c 485}
c906108c 486\f
c5aa993b 487
c906108c 488void
fba45db2 489continue_command (char *proc_count_exp, int from_tty)
c906108c 490{
c5aa993b 491 int async_exec = 0;
c906108c
SS
492 ERROR_NO_INFERIOR;
493
43ff13b4
JM
494 /* Find out whether we must run in the background. */
495 if (proc_count_exp != NULL)
496 async_exec = strip_bg_char (&proc_count_exp);
497
498 /* If we must run in the background, but the target can't do it,
499 error out. */
6426a772 500 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
501 error ("Asynchronous execution not supported on this target.");
502
503 /* If we are not asked to run in the bg, then prepare to run in the
504 foreground, synchronously. */
6426a772 505 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 506 {
43ff13b4 507 /* Simulate synchronous execution */
6426a772 508 async_disable_stdin ();
43ff13b4 509 }
c906108c 510
43ff13b4
JM
511 /* If have argument (besides '&'), set proceed count of breakpoint
512 we stopped at. */
c906108c
SS
513 if (proc_count_exp != NULL)
514 {
515 bpstat bs = stop_bpstat;
516 int num = bpstat_num (&bs);
517 if (num == 0 && from_tty)
518 {
519 printf_filtered
520 ("Not stopped at any breakpoint; argument ignored.\n");
521 }
522 while (num != 0)
523 {
524 set_ignore_count (num,
bb518678 525 parse_and_eval_long (proc_count_exp) - 1,
c906108c
SS
526 from_tty);
527 /* set_ignore_count prints a message ending with a period.
528 So print two spaces before "Continuing.". */
529 if (from_tty)
530 printf_filtered (" ");
531 num = bpstat_num (&bs);
532 }
533 }
534
535 if (from_tty)
536 printf_filtered ("Continuing.\n");
537
538 clear_proceed_status ();
539
2acceee2 540 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
c906108c
SS
541}
542\f
543/* Step until outside of current statement. */
544
c906108c 545static void
fba45db2 546step_command (char *count_string, int from_tty)
c906108c
SS
547{
548 step_1 (0, 0, count_string);
549}
550
551/* Likewise, but skip over subroutine calls as if single instructions. */
552
c906108c 553static void
fba45db2 554next_command (char *count_string, int from_tty)
c906108c
SS
555{
556 step_1 (1, 0, count_string);
557}
558
559/* Likewise, but step only one instruction. */
560
c906108c 561void
fba45db2 562stepi_command (char *count_string, int from_tty)
c906108c
SS
563{
564 step_1 (0, 1, count_string);
565}
566
c906108c 567void
fba45db2 568nexti_command (char *count_string, int from_tty)
c906108c
SS
569{
570 step_1 (1, 1, count_string);
571}
572
74b7792f
AC
573static void
574disable_longjmp_breakpoint_cleanup (void *ignore)
575{
576 disable_longjmp_breakpoint ();
577}
578
c906108c 579static void
fba45db2 580step_1 (int skip_subroutines, int single_inst, char *count_string)
c906108c 581{
52f0bd74 582 int count = 1;
c906108c
SS
583 struct frame_info *frame;
584 struct cleanup *cleanups = 0;
43ff13b4 585 int async_exec = 0;
c5aa993b 586
c906108c 587 ERROR_NO_INFERIOR;
43ff13b4
JM
588
589 if (count_string)
590 async_exec = strip_bg_char (&count_string);
c5aa993b 591
43ff13b4
JM
592 /* If we get a request for running in the bg but the target
593 doesn't support it, error out. */
6426a772 594 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
595 error ("Asynchronous execution not supported on this target.");
596
597 /* If we don't get a request of running in the bg, then we need
598 to simulate synchronous (fg) execution. */
6426a772 599 if (event_loop_p && !async_exec && target_can_async_p ())
43ff13b4
JM
600 {
601 /* Simulate synchronous execution */
6426a772 602 async_disable_stdin ();
43ff13b4
JM
603 }
604
bb518678 605 count = count_string ? parse_and_eval_long (count_string) : 1;
c906108c 606
c5aa993b 607 if (!single_inst || skip_subroutines) /* leave si command alone */
c906108c 608 {
c5aa993b 609 enable_longjmp_breakpoint ();
c2d11a7d 610 if (!event_loop_p || !target_can_async_p ())
74b7792f 611 cleanups = make_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/);
c2d11a7d 612 else
74b7792f 613 make_exec_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/);
c2d11a7d
JM
614 }
615
616 /* In synchronous case, all is well, just use the regular for loop. */
617 if (!event_loop_p || !target_can_async_p ())
618 {
619 for (; count > 0; count--)
620 {
621 clear_proceed_status ();
622
623 frame = get_current_frame ();
624 if (!frame) /* Avoid coredump here. Why tho? */
625 error ("No current frame");
aa0cd9c1 626 step_frame_id = get_frame_id (frame);
c2d11a7d
JM
627 step_sp = read_sp ();
628
629 if (!single_inst)
630 {
631 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
632 if (step_range_end == 0)
633 {
634 char *name;
635 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
636 &step_range_end) == 0)
637 error ("Cannot find bounds of current function");
638
639 target_terminal_ours ();
640 printf_filtered ("\
641Single stepping until exit from function %s, \n\
642which has no line number information.\n", name);
643 }
644 }
645 else
646 {
647 /* Say we are stepping, but stop after one insn whatever it does. */
648 step_range_start = step_range_end = 1;
649 if (!skip_subroutines)
650 /* It is stepi.
651 Don't step over function calls, not even to functions lacking
652 line numbers. */
5fbbeb29 653 step_over_calls = STEP_OVER_NONE;
c2d11a7d
JM
654 }
655
656 if (skip_subroutines)
5fbbeb29 657 step_over_calls = STEP_OVER_ALL;
c2d11a7d
JM
658
659 step_multi = (count > 1);
660 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
661
662 if (!stop_step)
663 break;
c2d11a7d
JM
664 }
665
666 if (!single_inst || skip_subroutines)
667 do_cleanups (cleanups);
668 return;
669 }
670 /* In case of asynchronous target things get complicated, do only
671 one step for now, before returning control to the event loop. Let
672 the continuation figure out how many other steps we need to do,
673 and handle them one at the time, through step_once(). */
674 else
675 {
676 if (event_loop_p && target_can_async_p ())
677 step_once (skip_subroutines, single_inst, count);
c906108c 678 }
c2d11a7d 679}
c906108c 680
c2d11a7d
JM
681/* Called after we are done with one step operation, to check whether
682 we need to step again, before we print the prompt and return control
683 to the user. If count is > 1, we will need to do one more call to
684 proceed(), via step_once(). Basically it is like step_once and
685 step_1_continuation are co-recursive. */
686static void
fba45db2 687step_1_continuation (struct continuation_arg *arg)
c2d11a7d 688{
57e687d9
MS
689 int count;
690 int skip_subroutines;
691 int single_inst;
692
693 skip_subroutines = arg->data.integer;
694 single_inst = arg->next->data.integer;
695 count = arg->next->next->data.integer;
696
697 if (stop_step)
e74f0f02 698 step_once (skip_subroutines, single_inst, count - 1);
57e687d9
MS
699 else
700 if (!single_inst || skip_subroutines)
701 do_exec_cleanups (ALL_CLEANUPS);
c2d11a7d
JM
702}
703
704/* Do just one step operation. If count >1 we will have to set up a
705 continuation to be done after the target stops (after this one
706 step). This is useful to implement the 'step n' kind of commands, in
707 case of asynchronous targets. We had to split step_1 into two parts,
708 one to be done before proceed() and one afterwards. This function is
709 called in case of step n with n>1, after the first step operation has
710 been completed.*/
711static void
0d06e24b 712step_once (int skip_subroutines, int single_inst, int count)
c2d11a7d 713{
0d06e24b
JM
714 struct continuation_arg *arg1;
715 struct continuation_arg *arg2;
716 struct continuation_arg *arg3;
717 struct frame_info *frame;
c2d11a7d
JM
718
719 if (count > 0)
c906108c
SS
720 {
721 clear_proceed_status ();
722
723 frame = get_current_frame ();
c5aa993b 724 if (!frame) /* Avoid coredump here. Why tho? */
c906108c 725 error ("No current frame");
aa0cd9c1 726 step_frame_id = get_frame_id (frame);
c906108c
SS
727 step_sp = read_sp ();
728
c5aa993b 729 if (!single_inst)
c906108c
SS
730 {
731 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
5fbbeb29
CF
732
733 /* If we have no line info, switch to stepi mode. */
734 if (step_range_end == 0 && step_stop_if_no_debug)
735 {
736 step_range_start = step_range_end = 1;
737 }
738 else if (step_range_end == 0)
c906108c
SS
739 {
740 char *name;
741 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
742 &step_range_end) == 0)
743 error ("Cannot find bounds of current function");
744
745 target_terminal_ours ();
746 printf_filtered ("\
747Single stepping until exit from function %s, \n\
748which has no line number information.\n", name);
749 }
750 }
751 else
752 {
753 /* Say we are stepping, but stop after one insn whatever it does. */
754 step_range_start = step_range_end = 1;
755 if (!skip_subroutines)
756 /* It is stepi.
757 Don't step over function calls, not even to functions lacking
758 line numbers. */
5fbbeb29 759 step_over_calls = STEP_OVER_NONE;
c906108c
SS
760 }
761
762 if (skip_subroutines)
5fbbeb29 763 step_over_calls = STEP_OVER_ALL;
c906108c
SS
764
765 step_multi = (count > 1);
c2d11a7d
JM
766 arg1 =
767 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
768 arg2 =
769 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
770 arg3 =
771 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
772 arg1->next = arg2;
57e687d9 773 arg1->data.integer = skip_subroutines;
c2d11a7d 774 arg2->next = arg3;
57e687d9 775 arg2->data.integer = single_inst;
c2d11a7d 776 arg3->next = NULL;
57e687d9 777 arg3->data.integer = count;
c2d11a7d 778 add_intermediate_continuation (step_1_continuation, arg1);
2acceee2 779 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
c906108c 780 }
c906108c 781}
c2d11a7d 782
c906108c
SS
783\f
784/* Continue program at specified address. */
785
786static void
fba45db2 787jump_command (char *arg, int from_tty)
c906108c 788{
52f0bd74 789 CORE_ADDR addr;
c906108c
SS
790 struct symtabs_and_lines sals;
791 struct symtab_and_line sal;
792 struct symbol *fn;
793 struct symbol *sfn;
43ff13b4 794 int async_exec = 0;
c5aa993b 795
c906108c
SS
796 ERROR_NO_INFERIOR;
797
43ff13b4
JM
798 /* Find out whether we must run in the background. */
799 if (arg != NULL)
800 async_exec = strip_bg_char (&arg);
801
802 /* If we must run in the background, but the target can't do it,
803 error out. */
6426a772 804 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
805 error ("Asynchronous execution not supported on this target.");
806
807 /* If we are not asked to run in the bg, then prepare to run in the
808 foreground, synchronously. */
6426a772 809 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 810 {
43ff13b4 811 /* Simulate synchronous execution */
6426a772 812 async_disable_stdin ();
43ff13b4
JM
813 }
814
c906108c
SS
815 if (!arg)
816 error_no_arg ("starting address");
817
818 sals = decode_line_spec_1 (arg, 1);
819 if (sals.nelts != 1)
820 {
821 error ("Unreasonable jump request");
822 }
823
824 sal = sals.sals[0];
b8c9b27d 825 xfree (sals.sals);
c906108c
SS
826
827 if (sal.symtab == 0 && sal.pc == 0)
828 error ("No source file has been specified.");
829
c5aa993b 830 resolve_sal_pc (&sal); /* May error out */
c906108c
SS
831
832 /* See if we are trying to jump to another function. */
833 fn = get_frame_function (get_current_frame ());
834 sfn = find_pc_function (sal.pc);
835 if (fn != NULL && sfn != fn)
836 {
837 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line,
de5ad195 838 SYMBOL_PRINT_NAME (fn)))
c906108c
SS
839 {
840 error ("Not confirmed.");
841 /* NOTREACHED */
842 }
843 }
844
c5aa993b 845 if (sfn != NULL)
c906108c
SS
846 {
847 fixup_symbol_section (sfn, 0);
c5aa993b 848 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) &&
c906108c
SS
849 !section_is_mapped (SYMBOL_BFD_SECTION (sfn)))
850 {
851 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
852 {
853 error ("Not confirmed.");
854 /* NOTREACHED */
855 }
856 }
857 }
858
c906108c
SS
859 addr = sal.pc;
860
861 if (from_tty)
862 {
863 printf_filtered ("Continuing at ");
864 print_address_numeric (addr, 1, gdb_stdout);
865 printf_filtered (".\n");
866 }
867
868 clear_proceed_status ();
869 proceed (addr, TARGET_SIGNAL_0, 0);
870}
c906108c 871\f
c5aa993b 872
c906108c
SS
873/* Go to line or address in current procedure */
874static void
fba45db2 875go_command (char *line_no, int from_tty)
c906108c 876{
c5aa993b 877 if (line_no == (char *) NULL || !*line_no)
b83266a0 878 printf_filtered (GO_USAGE);
c906108c
SS
879 else
880 {
b83266a0
SS
881 tbreak_command (line_no, from_tty);
882 jump_command (line_no, from_tty);
c906108c
SS
883 }
884}
c906108c 885\f
c5aa993b 886
c906108c
SS
887/* Continue program giving it specified signal. */
888
889static void
fba45db2 890signal_command (char *signum_exp, int from_tty)
c906108c
SS
891{
892 enum target_signal oursig;
893
894 dont_repeat (); /* Too dangerous. */
895 ERROR_NO_INFERIOR;
896
897 if (!signum_exp)
898 error_no_arg ("signal number");
899
900 /* It would be even slicker to make signal names be valid expressions,
901 (the type could be "enum $signal" or some such), then the user could
902 assign them to convenience variables. */
903 oursig = target_signal_from_name (signum_exp);
904
905 if (oursig == TARGET_SIGNAL_UNKNOWN)
906 {
907 /* No, try numeric. */
bb518678 908 int num = parse_and_eval_long (signum_exp);
c906108c
SS
909
910 if (num == 0)
911 oursig = TARGET_SIGNAL_0;
912 else
913 oursig = target_signal_from_command (num);
914 }
915
916 if (from_tty)
917 {
918 if (oursig == TARGET_SIGNAL_0)
919 printf_filtered ("Continuing with no signal.\n");
920 else
921 printf_filtered ("Continuing with signal %s.\n",
922 target_signal_to_name (oursig));
923 }
924
925 clear_proceed_status ();
926 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
927 FIXME: Neither should "signal foo" but when I tried passing
928 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
929 tried to track down yet. */
2acceee2 930 proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
c906108c
SS
931}
932
c906108c
SS
933/* Proceed until we reach a different source line with pc greater than
934 our current one or exit the function. We skip calls in both cases.
935
936 Note that eventually this command should probably be changed so
937 that only source lines are printed out when we hit the breakpoint
938 we set. This may involve changes to wait_for_inferior and the
939 proceed status code. */
940
c906108c 941static void
fba45db2 942until_next_command (int from_tty)
c906108c
SS
943{
944 struct frame_info *frame;
945 CORE_ADDR pc;
946 struct symbol *func;
947 struct symtab_and_line sal;
c5aa993b 948
c906108c
SS
949 clear_proceed_status ();
950
951 frame = get_current_frame ();
952
953 /* Step until either exited from this function or greater
954 than the current line (if in symbolic section) or pc (if
955 not). */
956
957 pc = read_pc ();
958 func = find_pc_function (pc);
c5aa993b 959
c906108c
SS
960 if (!func)
961 {
962 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
c5aa993b 963
c906108c
SS
964 if (msymbol == NULL)
965 error ("Execution is not within a known function.");
c5aa993b 966
c906108c
SS
967 step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
968 step_range_end = pc;
969 }
970 else
971 {
972 sal = find_pc_line (pc, 0);
c5aa993b 973
c906108c
SS
974 step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
975 step_range_end = sal.end;
976 }
c5aa993b 977
5fbbeb29 978 step_over_calls = STEP_OVER_ALL;
aa0cd9c1 979 step_frame_id = get_frame_id (frame);
c906108c
SS
980 step_sp = read_sp ();
981
982 step_multi = 0; /* Only one call to proceed */
c5aa993b 983
2acceee2 984 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
c906108c
SS
985}
986
c5aa993b 987static void
fba45db2 988until_command (char *arg, int from_tty)
c906108c 989{
43ff13b4
JM
990 int async_exec = 0;
991
c906108c
SS
992 if (!target_has_execution)
993 error ("The program is not running.");
43ff13b4
JM
994
995 /* Find out whether we must run in the background. */
996 if (arg != NULL)
997 async_exec = strip_bg_char (&arg);
998
999 /* If we must run in the background, but the target can't do it,
1000 error out. */
6426a772 1001 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
1002 error ("Asynchronous execution not supported on this target.");
1003
1004 /* If we are not asked to run in the bg, then prepare to run in the
1005 foreground, synchronously. */
6426a772 1006 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 1007 {
43ff13b4 1008 /* Simulate synchronous execution */
6426a772 1009 async_disable_stdin ();
43ff13b4
JM
1010 }
1011
c906108c 1012 if (arg)
ae66c1fc 1013 until_break_command (arg, from_tty, 0);
c906108c
SS
1014 else
1015 until_next_command (from_tty);
1016}
ae66c1fc
EZ
1017
1018static void
1019advance_command (char *arg, int from_tty)
1020{
1021 int async_exec = 0;
1022
1023 if (!target_has_execution)
1024 error ("The program is not running.");
1025
1026 if (arg == NULL)
1027 error_no_arg ("a location");
1028
1029 /* Find out whether we must run in the background. */
1030 if (arg != NULL)
1031 async_exec = strip_bg_char (&arg);
1032
1033 /* If we must run in the background, but the target can't do it,
1034 error out. */
1035 if (event_loop_p && async_exec && !target_can_async_p ())
1036 error ("Asynchronous execution not supported on this target.");
1037
1038 /* If we are not asked to run in the bg, then prepare to run in the
1039 foreground, synchronously. */
1040 if (event_loop_p && !async_exec && target_can_async_p ())
1041 {
1042 /* Simulate synchronous execution. */
1043 async_disable_stdin ();
1044 }
1045
1046 until_break_command (arg, from_tty, 1);
1047}
c906108c 1048\f
43ff13b4 1049
f941662f
MK
1050/* Print the result of a function at the end of a 'finish' command. */
1051
11cf8741 1052static void
bb472c1e 1053print_return_value (int struct_return, struct type *value_type)
11cf8741 1054{
bb472c1e
MK
1055 struct cleanup *old_chain;
1056 struct ui_stream *stb;
3d6d86c6 1057 struct value *value;
11cf8741 1058
bb472c1e 1059 if (!struct_return)
11cf8741 1060 {
bb472c1e 1061 /* The return value can be found in the inferior's registers. */
5fe830e4 1062 value = register_value_being_returned (value_type, stop_registers);
11cf8741 1063 }
74055713
AC
1064 /* FIXME: cagney/2004-01-17: When both return_value and
1065 extract_returned_value_address are available, should use that to
1066 find the address of and then extract the returned value. */
92ad9cd9
AC
1067 /* FIXME: 2003-09-27: When returning from a nested inferior function
1068 call, it's possible (with no help from the architecture vector)
1069 to locate and return/print a "struct return" value. This is just
1070 a more complicated case of what is already being done in in the
1071 inferior function call code. In fact, when inferior function
1072 calls are made async, this will likely be made the norm. */
00d33403 1073 else if (gdbarch_return_value_p (current_gdbarch))
92ad9cd9
AC
1074 /* We cannot determine the contents of the structure because it is
1075 on the stack, and we don't know where, since we did not
1076 initiate the call, as opposed to the call_function_by_hand
1077 case. */
1078 {
f941662f
MK
1079 gdb_assert (gdbarch_return_value (current_gdbarch, value_type,
1080 NULL, NULL, NULL)
92ad9cd9 1081 == RETURN_VALUE_STRUCT_CONVENTION);
8b93c638
JM
1082 ui_out_text (uiout, "Value returned has type: ");
1083 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1084 ui_out_text (uiout, ".");
1085 ui_out_text (uiout, " Cannot determine contents\n");
92ad9cd9
AC
1086 return;
1087 }
1088 else
1089 {
74055713 1090 if (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS_P ())
5fe830e4 1091 {
74055713 1092 CORE_ADDR addr = DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS (stop_registers);
5fe830e4
AC
1093 if (!addr)
1094 error ("Function return value unknown.");
1095 value = value_at (value_type, addr, NULL);
1096 }
5fe830e4
AC
1097 else
1098 {
1099 /* It is "struct return" yet the value is being extracted,
1100 presumably from registers, using EXTRACT_RETURN_VALUE.
ce2826aa 1101 This doesn't make sense. Unfortunately, the legacy
5fe830e4
AC
1102 interfaces allowed this behavior. Sigh! */
1103 value = allocate_value (value_type);
1104 CHECK_TYPEDEF (value_type);
1105 /* If the function returns void, don't bother fetching the
1106 return value. */
1107 EXTRACT_RETURN_VALUE (value_type, stop_registers,
1108 VALUE_CONTENTS_RAW (value));
1109 }
11cf8741 1110 }
bb472c1e
MK
1111
1112 /* Print it. */
1113 stb = ui_out_stream_new (uiout);
1114 old_chain = make_cleanup_ui_out_stream_delete (stb);
1115 ui_out_text (uiout, "Value returned is ");
1116 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1117 record_latest_value (value));
1118 ui_out_text (uiout, " = ");
1119 value_print (value, stb->stream, 0, Val_no_prettyprint);
1120 ui_out_field_stream (uiout, "return-value", stb);
1121 ui_out_text (uiout, "\n");
1122 do_cleanups (old_chain);
11cf8741
JM
1123}
1124
43ff13b4 1125/* Stuff that needs to be done by the finish command after the target
f941662f
MK
1126 has stopped. In asynchronous mode, we wait for the target to stop
1127 in the call to poll or select in the event loop, so it is
1128 impossible to do all the stuff as part of the finish_command
1129 function itself. The only chance we have to complete this command
1130 is in fetch_inferior_event, which is called by the event loop as
1131 soon as it detects that the target has stopped. This function is
1132 called via the cmd_continuation pointer. */
1133
1134static void
fba45db2 1135finish_command_continuation (struct continuation_arg *arg)
43ff13b4 1136{
52f0bd74 1137 struct symbol *function;
43ff13b4 1138 struct breakpoint *breakpoint;
0d06e24b 1139 struct cleanup *cleanups;
c5aa993b 1140
57e687d9 1141 breakpoint = (struct breakpoint *) arg->data.pointer;
f941662f
MK
1142 function = (struct symbol *) arg->next->data.pointer;
1143 cleanups = (struct cleanup *) arg->next->next->data.pointer;
43ff13b4 1144
c5aa993b 1145 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
f941662f 1146 && function != NULL)
43ff13b4
JM
1147 {
1148 struct type *value_type;
43ff13b4 1149 int struct_return;
f941662f 1150 int gcc_compiled;
43ff13b4
JM
1151
1152 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1153 if (!value_type)
8e65ff28
AC
1154 internal_error (__FILE__, __LINE__,
1155 "finish_command: function has no target type");
c5aa993b 1156
43ff13b4
JM
1157 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1158 {
0d06e24b 1159 do_exec_cleanups (cleanups);
43ff13b4
JM
1160 return;
1161 }
1162
f941662f
MK
1163 CHECK_TYPEDEF (value_type);
1164 gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
1165 struct_return = using_struct_return (value_type, gcc_compiled);
43ff13b4 1166
11cf8741 1167 print_return_value (struct_return, value_type);
43ff13b4 1168 }
f941662f 1169
0d06e24b 1170 do_exec_cleanups (cleanups);
43ff13b4
JM
1171}
1172
f941662f
MK
1173/* "finish": Set a temporary breakpoint at the place the selected
1174 frame will return to, then continue. */
c906108c
SS
1175
1176static void
fba45db2 1177finish_command (char *arg, int from_tty)
c906108c
SS
1178{
1179 struct symtab_and_line sal;
52f0bd74
AC
1180 struct frame_info *frame;
1181 struct symbol *function;
c906108c
SS
1182 struct breakpoint *breakpoint;
1183 struct cleanup *old_chain;
0d06e24b 1184 struct continuation_arg *arg1, *arg2, *arg3;
43ff13b4
JM
1185
1186 int async_exec = 0;
1187
f941662f 1188 /* Find out whether we must run in the background. */
43ff13b4
JM
1189 if (arg != NULL)
1190 async_exec = strip_bg_char (&arg);
1191
1192 /* If we must run in the background, but the target can't do it,
f941662f 1193 error out. */
6426a772 1194 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
1195 error ("Asynchronous execution not supported on this target.");
1196
1197 /* If we are not asked to run in the bg, then prepare to run in the
f941662f 1198 foreground, synchronously. */
6426a772 1199 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 1200 {
f941662f 1201 /* Simulate synchronous execution. */
6426a772 1202 async_disable_stdin ();
43ff13b4 1203 }
c906108c
SS
1204
1205 if (arg)
1206 error ("The \"finish\" command does not take any arguments.");
1207 if (!target_has_execution)
1208 error ("The program is not running.");
6e7f8b9c 1209 if (deprecated_selected_frame == NULL)
c906108c
SS
1210 error ("No selected frame.");
1211
6e7f8b9c 1212 frame = get_prev_frame (deprecated_selected_frame);
c906108c
SS
1213 if (frame == 0)
1214 error ("\"finish\" not meaningful in the outermost frame.");
1215
1216 clear_proceed_status ();
1217
bdd78e62
AC
1218 sal = find_pc_line (get_frame_pc (frame), 0);
1219 sal.pc = get_frame_pc (frame);
c906108c 1220
818dd999 1221 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
c906108c 1222
6426a772 1223 if (!event_loop_p || !target_can_async_p ())
4d6140d9 1224 old_chain = make_cleanup_delete_breakpoint (breakpoint);
43ff13b4 1225 else
4d6140d9 1226 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
c906108c
SS
1227
1228 /* Find the function we will return from. */
1229
bdd78e62 1230 function = find_pc_function (get_frame_pc (deprecated_selected_frame));
c906108c 1231
f941662f
MK
1232 /* Print info on the selected frame, including level number but not
1233 source. */
c906108c
SS
1234 if (from_tty)
1235 {
1236 printf_filtered ("Run till exit from ");
6e7f8b9c
AC
1237 print_stack_frame (deprecated_selected_frame,
1238 frame_relative_level (deprecated_selected_frame), 0);
c906108c
SS
1239 }
1240
43ff13b4
JM
1241 /* If running asynchronously and the target support asynchronous
1242 execution, set things up for the rest of the finish command to be
1243 completed later on, when gdb has detected that the target has
f941662f 1244 stopped, in fetch_inferior_event. */
6426a772 1245 if (event_loop_p && target_can_async_p ())
43ff13b4 1246 {
c5aa993b 1247 arg1 =
43ff13b4 1248 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
c5aa993b 1249 arg2 =
43ff13b4 1250 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
0d06e24b
JM
1251 arg3 =
1252 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
43ff13b4 1253 arg1->next = arg2;
0d06e24b
JM
1254 arg2->next = arg3;
1255 arg3->next = NULL;
57e687d9
MS
1256 arg1->data.pointer = breakpoint;
1257 arg2->data.pointer = function;
1258 arg3->data.pointer = old_chain;
43ff13b4
JM
1259 add_continuation (finish_command_continuation, arg1);
1260 }
1261
f941662f 1262 proceed_to_finish = 1; /* We want stop_registers, please... */
2acceee2 1263 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
c906108c 1264
43ff13b4 1265 /* Do this only if not running asynchronously or if the target
f941662f
MK
1266 cannot do async execution. Otherwise, complete this command when
1267 the target actually stops, in fetch_inferior_event. */
6426a772 1268 if (!event_loop_p || !target_can_async_p ())
c5aa993b 1269 {
f941662f 1270 /* Did we stop at our breakpoint? */
c5aa993b 1271 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
f941662f 1272 && function != NULL)
c5aa993b
JM
1273 {
1274 struct type *value_type;
c5aa993b 1275 int struct_return;
f941662f 1276 int gcc_compiled;
c5aa993b
JM
1277
1278 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1279 if (!value_type)
8e65ff28
AC
1280 internal_error (__FILE__, __LINE__,
1281 "finish_command: function has no target type");
c5aa993b 1282
f941662f 1283 /* FIXME: Shouldn't we do the cleanups before returning? */
c5aa993b
JM
1284 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1285 return;
1286
f941662f
MK
1287 CHECK_TYPEDEF (value_type);
1288 gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function));
1289 struct_return = using_struct_return (value_type, gcc_compiled);
c5aa993b 1290
11cf8741 1291 print_return_value (struct_return, value_type);
c5aa993b 1292 }
f941662f 1293
c5aa993b
JM
1294 do_cleanups (old_chain);
1295 }
c906108c
SS
1296}
1297\f
f941662f 1298
c906108c 1299static void
fba45db2 1300program_info (char *args, int from_tty)
c906108c
SS
1301{
1302 bpstat bs = stop_bpstat;
1303 int num = bpstat_num (&bs);
c5aa993b 1304
c906108c
SS
1305 if (!target_has_execution)
1306 {
1307 printf_filtered ("The program being debugged is not being run.\n");
1308 return;
1309 }
1310
1311 target_files_info ();
1312 printf_filtered ("Program stopped at %s.\n",
c5aa993b 1313 local_hex_string ((unsigned long) stop_pc));
c906108c
SS
1314 if (stop_step)
1315 printf_filtered ("It stopped after being stepped.\n");
1316 else if (num != 0)
1317 {
1318 /* There may be several breakpoints in the same place, so this
c5aa993b 1319 isn't as strange as it seems. */
c906108c
SS
1320 while (num != 0)
1321 {
1322 if (num < 0)
1323 {
1324 printf_filtered ("It stopped at a breakpoint that has ");
1325 printf_filtered ("since been deleted.\n");
1326 }
1327 else
1328 printf_filtered ("It stopped at breakpoint %d.\n", num);
1329 num = bpstat_num (&bs);
1330 }
1331 }
1332 else if (stop_signal != TARGET_SIGNAL_0)
1333 {
1334 printf_filtered ("It stopped with signal %s, %s.\n",
1335 target_signal_to_name (stop_signal),
1336 target_signal_to_string (stop_signal));
1337 }
1338
1339 if (!from_tty)
1340 {
1341 printf_filtered ("Type \"info stack\" or \"info registers\" ");
1342 printf_filtered ("for more information.\n");
1343 }
1344}
1345\f
1346static void
fba45db2 1347environment_info (char *var, int from_tty)
c906108c
SS
1348{
1349 if (var)
1350 {
aa1ee363 1351 char *val = get_in_environ (inferior_environ, var);
c906108c
SS
1352 if (val)
1353 {
1354 puts_filtered (var);
1355 puts_filtered (" = ");
1356 puts_filtered (val);
1357 puts_filtered ("\n");
1358 }
1359 else
1360 {
1361 puts_filtered ("Environment variable \"");
1362 puts_filtered (var);
1363 puts_filtered ("\" not defined.\n");
1364 }
1365 }
1366 else
1367 {
aa1ee363 1368 char **vector = environ_vector (inferior_environ);
c906108c
SS
1369 while (*vector)
1370 {
1371 puts_filtered (*vector++);
1372 puts_filtered ("\n");
1373 }
1374 }
1375}
1376
1377static void
fba45db2 1378set_environment_command (char *arg, int from_tty)
c906108c 1379{
52f0bd74 1380 char *p, *val, *var;
c906108c
SS
1381 int nullset = 0;
1382
1383 if (arg == 0)
1384 error_no_arg ("environment variable and value");
1385
1386 /* Find seperation between variable name and value */
1387 p = (char *) strchr (arg, '=');
1388 val = (char *) strchr (arg, ' ');
1389
1390 if (p != 0 && val != 0)
1391 {
1392 /* We have both a space and an equals. If the space is before the
c5aa993b
JM
1393 equals, walk forward over the spaces til we see a nonspace
1394 (possibly the equals). */
c906108c
SS
1395 if (p > val)
1396 while (*val == ' ')
1397 val++;
1398
1399 /* Now if the = is after the char following the spaces,
c5aa993b 1400 take the char following the spaces. */
c906108c
SS
1401 if (p > val)
1402 p = val - 1;
1403 }
1404 else if (val != 0 && p == 0)
1405 p = val;
1406
1407 if (p == arg)
1408 error_no_arg ("environment variable to set");
1409
1410 if (p == 0 || p[1] == 0)
1411 {
1412 nullset = 1;
1413 if (p == 0)
1414 p = arg + strlen (arg); /* So that savestring below will work */
1415 }
1416 else
1417 {
1418 /* Not setting variable value to null */
1419 val = p + 1;
1420 while (*val == ' ' || *val == '\t')
1421 val++;
1422 }
1423
c5aa993b
JM
1424 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1425 p--;
c906108c
SS
1426
1427 var = savestring (arg, p - arg);
1428 if (nullset)
1429 {
1430 printf_filtered ("Setting environment variable ");
1431 printf_filtered ("\"%s\" to null value.\n", var);
1432 set_in_environ (inferior_environ, var, "");
1433 }
1434 else
1435 set_in_environ (inferior_environ, var, val);
b8c9b27d 1436 xfree (var);
c906108c
SS
1437}
1438
1439static void
fba45db2 1440unset_environment_command (char *var, int from_tty)
c906108c
SS
1441{
1442 if (var == 0)
1443 {
1444 /* If there is no argument, delete all environment variables.
c5aa993b 1445 Ask for confirmation if reading from the terminal. */
c906108c
SS
1446 if (!from_tty || query ("Delete all environment variables? "))
1447 {
1448 free_environ (inferior_environ);
1449 inferior_environ = make_environ ();
1450 }
1451 }
1452 else
1453 unset_in_environ (inferior_environ, var);
1454}
1455
1456/* Handle the execution path (PATH variable) */
1457
1458static const char path_var_name[] = "PATH";
1459
c906108c 1460static void
fba45db2 1461path_info (char *args, int from_tty)
c906108c
SS
1462{
1463 puts_filtered ("Executable and object file path: ");
1464 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1465 puts_filtered ("\n");
1466}
1467
1468/* Add zero or more directories to the front of the execution path. */
1469
1470static void
fba45db2 1471path_command (char *dirname, int from_tty)
c906108c
SS
1472{
1473 char *exec_path;
1474 char *env;
1475 dont_repeat ();
1476 env = get_in_environ (inferior_environ, path_var_name);
1477 /* Can be null if path is not set */
1478 if (!env)
1479 env = "";
4fcf66da 1480 exec_path = xstrdup (env);
c906108c
SS
1481 mod_path (dirname, &exec_path);
1482 set_in_environ (inferior_environ, path_var_name, exec_path);
b8c9b27d 1483 xfree (exec_path);
c906108c 1484 if (from_tty)
c5aa993b 1485 path_info ((char *) NULL, from_tty);
c906108c 1486}
c906108c 1487\f
c5aa993b 1488
4782dc19 1489/* Print out the machine register regnum. If regnum is -1, print all
0ab7a791
AC
1490 registers (print_all == 1) or all non-float and non-vector
1491 registers (print_all == 0).
c906108c
SS
1492
1493 For most machines, having all_registers_info() print the
0ab7a791
AC
1494 register(s) one per line is good enough. If a different format is
1495 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1496 regs), or there is an existing convention for showing all the
1497 registers, define the architecture method PRINT_REGISTERS_INFO to
1498 provide that format. */
c906108c 1499
666e11c5 1500void
0ab7a791
AC
1501default_print_registers_info (struct gdbarch *gdbarch,
1502 struct ui_file *file,
1503 struct frame_info *frame,
1504 int regnum, int print_all)
c906108c 1505{
0ab7a791
AC
1506 int i;
1507 const int numregs = NUM_REGS + NUM_PSEUDO_REGS;
0c92afe8
AC
1508 char raw_buffer[MAX_REGISTER_SIZE];
1509 char virtual_buffer[MAX_REGISTER_SIZE];
0ab7a791 1510
903ad3a6 1511 if (DEPRECATED_DO_REGISTERS_INFO_P ())
0ab7a791 1512 {
903ad3a6 1513 DEPRECATED_DO_REGISTERS_INFO (regnum, print_all);
0ab7a791
AC
1514 return;
1515 }
c906108c
SS
1516
1517 for (i = 0; i < numregs; i++)
1518 {
4782dc19
AC
1519 /* Decide between printing all regs, non-float / vector regs, or
1520 specific reg. */
c5aa993b
JM
1521 if (regnum == -1)
1522 {
f9418c0f 1523 if (print_all)
4782dc19 1524 {
f9418c0f 1525 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4782dc19 1526 continue;
f9418c0f
AC
1527 }
1528 else
1529 {
1530 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
4782dc19
AC
1531 continue;
1532 }
c5aa993b
JM
1533 }
1534 else
1535 {
1536 if (i != regnum)
1537 continue;
1538 }
c906108c
SS
1539
1540 /* If the register name is empty, it is undefined for this
c5aa993b 1541 processor, so don't display anything. */
c906108c
SS
1542 if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0')
1543 continue;
1544
0ab7a791
AC
1545 fputs_filtered (REGISTER_NAME (i), file);
1546 print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file);
c906108c
SS
1547
1548 /* Get the data in raw format. */
0ab7a791 1549 if (! frame_register_read (frame, i, raw_buffer))
c906108c 1550 {
0ab7a791 1551 fprintf_filtered (file, "*value not available*\n");
c906108c
SS
1552 continue;
1553 }
1554
0ab7a791
AC
1555 /* FIXME: cagney/2002-08-03: This code shouldn't be necessary.
1556 The function frame_register_read() should have returned the
1557 pre-cooked register so no conversion is necessary. */
c906108c 1558 /* Convert raw data to virtual format if necessary. */
cd0bfa36
AC
1559 if (DEPRECATED_REGISTER_CONVERTIBLE_P ()
1560 && DEPRECATED_REGISTER_CONVERTIBLE (i))
c906108c 1561 {
781a750d 1562 DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL (i, register_type (current_gdbarch, i),
c906108c
SS
1563 raw_buffer, virtual_buffer);
1564 }
1565 else
392a587b
JM
1566 {
1567 memcpy (virtual_buffer, raw_buffer,
f30992d4 1568 DEPRECATED_REGISTER_VIRTUAL_SIZE (i));
392a587b 1569 }
c906108c 1570
0ab7a791
AC
1571 /* If virtual format is floating, print it that way, and in raw
1572 hex. */
7b83296f 1573 if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT)
c906108c 1574 {
0ab7a791 1575 int j;
c906108c 1576
7b83296f 1577 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
0ab7a791 1578 file, 0, 1, 0, Val_pretty_default);
c906108c 1579
0ab7a791 1580 fprintf_filtered (file, "\t(raw 0x");
12c266ea 1581 for (j = 0; j < DEPRECATED_REGISTER_RAW_SIZE (i); j++)
c906108c 1582 {
0ab7a791
AC
1583 int idx;
1584 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1585 idx = j;
1586 else
12c266ea 1587 idx = DEPRECATED_REGISTER_RAW_SIZE (i) - 1 - j;
0ab7a791 1588 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[idx]);
c906108c 1589 }
0ab7a791 1590 fprintf_filtered (file, ")");
c906108c 1591 }
c906108c
SS
1592 else
1593 {
ab4327e0 1594 /* Print the register in hex. */
7b83296f 1595 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
9d84ac84 1596 file, 'x', 1, 0, Val_pretty_default);
ab4327e0
EZ
1597 /* If not a vector register, print it also according to its
1598 natural format. */
7b83296f 1599 if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0)
ab4327e0 1600 {
9d84ac84 1601 fprintf_filtered (file, "\t");
7b83296f 1602 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
9d84ac84 1603 file, 0, 1, 0, Val_pretty_default);
ab4327e0 1604 }
c906108c
SS
1605 }
1606
0ab7a791 1607 fprintf_filtered (file, "\n");
c906108c
SS
1608 }
1609}
c906108c 1610
c906108c 1611void
fba45db2 1612registers_info (char *addr_exp, int fpregs)
c906108c
SS
1613{
1614 int regnum, numregs;
52f0bd74 1615 char *end;
c906108c
SS
1616
1617 if (!target_has_registers)
1618 error ("The program has no registers now.");
6e7f8b9c 1619 if (deprecated_selected_frame == NULL)
c906108c
SS
1620 error ("No selected frame.");
1621
1622 if (!addr_exp)
1623 {
0ab7a791 1624 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1625 deprecated_selected_frame, -1, fpregs);
c906108c
SS
1626 return;
1627 }
1628
f9418c0f 1629 while (*addr_exp != '\0')
c5aa993b 1630 {
f9418c0f
AC
1631 char *start;
1632 const char *end;
c906108c 1633
f9418c0f
AC
1634 /* Keep skipping leading white space. */
1635 if (isspace ((*addr_exp)))
1636 {
1637 addr_exp++;
1638 continue;
1639 }
c906108c 1640
f9418c0f
AC
1641 /* Discard any leading ``$''. Check that there is something
1642 resembling a register following it. */
1643 if (addr_exp[0] == '$')
1644 addr_exp++;
1645 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1646 error ("Missing register name");
c906108c 1647
f9418c0f
AC
1648 /* Find the start/end of this register name/num/group. */
1649 start = addr_exp;
1650 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1651 addr_exp++;
1652 end = addr_exp;
1653
1654 /* Figure out what we've found and display it. */
1655
1656 /* A register name? */
1657 {
eb8bc282
AC
1658 int regnum = frame_map_name_to_regnum (deprecated_selected_frame,
1659 start, end - start);
f9418c0f
AC
1660 if (regnum >= 0)
1661 {
1662 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1663 deprecated_selected_frame, regnum, fpregs);
f9418c0f
AC
1664 continue;
1665 }
1666 }
1667
1668 /* A register number? (how portable is this one?). */
1669 {
1670 char *endptr;
1671 int regnum = strtol (start, &endptr, 0);
1672 if (endptr == end
1673 && regnum >= 0
1674 && regnum < NUM_REGS + NUM_PSEUDO_REGS)
1675 {
1676 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1677 deprecated_selected_frame, regnum, fpregs);
f9418c0f
AC
1678 continue;
1679 }
1680 }
1681
1682 /* A register group? */
1683 {
6c7d17ba
AC
1684 struct reggroup *group;
1685 for (group = reggroup_next (current_gdbarch, NULL);
1686 group != NULL;
1687 group = reggroup_next (current_gdbarch, group))
f9418c0f
AC
1688 {
1689 /* Don't bother with a length check. Should the user
1690 enter a short register group name, go with the first
1691 group that matches. */
6c7d17ba 1692 if (strncmp (start, reggroup_name (group), end - start) == 0)
f9418c0f
AC
1693 break;
1694 }
6c7d17ba 1695 if (group != NULL)
f9418c0f
AC
1696 {
1697 int regnum;
1698 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1699 {
1700 if (gdbarch_register_reggroup_p (current_gdbarch, regnum,
6c7d17ba 1701 group))
f9418c0f 1702 gdbarch_print_registers_info (current_gdbarch,
6e7f8b9c 1703 gdb_stdout, deprecated_selected_frame,
f9418c0f
AC
1704 regnum, fpregs);
1705 }
1706 continue;
1707 }
1708 }
c906108c 1709
f9418c0f
AC
1710 /* Nothing matched. */
1711 error ("Invalid register `%.*s'", (int) (end - start), start);
c5aa993b 1712 }
c906108c
SS
1713}
1714
1715void
fba45db2 1716all_registers_info (char *addr_exp, int from_tty)
c906108c
SS
1717{
1718 registers_info (addr_exp, 1);
1719}
1720
a58dd373 1721static void
fba45db2 1722nofp_registers_info (char *addr_exp, int from_tty)
c906108c
SS
1723{
1724 registers_info (addr_exp, 0);
1725}
e76f1f2e
AC
1726
1727static void
1728print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1729 struct frame_info *frame, const char *args)
1730{
e71ecd70
MK
1731 if (!target_has_registers)
1732 error ("The program has no registers now.");
6e7f8b9c 1733 if (deprecated_selected_frame == NULL)
e71ecd70
MK
1734 error ("No selected frame.");
1735
e76f1f2e
AC
1736 if (gdbarch_print_vector_info_p (gdbarch))
1737 gdbarch_print_vector_info (gdbarch, file, frame, args);
1738 else
1739 {
1740 int regnum;
1741 int printed_something = 0;
ab4327e0 1742
e76f1f2e
AC
1743 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1744 {
f9418c0f 1745 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
e76f1f2e
AC
1746 {
1747 printed_something = 1;
e76f1f2e 1748 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
e76f1f2e
AC
1749 }
1750 }
1751 if (!printed_something)
1752 fprintf_filtered (file, "No vector information\n");
1753 }
1754}
1755
1756static void
1757vector_info (char *args, int from_tty)
1758{
6e7f8b9c 1759 print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
e76f1f2e 1760}
c906108c 1761\f
c5aa993b 1762
c906108c
SS
1763/*
1764 * TODO:
1765 * Should save/restore the tty state since it might be that the
1766 * program to be debugged was started on this tty and it wants
1767 * the tty in some state other than what we want. If it's running
1768 * on another terminal or without a terminal, then saving and
1769 * restoring the tty state is a harmless no-op.
1770 * This only needs to be done if we are attaching to a process.
1771 */
1772
1773/*
1774 attach_command --
1775 takes a program started up outside of gdb and ``attaches'' to it.
1776 This stops it cold in its tracks and allows us to start debugging it.
1777 and wait for the trace-trap that results from attaching. */
1778
1779void
fba45db2 1780attach_command (char *args, int from_tty)
c906108c 1781{
c5aa993b
JM
1782 char *exec_file;
1783 char *full_exec_path = NULL;
c906108c 1784
c5aa993b 1785 dont_repeat (); /* Not for the faint of heart */
c906108c
SS
1786
1787 if (target_has_execution)
1788 {
1789 if (query ("A program is being debugged already. Kill it? "))
1790 target_kill ();
1791 else
1792 error ("Not killed.");
1793 }
1794
1795 target_attach (args, from_tty);
1796
1797 /* Set up the "saved terminal modes" of the inferior
1798 based on what modes we are starting it with. */
1799 target_terminal_init ();
1800
1801 /* Install inferior's terminal modes. */
1802 target_terminal_inferior ();
1803
1804 /* Set up execution context to know that we should return from
1805 wait_for_inferior as soon as the target reports a stop. */
1806 init_wait_for_inferior ();
1807 clear_proceed_status ();
c906108c
SS
1808
1809 /* No traps are generated when attaching to inferior under Mach 3
1810 or GNU hurd. */
1811#ifndef ATTACH_NO_WAIT
c54cfec8
EZ
1812 /* Careful here. See comments in inferior.h. Basically some OSes
1813 don't ignore SIGSTOPs on continue requests anymore. We need a
1814 way for handle_inferior_event to reset the stop_signal variable
1815 after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */
c0236d92 1816 stop_soon = STOP_QUIETLY_NO_SIGSTOP;
c906108c 1817 wait_for_inferior ();
c0236d92 1818 stop_soon = NO_STOP_QUIETLY;
c906108c
SS
1819#endif
1820
1821 /*
1822 * If no exec file is yet known, try to determine it from the
1823 * process itself.
1824 */
1825 exec_file = (char *) get_exec_file (0);
c5aa993b
JM
1826 if (!exec_file)
1827 {
39f77062 1828 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
c5aa993b
JM
1829 if (exec_file)
1830 {
1831 /* It's possible we don't have a full path, but rather just a
1832 filename. Some targets, such as HP-UX, don't provide the
1833 full path, sigh.
1834
1835 Attempt to qualify the filename against the source path.
1836 (If that fails, we'll just fall back on the original
1837 filename. Not much more we can do...)
1838 */
1839 if (!source_full_path_of (exec_file, &full_exec_path))
1840 full_exec_path = savestring (exec_file, strlen (exec_file));
1841
1842 exec_file_attach (full_exec_path, from_tty);
1adeb98a 1843 symbol_file_add_main (full_exec_path, from_tty);
c5aa993b 1844 }
c906108c 1845 }
63ed89b4
DJ
1846 else
1847 {
1848 reopen_exec_file ();
1849 reread_symbols ();
1850 }
c906108c
SS
1851
1852#ifdef SOLIB_ADD
990f9fe3
FF
1853 /* Add shared library symbols from the newly attached process, if any. */
1854 SOLIB_ADD ((char *) 0, from_tty, &current_target, auto_solib_add);
1855 re_enable_breakpoints_in_shlibs ();
c906108c
SS
1856#endif
1857
1858 /* Take any necessary post-attaching actions for this platform.
c5aa993b 1859 */
39f77062 1860 target_post_attach (PIDGET (inferior_ptid));
c906108c
SS
1861
1862 normal_stop ();
6426a772
JM
1863
1864 if (attach_hook)
1865 attach_hook ();
c906108c
SS
1866}
1867
1868/*
1869 * detach_command --
1870 * takes a program previously attached to and detaches it.
1871 * The program resumes execution and will no longer stop
1872 * on signals, etc. We better not have left any breakpoints
1873 * in the program or it'll die when it hits one. For this
1874 * to work, it may be necessary for the process to have been
1875 * previously attached. It *might* work if the program was
1876 * started via the normal ptrace (PTRACE_TRACEME).
1877 */
1878
1879static void
fba45db2 1880detach_command (char *args, int from_tty)
c906108c 1881{
c5aa993b 1882 dont_repeat (); /* Not for the faint of heart */
c906108c
SS
1883 target_detach (args, from_tty);
1884#if defined(SOLIB_RESTART)
1885 SOLIB_RESTART ();
1886#endif
6426a772
JM
1887 if (detach_hook)
1888 detach_hook ();
c906108c
SS
1889}
1890
6ad8ae5c
DJ
1891/* Disconnect from the current target without resuming it (leaving it
1892 waiting for a debugger).
1893
1894 We'd better not have left any breakpoints in the program or the
1895 next debugger will get confused. Currently only supported for some
1896 remote targets, since the normal attach mechanisms don't work on
1897 stopped processes on some native platforms (e.g. GNU/Linux). */
1898
1899static void
1900disconnect_command (char *args, int from_tty)
1901{
1902 dont_repeat (); /* Not for the faint of heart */
1903 target_disconnect (args, from_tty);
1904#if defined(SOLIB_RESTART)
1905 SOLIB_RESTART ();
1906#endif
1907 if (detach_hook)
1908 detach_hook ();
1909}
1910
43ff13b4
JM
1911/* Stop the execution of the target while running in async mode, in
1912 the backgound. */
8b93c638 1913void
fba45db2 1914interrupt_target_command (char *args, int from_tty)
43ff13b4 1915{
6426a772 1916 if (event_loop_p && target_can_async_p ())
43ff13b4 1917 {
c5aa993b 1918 dont_repeat (); /* Not for the faint of heart */
43ff13b4
JM
1919 target_stop ();
1920 }
1921}
1922
c906108c 1923static void
23e3a7ac
AC
1924print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1925 struct frame_info *frame, const char *args)
c906108c 1926{
e71ecd70
MK
1927 if (!target_has_registers)
1928 error ("The program has no registers now.");
6e7f8b9c 1929 if (deprecated_selected_frame == NULL)
e71ecd70
MK
1930 error ("No selected frame.");
1931
23e3a7ac
AC
1932 if (gdbarch_print_float_info_p (gdbarch))
1933 gdbarch_print_float_info (gdbarch, file, frame, args);
1934 else
1935 {
23e3a7ac
AC
1936 int regnum;
1937 int printed_something = 0;
ab4327e0 1938
23e3a7ac
AC
1939 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1940 {
f9418c0f 1941 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
23e3a7ac
AC
1942 {
1943 printed_something = 1;
23e3a7ac 1944 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
23e3a7ac
AC
1945 }
1946 }
1947 if (!printed_something)
1948 fprintf_filtered (file, "\
1949No floating-point info available for this processor.\n");
23e3a7ac
AC
1950 }
1951}
1952
1953static void
1954float_info (char *args, int from_tty)
1955{
6e7f8b9c 1956 print_float_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
c906108c
SS
1957}
1958\f
c906108c 1959static void
fba45db2 1960unset_command (char *args, int from_tty)
c906108c
SS
1961{
1962 printf_filtered ("\"unset\" must be followed by the name of ");
1963 printf_filtered ("an unset subcommand.\n");
1964 help_list (unsetlist, "unset ", -1, gdb_stdout);
1965}
1966
1967void
fba45db2 1968_initialize_infcmd (void)
c906108c
SS
1969{
1970 struct cmd_list_element *c;
c5aa993b 1971
c94fdfd0
EZ
1972 c = add_com ("tty", class_run, tty_command,
1973 "Set terminal for future runs of program being debugged.");
5ba2abeb 1974 set_cmd_completer (c, filename_completer);
c906108c 1975
fa58ee11
EZ
1976 c = add_set_cmd ("args", class_run, var_string_noescape,
1977 (char *) &inferior_args,
1978 "Set argument list to give program being debugged when it is started.\n\
c906108c 1979Follow this command with any number of args, to be passed to the program.",
fa58ee11 1980 &setlist);
5ba2abeb 1981 set_cmd_completer (c, filename_completer);
9f60d481 1982 set_cmd_sfunc (c, notice_args_set);
552c04a7 1983 c = add_show_from_set (c, &showlist);
9f60d481 1984 set_cmd_sfunc (c, notice_args_read);
c906108c
SS
1985
1986 c = add_cmd
1987 ("environment", no_class, environment_info,
1988 "The environment to give the program, or one variable's value.\n\
1989With an argument VAR, prints the value of environment variable VAR to\n\
1990give the program being debugged. With no arguments, prints the entire\n\
1991environment to be given to the program.", &showlist);
5ba2abeb 1992 set_cmd_completer (c, noop_completer);
c906108c
SS
1993
1994 add_prefix_cmd ("unset", no_class, unset_command,
d4654627 1995 "Complement to certain \"set\" commands.",
c906108c 1996 &unsetlist, "unset ", 0, &cmdlist);
c5aa993b 1997
c906108c 1998 c = add_cmd ("environment", class_run, unset_environment_command,
c5aa993b 1999 "Cancel environment variable VAR for the program.\n\
c906108c 2000This does not affect the program until the next \"run\" command.",
c5aa993b 2001 &unsetlist);
5ba2abeb 2002 set_cmd_completer (c, noop_completer);
c906108c
SS
2003
2004 c = add_cmd ("environment", class_run, set_environment_command,
2005 "Set environment variable value to give the program.\n\
2006Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2007VALUES of environment variables are uninterpreted strings.\n\
2008This does not affect the program until the next \"run\" command.",
c5aa993b 2009 &setlist);
5ba2abeb 2010 set_cmd_completer (c, noop_completer);
c5aa993b 2011
fa58ee11
EZ
2012 c = add_com ("path", class_files, path_command,
2013 "Add directory DIR(s) to beginning of search path for object files.\n\
c906108c
SS
2014$cwd in the path means the current working directory.\n\
2015This path is equivalent to the $PATH shell variable. It is a list of\n\
2016directories, separated by colons. These directories are searched to find\n\
2017fully linked executable files and separately compiled object files as needed.");
5ba2abeb 2018 set_cmd_completer (c, filename_completer);
c906108c
SS
2019
2020 c = add_cmd ("paths", no_class, path_info,
c5aa993b 2021 "Current search path for finding object files.\n\
c906108c
SS
2022$cwd in the path means the current working directory.\n\
2023This path is equivalent to the $PATH shell variable. It is a list of\n\
2024directories, separated by colons. These directories are searched to find\n\
2025fully linked executable files and separately compiled object files as needed.",
2026 &showlist);
5ba2abeb 2027 set_cmd_completer (c, noop_completer);
c906108c 2028
c5aa993b
JM
2029 add_com ("attach", class_run, attach_command,
2030 "Attach to a process or file outside of GDB.\n\
c906108c
SS
2031This command attaches to another target, of the same type as your last\n\
2032\"target\" command (\"info files\" will show your target stack).\n\
2033The command may take as argument a process id or a device file.\n\
2034For a process id, you must have permission to send the process a signal,\n\
2035and it must have the same effective uid as the debugger.\n\
2036When using \"attach\" with a process id, the debugger finds the\n\
2037program running in the process, looking first in the current working\n\
2038directory, or (if not found there) using the source file search path\n\
2039(see the \"directory\" command). You can also use the \"file\" command\n\
2040to specify the program, and to load its symbol table.");
2041
2042 add_com ("detach", class_run, detach_command,
2043 "Detach a process or file previously attached.\n\
2044If a process, it is no longer traced, and it continues its execution. If\n\
2045you were debugging a file, the file is closed and gdb no longer accesses it.");
2046
6ad8ae5c
DJ
2047 add_com ("disconnect", class_run, disconnect_command,
2048 "Disconnect from a target.\n\
2049The target will wait for another debugger to connect. Not available for\n\
2050all targets.");
2051
c906108c
SS
2052 add_com ("signal", class_run, signal_command,
2053 "Continue program giving it signal specified by the argument.\n\
2054An argument of \"0\" means continue program without giving it a signal.");
2055
2056 add_com ("stepi", class_run, stepi_command,
2057 "Step one instruction exactly.\n\
2058Argument N means do this N times (or till program stops for another reason).");
2059 add_com_alias ("si", "stepi", class_alias, 0);
2060
2061 add_com ("nexti", class_run, nexti_command,
2062 "Step one instruction, but proceed through subroutine calls.\n\
2063Argument N means do this N times (or till program stops for another reason).");
2064 add_com_alias ("ni", "nexti", class_alias, 0);
2065
2066 add_com ("finish", class_run, finish_command,
2067 "Execute until selected stack frame returns.\n\
2068Upon return, the value returned is printed and put in the value history.");
2069
2070 add_com ("next", class_run, next_command,
2071 "Step program, proceeding through subroutine calls.\n\
2072Like the \"step\" command as long as subroutine calls do not happen;\n\
2073when they do, the call is treated as one instruction.\n\
2074Argument N means do this N times (or till program stops for another reason).");
2075 add_com_alias ("n", "next", class_run, 1);
2076 if (xdb_commands)
c5aa993b 2077 add_com_alias ("S", "next", class_run, 1);
c906108c
SS
2078
2079 add_com ("step", class_run, step_command,
2080 "Step program until it reaches a different source line.\n\
2081Argument N means do this N times (or till program stops for another reason).");
2082 add_com_alias ("s", "step", class_run, 1);
2083
c94fdfd0
EZ
2084 c = add_com ("until", class_run, until_command,
2085 "Execute until the program reaches a source line greater than the current\n\
ae66c1fc 2086or a specified location (same args as break command) within the current frame.");
5ba2abeb 2087 set_cmd_completer (c, location_completer);
c906108c 2088 add_com_alias ("u", "until", class_run, 1);
c5aa993b 2089
ae66c1fc
EZ
2090 c = add_com ("advance", class_run, advance_command,
2091 "Continue the program up to the given location (same form as args for break command).\n\
2092Execution will also stop upon exit from the current stack frame.");
2093 set_cmd_completer (c, location_completer);
2094
c94fdfd0
EZ
2095 c = add_com ("jump", class_run, jump_command,
2096 "Continue program being debugged at specified line or address.\n\
c906108c
SS
2097Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2098for an address to start at.");
5ba2abeb 2099 set_cmd_completer (c, location_completer);
c906108c 2100
b83266a0 2101 if (xdb_commands)
c94fdfd0
EZ
2102 {
2103 c = add_com ("go", class_run, go_command,
2104 "Usage: go <location>\n\
c906108c
SS
2105Continue program being debugged, stopping at specified line or \n\
2106address.\n\
2107Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2108expression for an address to start at.\n\
2109This command is a combination of tbreak and jump.");
5ba2abeb 2110 set_cmd_completer (c, location_completer);
c94fdfd0 2111 }
b83266a0 2112
c906108c 2113 if (xdb_commands)
c5aa993b 2114 add_com_alias ("g", "go", class_run, 1);
c906108c
SS
2115
2116 add_com ("continue", class_run, continue_command,
2117 "Continue program being debugged, after signal or breakpoint.\n\
2118If proceeding from breakpoint, a number N may be used as an argument,\n\
2119which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2120the breakpoint won't break until the Nth time it is reached).");
2121 add_com_alias ("c", "cont", class_run, 1);
2122 add_com_alias ("fg", "cont", class_run, 1);
2123
fa58ee11 2124 c = add_com ("run", class_run, run_command,
c906108c
SS
2125 "Start debugged program. You may specify arguments to give it.\n\
2126Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2127Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2128With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2129To cancel previous arguments and run with no arguments,\n\
2130use \"set args\" without arguments.");
5ba2abeb 2131 set_cmd_completer (c, filename_completer);
c906108c
SS
2132 add_com_alias ("r", "run", class_run, 1);
2133 if (xdb_commands)
2134 add_com ("R", class_run, run_no_args_command,
c5aa993b 2135 "Start debugged program with no arguments.");
c906108c 2136
43ff13b4
JM
2137 add_com ("interrupt", class_run, interrupt_target_command,
2138 "Interrupt the execution of the debugged program.");
2139
c906108c 2140 add_info ("registers", nofp_registers_info,
c5aa993b 2141 "List of integer registers and their contents, for selected stack frame.\n\
c906108c 2142Register name as argument means describe only that register.");
7194c49b 2143 add_info_alias ("r", "registers", 1);
c906108c
SS
2144
2145 if (xdb_commands)
c5aa993b
JM
2146 add_com ("lr", class_info, nofp_registers_info,
2147 "List of integer registers and their contents, for selected stack frame.\n\
c906108c
SS
2148 Register name as argument means describe only that register.");
2149 add_info ("all-registers", all_registers_info,
c5aa993b 2150 "List of all registers and their contents, for selected stack frame.\n\
c906108c
SS
2151Register name as argument means describe only that register.");
2152
2153 add_info ("program", program_info,
2154 "Execution status of the program.");
2155
2156 add_info ("float", float_info,
2157 "Print the status of the floating point unit\n");
2158
e76f1f2e
AC
2159 add_info ("vector", vector_info,
2160 "Print the status of the vector unit\n");
2161
c906108c
SS
2162 inferior_environ = make_environ ();
2163 init_environ (inferior_environ);
2164}