]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/infcmd.c
* gdbint.texinfo (DECR_PC_AFTER_HW_BREAK): Don't document.
[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,
de5ad195 3 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
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;
664
665 /* FIXME: On nexti, this may have already been done (when we hit the
666 step resume break, I think). Probably this should be moved to
667 wait_for_inferior (near the top). */
668#if defined (SHIFT_INST_REGS)
669 SHIFT_INST_REGS ();
670#endif
671 }
672
673 if (!single_inst || skip_subroutines)
674 do_cleanups (cleanups);
675 return;
676 }
677 /* In case of asynchronous target things get complicated, do only
678 one step for now, before returning control to the event loop. Let
679 the continuation figure out how many other steps we need to do,
680 and handle them one at the time, through step_once(). */
681 else
682 {
683 if (event_loop_p && target_can_async_p ())
684 step_once (skip_subroutines, single_inst, count);
c906108c 685 }
c2d11a7d 686}
c906108c 687
c2d11a7d
JM
688/* Called after we are done with one step operation, to check whether
689 we need to step again, before we print the prompt and return control
690 to the user. If count is > 1, we will need to do one more call to
691 proceed(), via step_once(). Basically it is like step_once and
692 step_1_continuation are co-recursive. */
693static void
fba45db2 694step_1_continuation (struct continuation_arg *arg)
c2d11a7d 695{
57e687d9
MS
696 int count;
697 int skip_subroutines;
698 int single_inst;
699
700 skip_subroutines = arg->data.integer;
701 single_inst = arg->next->data.integer;
702 count = arg->next->next->data.integer;
703
704 if (stop_step)
705 {
706 /* FIXME: On nexti, this may have already been done (when we hit the
707 step resume break, I think). Probably this should be moved to
708 wait_for_inferior (near the top). */
c2d11a7d 709#if defined (SHIFT_INST_REGS)
57e687d9 710 SHIFT_INST_REGS ();
c2d11a7d 711#endif
57e687d9
MS
712 step_once (skip_subroutines, single_inst, count - 1);
713 }
714 else
715 if (!single_inst || skip_subroutines)
716 do_exec_cleanups (ALL_CLEANUPS);
c2d11a7d
JM
717}
718
719/* Do just one step operation. If count >1 we will have to set up a
720 continuation to be done after the target stops (after this one
721 step). This is useful to implement the 'step n' kind of commands, in
722 case of asynchronous targets. We had to split step_1 into two parts,
723 one to be done before proceed() and one afterwards. This function is
724 called in case of step n with n>1, after the first step operation has
725 been completed.*/
726static void
0d06e24b 727step_once (int skip_subroutines, int single_inst, int count)
c2d11a7d 728{
0d06e24b
JM
729 struct continuation_arg *arg1;
730 struct continuation_arg *arg2;
731 struct continuation_arg *arg3;
732 struct frame_info *frame;
c2d11a7d
JM
733
734 if (count > 0)
c906108c
SS
735 {
736 clear_proceed_status ();
737
738 frame = get_current_frame ();
c5aa993b 739 if (!frame) /* Avoid coredump here. Why tho? */
c906108c 740 error ("No current frame");
aa0cd9c1 741 step_frame_id = get_frame_id (frame);
c906108c
SS
742 step_sp = read_sp ();
743
c5aa993b 744 if (!single_inst)
c906108c
SS
745 {
746 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
5fbbeb29
CF
747
748 /* If we have no line info, switch to stepi mode. */
749 if (step_range_end == 0 && step_stop_if_no_debug)
750 {
751 step_range_start = step_range_end = 1;
752 }
753 else if (step_range_end == 0)
c906108c
SS
754 {
755 char *name;
756 if (find_pc_partial_function (stop_pc, &name, &step_range_start,
757 &step_range_end) == 0)
758 error ("Cannot find bounds of current function");
759
760 target_terminal_ours ();
761 printf_filtered ("\
762Single stepping until exit from function %s, \n\
763which has no line number information.\n", name);
764 }
765 }
766 else
767 {
768 /* Say we are stepping, but stop after one insn whatever it does. */
769 step_range_start = step_range_end = 1;
770 if (!skip_subroutines)
771 /* It is stepi.
772 Don't step over function calls, not even to functions lacking
773 line numbers. */
5fbbeb29 774 step_over_calls = STEP_OVER_NONE;
c906108c
SS
775 }
776
777 if (skip_subroutines)
5fbbeb29 778 step_over_calls = STEP_OVER_ALL;
c906108c
SS
779
780 step_multi = (count > 1);
c2d11a7d
JM
781 arg1 =
782 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
783 arg2 =
784 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
785 arg3 =
786 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
787 arg1->next = arg2;
57e687d9 788 arg1->data.integer = skip_subroutines;
c2d11a7d 789 arg2->next = arg3;
57e687d9 790 arg2->data.integer = single_inst;
c2d11a7d 791 arg3->next = NULL;
57e687d9 792 arg3->data.integer = count;
c2d11a7d 793 add_intermediate_continuation (step_1_continuation, arg1);
2acceee2 794 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
c906108c 795 }
c906108c 796}
c2d11a7d 797
c906108c
SS
798\f
799/* Continue program at specified address. */
800
801static void
fba45db2 802jump_command (char *arg, int from_tty)
c906108c 803{
52f0bd74 804 CORE_ADDR addr;
c906108c
SS
805 struct symtabs_and_lines sals;
806 struct symtab_and_line sal;
807 struct symbol *fn;
808 struct symbol *sfn;
43ff13b4 809 int async_exec = 0;
c5aa993b 810
c906108c
SS
811 ERROR_NO_INFERIOR;
812
43ff13b4
JM
813 /* Find out whether we must run in the background. */
814 if (arg != NULL)
815 async_exec = strip_bg_char (&arg);
816
817 /* If we must run in the background, but the target can't do it,
818 error out. */
6426a772 819 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
820 error ("Asynchronous execution not supported on this target.");
821
822 /* If we are not asked to run in the bg, then prepare to run in the
823 foreground, synchronously. */
6426a772 824 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 825 {
43ff13b4 826 /* Simulate synchronous execution */
6426a772 827 async_disable_stdin ();
43ff13b4
JM
828 }
829
c906108c
SS
830 if (!arg)
831 error_no_arg ("starting address");
832
833 sals = decode_line_spec_1 (arg, 1);
834 if (sals.nelts != 1)
835 {
836 error ("Unreasonable jump request");
837 }
838
839 sal = sals.sals[0];
b8c9b27d 840 xfree (sals.sals);
c906108c
SS
841
842 if (sal.symtab == 0 && sal.pc == 0)
843 error ("No source file has been specified.");
844
c5aa993b 845 resolve_sal_pc (&sal); /* May error out */
c906108c
SS
846
847 /* See if we are trying to jump to another function. */
848 fn = get_frame_function (get_current_frame ());
849 sfn = find_pc_function (sal.pc);
850 if (fn != NULL && sfn != fn)
851 {
852 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line,
de5ad195 853 SYMBOL_PRINT_NAME (fn)))
c906108c
SS
854 {
855 error ("Not confirmed.");
856 /* NOTREACHED */
857 }
858 }
859
c5aa993b 860 if (sfn != NULL)
c906108c
SS
861 {
862 fixup_symbol_section (sfn, 0);
c5aa993b 863 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) &&
c906108c
SS
864 !section_is_mapped (SYMBOL_BFD_SECTION (sfn)))
865 {
866 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
867 {
868 error ("Not confirmed.");
869 /* NOTREACHED */
870 }
871 }
872 }
873
c906108c
SS
874 addr = sal.pc;
875
876 if (from_tty)
877 {
878 printf_filtered ("Continuing at ");
879 print_address_numeric (addr, 1, gdb_stdout);
880 printf_filtered (".\n");
881 }
882
883 clear_proceed_status ();
884 proceed (addr, TARGET_SIGNAL_0, 0);
885}
c906108c 886\f
c5aa993b 887
c906108c
SS
888/* Go to line or address in current procedure */
889static void
fba45db2 890go_command (char *line_no, int from_tty)
c906108c 891{
c5aa993b 892 if (line_no == (char *) NULL || !*line_no)
b83266a0 893 printf_filtered (GO_USAGE);
c906108c
SS
894 else
895 {
b83266a0
SS
896 tbreak_command (line_no, from_tty);
897 jump_command (line_no, from_tty);
c906108c
SS
898 }
899}
c906108c 900\f
c5aa993b 901
c906108c
SS
902/* Continue program giving it specified signal. */
903
904static void
fba45db2 905signal_command (char *signum_exp, int from_tty)
c906108c
SS
906{
907 enum target_signal oursig;
908
909 dont_repeat (); /* Too dangerous. */
910 ERROR_NO_INFERIOR;
911
912 if (!signum_exp)
913 error_no_arg ("signal number");
914
915 /* It would be even slicker to make signal names be valid expressions,
916 (the type could be "enum $signal" or some such), then the user could
917 assign them to convenience variables. */
918 oursig = target_signal_from_name (signum_exp);
919
920 if (oursig == TARGET_SIGNAL_UNKNOWN)
921 {
922 /* No, try numeric. */
bb518678 923 int num = parse_and_eval_long (signum_exp);
c906108c
SS
924
925 if (num == 0)
926 oursig = TARGET_SIGNAL_0;
927 else
928 oursig = target_signal_from_command (num);
929 }
930
931 if (from_tty)
932 {
933 if (oursig == TARGET_SIGNAL_0)
934 printf_filtered ("Continuing with no signal.\n");
935 else
936 printf_filtered ("Continuing with signal %s.\n",
937 target_signal_to_name (oursig));
938 }
939
940 clear_proceed_status ();
941 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
942 FIXME: Neither should "signal foo" but when I tried passing
943 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
944 tried to track down yet. */
2acceee2 945 proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
c906108c
SS
946}
947
c906108c
SS
948/* Proceed until we reach a different source line with pc greater than
949 our current one or exit the function. We skip calls in both cases.
950
951 Note that eventually this command should probably be changed so
952 that only source lines are printed out when we hit the breakpoint
953 we set. This may involve changes to wait_for_inferior and the
954 proceed status code. */
955
c906108c 956static void
fba45db2 957until_next_command (int from_tty)
c906108c
SS
958{
959 struct frame_info *frame;
960 CORE_ADDR pc;
961 struct symbol *func;
962 struct symtab_and_line sal;
c5aa993b 963
c906108c
SS
964 clear_proceed_status ();
965
966 frame = get_current_frame ();
967
968 /* Step until either exited from this function or greater
969 than the current line (if in symbolic section) or pc (if
970 not). */
971
972 pc = read_pc ();
973 func = find_pc_function (pc);
c5aa993b 974
c906108c
SS
975 if (!func)
976 {
977 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
c5aa993b 978
c906108c
SS
979 if (msymbol == NULL)
980 error ("Execution is not within a known function.");
c5aa993b 981
c906108c
SS
982 step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
983 step_range_end = pc;
984 }
985 else
986 {
987 sal = find_pc_line (pc, 0);
c5aa993b 988
c906108c
SS
989 step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
990 step_range_end = sal.end;
991 }
c5aa993b 992
5fbbeb29 993 step_over_calls = STEP_OVER_ALL;
aa0cd9c1 994 step_frame_id = get_frame_id (frame);
c906108c
SS
995 step_sp = read_sp ();
996
997 step_multi = 0; /* Only one call to proceed */
c5aa993b 998
2acceee2 999 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
c906108c
SS
1000}
1001
c5aa993b 1002static void
fba45db2 1003until_command (char *arg, int from_tty)
c906108c 1004{
43ff13b4
JM
1005 int async_exec = 0;
1006
c906108c
SS
1007 if (!target_has_execution)
1008 error ("The program is not running.");
43ff13b4
JM
1009
1010 /* Find out whether we must run in the background. */
1011 if (arg != NULL)
1012 async_exec = strip_bg_char (&arg);
1013
1014 /* If we must run in the background, but the target can't do it,
1015 error out. */
6426a772 1016 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
1017 error ("Asynchronous execution not supported on this target.");
1018
1019 /* If we are not asked to run in the bg, then prepare to run in the
1020 foreground, synchronously. */
6426a772 1021 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 1022 {
43ff13b4 1023 /* Simulate synchronous execution */
6426a772 1024 async_disable_stdin ();
43ff13b4
JM
1025 }
1026
c906108c 1027 if (arg)
ae66c1fc 1028 until_break_command (arg, from_tty, 0);
c906108c
SS
1029 else
1030 until_next_command (from_tty);
1031}
ae66c1fc
EZ
1032
1033static void
1034advance_command (char *arg, int from_tty)
1035{
1036 int async_exec = 0;
1037
1038 if (!target_has_execution)
1039 error ("The program is not running.");
1040
1041 if (arg == NULL)
1042 error_no_arg ("a location");
1043
1044 /* Find out whether we must run in the background. */
1045 if (arg != NULL)
1046 async_exec = strip_bg_char (&arg);
1047
1048 /* If we must run in the background, but the target can't do it,
1049 error out. */
1050 if (event_loop_p && async_exec && !target_can_async_p ())
1051 error ("Asynchronous execution not supported on this target.");
1052
1053 /* If we are not asked to run in the bg, then prepare to run in the
1054 foreground, synchronously. */
1055 if (event_loop_p && !async_exec && target_can_async_p ())
1056 {
1057 /* Simulate synchronous execution. */
1058 async_disable_stdin ();
1059 }
1060
1061 until_break_command (arg, from_tty, 1);
1062}
c906108c 1063\f
43ff13b4 1064
11cf8741
JM
1065/* Print the result of a function at the end of a 'finish' command. */
1066static void
1067print_return_value (int structure_return, struct type *value_type)
1068{
3d6d86c6 1069 struct value *value;
8b93c638 1070 static struct ui_stream *stb = NULL;
11cf8741
JM
1071
1072 if (!structure_return)
1073 {
5fe830e4 1074 value = register_value_being_returned (value_type, stop_registers);
8b93c638
JM
1075 stb = ui_out_stream_new (uiout);
1076 ui_out_text (uiout, "Value returned is ");
4e7d7511 1077 ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
9549d9c1 1078 ui_out_text (uiout, " = ");
8b93c638
JM
1079 value_print (value, stb->stream, 0, Val_no_prettyprint);
1080 ui_out_field_stream (uiout, "return-value", stb);
1081 ui_out_text (uiout, "\n");
11cf8741 1082 }
92ad9cd9
AC
1083 /* FIXME: 2003-09-27: When returning from a nested inferior function
1084 call, it's possible (with no help from the architecture vector)
1085 to locate and return/print a "struct return" value. This is just
1086 a more complicated case of what is already being done in in the
1087 inferior function call code. In fact, when inferior function
1088 calls are made async, this will likely be made the norm. */
00d33403 1089 else if (gdbarch_return_value_p (current_gdbarch))
92ad9cd9
AC
1090 /* We cannot determine the contents of the structure because it is
1091 on the stack, and we don't know where, since we did not
1092 initiate the call, as opposed to the call_function_by_hand
1093 case. */
1094 {
1095 gdb_assert (gdbarch_return_value (current_gdbarch, value_type, NULL, NULL, NULL)
1096 == RETURN_VALUE_STRUCT_CONVENTION);
8b93c638
JM
1097 ui_out_text (uiout, "Value returned has type: ");
1098 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1099 ui_out_text (uiout, ".");
1100 ui_out_text (uiout, " Cannot determine contents\n");
92ad9cd9
AC
1101 return;
1102 }
1103 else
1104 {
5fe830e4
AC
1105 if (EXTRACT_STRUCT_VALUE_ADDRESS_P ())
1106 {
1107 CORE_ADDR addr = EXTRACT_STRUCT_VALUE_ADDRESS (stop_registers);
1108 if (!addr)
1109 error ("Function return value unknown.");
1110 value = value_at (value_type, addr, NULL);
1111 }
5fe830e4
AC
1112 else
1113 {
1114 /* It is "struct return" yet the value is being extracted,
1115 presumably from registers, using EXTRACT_RETURN_VALUE.
ce2826aa 1116 This doesn't make sense. Unfortunately, the legacy
5fe830e4
AC
1117 interfaces allowed this behavior. Sigh! */
1118 value = allocate_value (value_type);
1119 CHECK_TYPEDEF (value_type);
1120 /* If the function returns void, don't bother fetching the
1121 return value. */
1122 EXTRACT_RETURN_VALUE (value_type, stop_registers,
1123 VALUE_CONTENTS_RAW (value));
1124 }
8b93c638
JM
1125 stb = ui_out_stream_new (uiout);
1126 ui_out_text (uiout, "Value returned is ");
4e7d7511 1127 ui_out_field_fmt (uiout, "gdb-result-var", "$%d", record_latest_value (value));
28ae27b1 1128 ui_out_text (uiout, " = ");
8b93c638
JM
1129 value_print (value, stb->stream, 0, Val_no_prettyprint);
1130 ui_out_field_stream (uiout, "return-value", stb);
1131 ui_out_text (uiout, "\n");
11cf8741
JM
1132 }
1133}
1134
43ff13b4
JM
1135/* Stuff that needs to be done by the finish command after the target
1136 has stopped. In asynchronous mode, we wait for the target to stop in
1137 the call to poll or select in the event loop, so it is impossible to
1138 do all the stuff as part of the finish_command function itself. The
1139 only chance we have to complete this command is in
1140 fetch_inferior_event, which is called by the event loop as soon as it
1141 detects that the target has stopped. This function is called via the
6953f3ba 1142 cmd_continuation pointer. */
43ff13b4 1143void
fba45db2 1144finish_command_continuation (struct continuation_arg *arg)
43ff13b4 1145{
52f0bd74 1146 struct symbol *function;
43ff13b4 1147 struct breakpoint *breakpoint;
0d06e24b 1148 struct cleanup *cleanups;
c5aa993b 1149
57e687d9
MS
1150 breakpoint = (struct breakpoint *) arg->data.pointer;
1151 function = (struct symbol *) arg->next->data.pointer;
1152 cleanups = (struct cleanup *) arg->next->next->data.pointer;
43ff13b4 1153
c5aa993b 1154 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
43ff13b4
JM
1155 && function != 0)
1156 {
1157 struct type *value_type;
43ff13b4
JM
1158 CORE_ADDR funcaddr;
1159 int struct_return;
1160
1161 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1162 if (!value_type)
8e65ff28
AC
1163 internal_error (__FILE__, __LINE__,
1164 "finish_command: function has no target type");
c5aa993b 1165
43ff13b4
JM
1166 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1167 {
0d06e24b 1168 do_exec_cleanups (cleanups);
43ff13b4
JM
1169 return;
1170 }
1171
1172 funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
1173
48436ce6 1174 struct_return = using_struct_return (check_typedef (value_type),
11cf8741 1175 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)));
43ff13b4 1176
11cf8741 1177 print_return_value (struct_return, value_type);
43ff13b4 1178 }
0d06e24b 1179 do_exec_cleanups (cleanups);
43ff13b4
JM
1180}
1181
c906108c
SS
1182/* "finish": Set a temporary breakpoint at the place
1183 the selected frame will return to, then continue. */
1184
1185static void
fba45db2 1186finish_command (char *arg, int from_tty)
c906108c
SS
1187{
1188 struct symtab_and_line sal;
52f0bd74
AC
1189 struct frame_info *frame;
1190 struct symbol *function;
c906108c
SS
1191 struct breakpoint *breakpoint;
1192 struct cleanup *old_chain;
0d06e24b 1193 struct continuation_arg *arg1, *arg2, *arg3;
43ff13b4
JM
1194
1195 int async_exec = 0;
1196
1197 /* Find out whether we must run in the background. */
1198 if (arg != NULL)
1199 async_exec = strip_bg_char (&arg);
1200
1201 /* If we must run in the background, but the target can't do it,
1202 error out. */
6426a772 1203 if (event_loop_p && async_exec && !target_can_async_p ())
43ff13b4
JM
1204 error ("Asynchronous execution not supported on this target.");
1205
1206 /* If we are not asked to run in the bg, then prepare to run in the
1207 foreground, synchronously. */
6426a772 1208 if (event_loop_p && !async_exec && target_can_async_p ())
c5aa993b 1209 {
43ff13b4 1210 /* Simulate synchronous execution */
6426a772 1211 async_disable_stdin ();
43ff13b4 1212 }
c906108c
SS
1213
1214 if (arg)
1215 error ("The \"finish\" command does not take any arguments.");
1216 if (!target_has_execution)
1217 error ("The program is not running.");
6e7f8b9c 1218 if (deprecated_selected_frame == NULL)
c906108c
SS
1219 error ("No selected frame.");
1220
6e7f8b9c 1221 frame = get_prev_frame (deprecated_selected_frame);
c906108c
SS
1222 if (frame == 0)
1223 error ("\"finish\" not meaningful in the outermost frame.");
1224
1225 clear_proceed_status ();
1226
bdd78e62
AC
1227 sal = find_pc_line (get_frame_pc (frame), 0);
1228 sal.pc = get_frame_pc (frame);
c906108c 1229
818dd999 1230 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
c906108c 1231
6426a772 1232 if (!event_loop_p || !target_can_async_p ())
4d6140d9 1233 old_chain = make_cleanup_delete_breakpoint (breakpoint);
43ff13b4 1234 else
4d6140d9 1235 old_chain = make_exec_cleanup_delete_breakpoint (breakpoint);
c906108c
SS
1236
1237 /* Find the function we will return from. */
1238
bdd78e62 1239 function = find_pc_function (get_frame_pc (deprecated_selected_frame));
c906108c
SS
1240
1241 /* Print info on the selected frame, including level number
1242 but not source. */
1243 if (from_tty)
1244 {
1245 printf_filtered ("Run till exit from ");
6e7f8b9c
AC
1246 print_stack_frame (deprecated_selected_frame,
1247 frame_relative_level (deprecated_selected_frame), 0);
c906108c
SS
1248 }
1249
43ff13b4
JM
1250 /* If running asynchronously and the target support asynchronous
1251 execution, set things up for the rest of the finish command to be
1252 completed later on, when gdb has detected that the target has
1253 stopped, in fetch_inferior_event. */
6426a772 1254 if (event_loop_p && target_can_async_p ())
43ff13b4 1255 {
c5aa993b 1256 arg1 =
43ff13b4 1257 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
c5aa993b 1258 arg2 =
43ff13b4 1259 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
0d06e24b
JM
1260 arg3 =
1261 (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg));
43ff13b4 1262 arg1->next = arg2;
0d06e24b
JM
1263 arg2->next = arg3;
1264 arg3->next = NULL;
57e687d9
MS
1265 arg1->data.pointer = breakpoint;
1266 arg2->data.pointer = function;
1267 arg3->data.pointer = old_chain;
43ff13b4
JM
1268 add_continuation (finish_command_continuation, arg1);
1269 }
1270
c5aa993b 1271 proceed_to_finish = 1; /* We want stop_registers, please... */
2acceee2 1272 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
c906108c 1273
43ff13b4
JM
1274 /* Do this only if not running asynchronously or if the target
1275 cannot do async execution. Otherwise, complete this command when
c5aa993b 1276 the target actually stops, in fetch_inferior_event. */
6426a772 1277 if (!event_loop_p || !target_can_async_p ())
c5aa993b
JM
1278 {
1279
1280 /* Did we stop at our breakpoint? */
1281 if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL
1282 && function != 0)
1283 {
1284 struct type *value_type;
c5aa993b
JM
1285 CORE_ADDR funcaddr;
1286 int struct_return;
1287
1288 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1289 if (!value_type)
8e65ff28
AC
1290 internal_error (__FILE__, __LINE__,
1291 "finish_command: function has no target type");
c5aa993b
JM
1292
1293 /* FIXME: Shouldn't we do the cleanups before returning? */
1294 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
1295 return;
1296
1297 funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
1298
1299 struct_return =
48436ce6 1300 using_struct_return (check_typedef (value_type),
c5aa993b
JM
1301 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)));
1302
11cf8741 1303 print_return_value (struct_return, value_type);
c5aa993b
JM
1304 }
1305 do_cleanups (old_chain);
1306 }
c906108c
SS
1307}
1308\f
c906108c 1309static void
fba45db2 1310program_info (char *args, int from_tty)
c906108c
SS
1311{
1312 bpstat bs = stop_bpstat;
1313 int num = bpstat_num (&bs);
c5aa993b 1314
c906108c
SS
1315 if (!target_has_execution)
1316 {
1317 printf_filtered ("The program being debugged is not being run.\n");
1318 return;
1319 }
1320
1321 target_files_info ();
1322 printf_filtered ("Program stopped at %s.\n",
c5aa993b 1323 local_hex_string ((unsigned long) stop_pc));
c906108c
SS
1324 if (stop_step)
1325 printf_filtered ("It stopped after being stepped.\n");
1326 else if (num != 0)
1327 {
1328 /* There may be several breakpoints in the same place, so this
c5aa993b 1329 isn't as strange as it seems. */
c906108c
SS
1330 while (num != 0)
1331 {
1332 if (num < 0)
1333 {
1334 printf_filtered ("It stopped at a breakpoint that has ");
1335 printf_filtered ("since been deleted.\n");
1336 }
1337 else
1338 printf_filtered ("It stopped at breakpoint %d.\n", num);
1339 num = bpstat_num (&bs);
1340 }
1341 }
1342 else if (stop_signal != TARGET_SIGNAL_0)
1343 {
1344 printf_filtered ("It stopped with signal %s, %s.\n",
1345 target_signal_to_name (stop_signal),
1346 target_signal_to_string (stop_signal));
1347 }
1348
1349 if (!from_tty)
1350 {
1351 printf_filtered ("Type \"info stack\" or \"info registers\" ");
1352 printf_filtered ("for more information.\n");
1353 }
1354}
1355\f
1356static void
fba45db2 1357environment_info (char *var, int from_tty)
c906108c
SS
1358{
1359 if (var)
1360 {
aa1ee363 1361 char *val = get_in_environ (inferior_environ, var);
c906108c
SS
1362 if (val)
1363 {
1364 puts_filtered (var);
1365 puts_filtered (" = ");
1366 puts_filtered (val);
1367 puts_filtered ("\n");
1368 }
1369 else
1370 {
1371 puts_filtered ("Environment variable \"");
1372 puts_filtered (var);
1373 puts_filtered ("\" not defined.\n");
1374 }
1375 }
1376 else
1377 {
aa1ee363 1378 char **vector = environ_vector (inferior_environ);
c906108c
SS
1379 while (*vector)
1380 {
1381 puts_filtered (*vector++);
1382 puts_filtered ("\n");
1383 }
1384 }
1385}
1386
1387static void
fba45db2 1388set_environment_command (char *arg, int from_tty)
c906108c 1389{
52f0bd74 1390 char *p, *val, *var;
c906108c
SS
1391 int nullset = 0;
1392
1393 if (arg == 0)
1394 error_no_arg ("environment variable and value");
1395
1396 /* Find seperation between variable name and value */
1397 p = (char *) strchr (arg, '=');
1398 val = (char *) strchr (arg, ' ');
1399
1400 if (p != 0 && val != 0)
1401 {
1402 /* We have both a space and an equals. If the space is before the
c5aa993b
JM
1403 equals, walk forward over the spaces til we see a nonspace
1404 (possibly the equals). */
c906108c
SS
1405 if (p > val)
1406 while (*val == ' ')
1407 val++;
1408
1409 /* Now if the = is after the char following the spaces,
c5aa993b 1410 take the char following the spaces. */
c906108c
SS
1411 if (p > val)
1412 p = val - 1;
1413 }
1414 else if (val != 0 && p == 0)
1415 p = val;
1416
1417 if (p == arg)
1418 error_no_arg ("environment variable to set");
1419
1420 if (p == 0 || p[1] == 0)
1421 {
1422 nullset = 1;
1423 if (p == 0)
1424 p = arg + strlen (arg); /* So that savestring below will work */
1425 }
1426 else
1427 {
1428 /* Not setting variable value to null */
1429 val = p + 1;
1430 while (*val == ' ' || *val == '\t')
1431 val++;
1432 }
1433
c5aa993b
JM
1434 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1435 p--;
c906108c
SS
1436
1437 var = savestring (arg, p - arg);
1438 if (nullset)
1439 {
1440 printf_filtered ("Setting environment variable ");
1441 printf_filtered ("\"%s\" to null value.\n", var);
1442 set_in_environ (inferior_environ, var, "");
1443 }
1444 else
1445 set_in_environ (inferior_environ, var, val);
b8c9b27d 1446 xfree (var);
c906108c
SS
1447}
1448
1449static void
fba45db2 1450unset_environment_command (char *var, int from_tty)
c906108c
SS
1451{
1452 if (var == 0)
1453 {
1454 /* If there is no argument, delete all environment variables.
c5aa993b 1455 Ask for confirmation if reading from the terminal. */
c906108c
SS
1456 if (!from_tty || query ("Delete all environment variables? "))
1457 {
1458 free_environ (inferior_environ);
1459 inferior_environ = make_environ ();
1460 }
1461 }
1462 else
1463 unset_in_environ (inferior_environ, var);
1464}
1465
1466/* Handle the execution path (PATH variable) */
1467
1468static const char path_var_name[] = "PATH";
1469
c906108c 1470static void
fba45db2 1471path_info (char *args, int from_tty)
c906108c
SS
1472{
1473 puts_filtered ("Executable and object file path: ");
1474 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1475 puts_filtered ("\n");
1476}
1477
1478/* Add zero or more directories to the front of the execution path. */
1479
1480static void
fba45db2 1481path_command (char *dirname, int from_tty)
c906108c
SS
1482{
1483 char *exec_path;
1484 char *env;
1485 dont_repeat ();
1486 env = get_in_environ (inferior_environ, path_var_name);
1487 /* Can be null if path is not set */
1488 if (!env)
1489 env = "";
4fcf66da 1490 exec_path = xstrdup (env);
c906108c
SS
1491 mod_path (dirname, &exec_path);
1492 set_in_environ (inferior_environ, path_var_name, exec_path);
b8c9b27d 1493 xfree (exec_path);
c906108c 1494 if (from_tty)
c5aa993b 1495 path_info ((char *) NULL, from_tty);
c906108c 1496}
c906108c 1497\f
c5aa993b 1498
4782dc19 1499/* Print out the machine register regnum. If regnum is -1, print all
0ab7a791
AC
1500 registers (print_all == 1) or all non-float and non-vector
1501 registers (print_all == 0).
c906108c
SS
1502
1503 For most machines, having all_registers_info() print the
0ab7a791
AC
1504 register(s) one per line is good enough. If a different format is
1505 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1506 regs), or there is an existing convention for showing all the
1507 registers, define the architecture method PRINT_REGISTERS_INFO to
1508 provide that format. */
c906108c 1509
666e11c5 1510void
0ab7a791
AC
1511default_print_registers_info (struct gdbarch *gdbarch,
1512 struct ui_file *file,
1513 struct frame_info *frame,
1514 int regnum, int print_all)
c906108c 1515{
0ab7a791
AC
1516 int i;
1517 const int numregs = NUM_REGS + NUM_PSEUDO_REGS;
0c92afe8
AC
1518 char raw_buffer[MAX_REGISTER_SIZE];
1519 char virtual_buffer[MAX_REGISTER_SIZE];
0ab7a791 1520
903ad3a6 1521 if (DEPRECATED_DO_REGISTERS_INFO_P ())
0ab7a791 1522 {
903ad3a6 1523 DEPRECATED_DO_REGISTERS_INFO (regnum, print_all);
0ab7a791
AC
1524 return;
1525 }
c906108c
SS
1526
1527 for (i = 0; i < numregs; i++)
1528 {
4782dc19
AC
1529 /* Decide between printing all regs, non-float / vector regs, or
1530 specific reg. */
c5aa993b
JM
1531 if (regnum == -1)
1532 {
f9418c0f 1533 if (print_all)
4782dc19 1534 {
f9418c0f 1535 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4782dc19 1536 continue;
f9418c0f
AC
1537 }
1538 else
1539 {
1540 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
4782dc19
AC
1541 continue;
1542 }
c5aa993b
JM
1543 }
1544 else
1545 {
1546 if (i != regnum)
1547 continue;
1548 }
c906108c
SS
1549
1550 /* If the register name is empty, it is undefined for this
c5aa993b 1551 processor, so don't display anything. */
c906108c
SS
1552 if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0')
1553 continue;
1554
0ab7a791
AC
1555 fputs_filtered (REGISTER_NAME (i), file);
1556 print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file);
c906108c
SS
1557
1558 /* Get the data in raw format. */
0ab7a791 1559 if (! frame_register_read (frame, i, raw_buffer))
c906108c 1560 {
0ab7a791 1561 fprintf_filtered (file, "*value not available*\n");
c906108c
SS
1562 continue;
1563 }
1564
0ab7a791
AC
1565 /* FIXME: cagney/2002-08-03: This code shouldn't be necessary.
1566 The function frame_register_read() should have returned the
1567 pre-cooked register so no conversion is necessary. */
c906108c 1568 /* Convert raw data to virtual format if necessary. */
781a750d 1569 if (DEPRECATED_REGISTER_CONVERTIBLE (i))
c906108c 1570 {
781a750d 1571 DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL (i, register_type (current_gdbarch, i),
c906108c
SS
1572 raw_buffer, virtual_buffer);
1573 }
1574 else
392a587b
JM
1575 {
1576 memcpy (virtual_buffer, raw_buffer,
f30992d4 1577 DEPRECATED_REGISTER_VIRTUAL_SIZE (i));
392a587b 1578 }
c906108c 1579
0ab7a791
AC
1580 /* If virtual format is floating, print it that way, and in raw
1581 hex. */
7b83296f 1582 if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT)
c906108c 1583 {
0ab7a791 1584 int j;
c906108c 1585
7b83296f 1586 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
0ab7a791 1587 file, 0, 1, 0, Val_pretty_default);
c906108c 1588
0ab7a791 1589 fprintf_filtered (file, "\t(raw 0x");
12c266ea 1590 for (j = 0; j < DEPRECATED_REGISTER_RAW_SIZE (i); j++)
c906108c 1591 {
0ab7a791
AC
1592 int idx;
1593 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
1594 idx = j;
1595 else
12c266ea 1596 idx = DEPRECATED_REGISTER_RAW_SIZE (i) - 1 - j;
0ab7a791 1597 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[idx]);
c906108c 1598 }
0ab7a791 1599 fprintf_filtered (file, ")");
c906108c 1600 }
c906108c
SS
1601 else
1602 {
ab4327e0 1603 /* Print the register in hex. */
7b83296f 1604 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
9d84ac84 1605 file, 'x', 1, 0, Val_pretty_default);
ab4327e0
EZ
1606 /* If not a vector register, print it also according to its
1607 natural format. */
7b83296f 1608 if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0)
ab4327e0 1609 {
9d84ac84 1610 fprintf_filtered (file, "\t");
7b83296f 1611 val_print (register_type (current_gdbarch, i), virtual_buffer, 0, 0,
9d84ac84 1612 file, 0, 1, 0, Val_pretty_default);
ab4327e0 1613 }
c906108c
SS
1614 }
1615
0ab7a791 1616 fprintf_filtered (file, "\n");
c906108c
SS
1617 }
1618}
c906108c 1619
c906108c 1620void
fba45db2 1621registers_info (char *addr_exp, int fpregs)
c906108c
SS
1622{
1623 int regnum, numregs;
52f0bd74 1624 char *end;
c906108c
SS
1625
1626 if (!target_has_registers)
1627 error ("The program has no registers now.");
6e7f8b9c 1628 if (deprecated_selected_frame == NULL)
c906108c
SS
1629 error ("No selected frame.");
1630
1631 if (!addr_exp)
1632 {
0ab7a791 1633 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1634 deprecated_selected_frame, -1, fpregs);
c906108c
SS
1635 return;
1636 }
1637
f9418c0f 1638 while (*addr_exp != '\0')
c5aa993b 1639 {
f9418c0f
AC
1640 char *start;
1641 const char *end;
c906108c 1642
f9418c0f
AC
1643 /* Keep skipping leading white space. */
1644 if (isspace ((*addr_exp)))
1645 {
1646 addr_exp++;
1647 continue;
1648 }
c906108c 1649
f9418c0f
AC
1650 /* Discard any leading ``$''. Check that there is something
1651 resembling a register following it. */
1652 if (addr_exp[0] == '$')
1653 addr_exp++;
1654 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1655 error ("Missing register name");
c906108c 1656
f9418c0f
AC
1657 /* Find the start/end of this register name/num/group. */
1658 start = addr_exp;
1659 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1660 addr_exp++;
1661 end = addr_exp;
1662
1663 /* Figure out what we've found and display it. */
1664
1665 /* A register name? */
1666 {
eb8bc282
AC
1667 int regnum = frame_map_name_to_regnum (deprecated_selected_frame,
1668 start, end - start);
f9418c0f
AC
1669 if (regnum >= 0)
1670 {
1671 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1672 deprecated_selected_frame, regnum, fpregs);
f9418c0f
AC
1673 continue;
1674 }
1675 }
1676
1677 /* A register number? (how portable is this one?). */
1678 {
1679 char *endptr;
1680 int regnum = strtol (start, &endptr, 0);
1681 if (endptr == end
1682 && regnum >= 0
1683 && regnum < NUM_REGS + NUM_PSEUDO_REGS)
1684 {
1685 gdbarch_print_registers_info (current_gdbarch, gdb_stdout,
6e7f8b9c 1686 deprecated_selected_frame, regnum, fpregs);
f9418c0f
AC
1687 continue;
1688 }
1689 }
1690
1691 /* A register group? */
1692 {
6c7d17ba
AC
1693 struct reggroup *group;
1694 for (group = reggroup_next (current_gdbarch, NULL);
1695 group != NULL;
1696 group = reggroup_next (current_gdbarch, group))
f9418c0f
AC
1697 {
1698 /* Don't bother with a length check. Should the user
1699 enter a short register group name, go with the first
1700 group that matches. */
6c7d17ba 1701 if (strncmp (start, reggroup_name (group), end - start) == 0)
f9418c0f
AC
1702 break;
1703 }
6c7d17ba 1704 if (group != NULL)
f9418c0f
AC
1705 {
1706 int regnum;
1707 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1708 {
1709 if (gdbarch_register_reggroup_p (current_gdbarch, regnum,
6c7d17ba 1710 group))
f9418c0f 1711 gdbarch_print_registers_info (current_gdbarch,
6e7f8b9c 1712 gdb_stdout, deprecated_selected_frame,
f9418c0f
AC
1713 regnum, fpregs);
1714 }
1715 continue;
1716 }
1717 }
c906108c 1718
f9418c0f
AC
1719 /* Nothing matched. */
1720 error ("Invalid register `%.*s'", (int) (end - start), start);
c5aa993b 1721 }
c906108c
SS
1722}
1723
1724void
fba45db2 1725all_registers_info (char *addr_exp, int from_tty)
c906108c
SS
1726{
1727 registers_info (addr_exp, 1);
1728}
1729
a58dd373 1730static void
fba45db2 1731nofp_registers_info (char *addr_exp, int from_tty)
c906108c
SS
1732{
1733 registers_info (addr_exp, 0);
1734}
e76f1f2e
AC
1735
1736static void
1737print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1738 struct frame_info *frame, const char *args)
1739{
e71ecd70
MK
1740 if (!target_has_registers)
1741 error ("The program has no registers now.");
6e7f8b9c 1742 if (deprecated_selected_frame == NULL)
e71ecd70
MK
1743 error ("No selected frame.");
1744
e76f1f2e
AC
1745 if (gdbarch_print_vector_info_p (gdbarch))
1746 gdbarch_print_vector_info (gdbarch, file, frame, args);
1747 else
1748 {
1749 int regnum;
1750 int printed_something = 0;
ab4327e0 1751
e76f1f2e
AC
1752 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1753 {
f9418c0f 1754 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
e76f1f2e
AC
1755 {
1756 printed_something = 1;
e76f1f2e 1757 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
e76f1f2e
AC
1758 }
1759 }
1760 if (!printed_something)
1761 fprintf_filtered (file, "No vector information\n");
1762 }
1763}
1764
1765static void
1766vector_info (char *args, int from_tty)
1767{
6e7f8b9c 1768 print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
e76f1f2e 1769}
c906108c 1770\f
c5aa993b 1771
c906108c
SS
1772/*
1773 * TODO:
1774 * Should save/restore the tty state since it might be that the
1775 * program to be debugged was started on this tty and it wants
1776 * the tty in some state other than what we want. If it's running
1777 * on another terminal or without a terminal, then saving and
1778 * restoring the tty state is a harmless no-op.
1779 * This only needs to be done if we are attaching to a process.
1780 */
1781
1782/*
1783 attach_command --
1784 takes a program started up outside of gdb and ``attaches'' to it.
1785 This stops it cold in its tracks and allows us to start debugging it.
1786 and wait for the trace-trap that results from attaching. */
1787
1788void
fba45db2 1789attach_command (char *args, int from_tty)
c906108c 1790{
c5aa993b
JM
1791 char *exec_file;
1792 char *full_exec_path = NULL;
c906108c 1793
c5aa993b 1794 dont_repeat (); /* Not for the faint of heart */
c906108c
SS
1795
1796 if (target_has_execution)
1797 {
1798 if (query ("A program is being debugged already. Kill it? "))
1799 target_kill ();
1800 else
1801 error ("Not killed.");
1802 }
1803
1804 target_attach (args, from_tty);
1805
1806 /* Set up the "saved terminal modes" of the inferior
1807 based on what modes we are starting it with. */
1808 target_terminal_init ();
1809
1810 /* Install inferior's terminal modes. */
1811 target_terminal_inferior ();
1812
1813 /* Set up execution context to know that we should return from
1814 wait_for_inferior as soon as the target reports a stop. */
1815 init_wait_for_inferior ();
1816 clear_proceed_status ();
c906108c
SS
1817
1818 /* No traps are generated when attaching to inferior under Mach 3
1819 or GNU hurd. */
1820#ifndef ATTACH_NO_WAIT
c54cfec8
EZ
1821 /* Careful here. See comments in inferior.h. Basically some OSes
1822 don't ignore SIGSTOPs on continue requests anymore. We need a
1823 way for handle_inferior_event to reset the stop_signal variable
1824 after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */
c0236d92 1825 stop_soon = STOP_QUIETLY_NO_SIGSTOP;
c906108c 1826 wait_for_inferior ();
c0236d92 1827 stop_soon = NO_STOP_QUIETLY;
c906108c
SS
1828#endif
1829
1830 /*
1831 * If no exec file is yet known, try to determine it from the
1832 * process itself.
1833 */
1834 exec_file = (char *) get_exec_file (0);
c5aa993b
JM
1835 if (!exec_file)
1836 {
39f77062 1837 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
c5aa993b
JM
1838 if (exec_file)
1839 {
1840 /* It's possible we don't have a full path, but rather just a
1841 filename. Some targets, such as HP-UX, don't provide the
1842 full path, sigh.
1843
1844 Attempt to qualify the filename against the source path.
1845 (If that fails, we'll just fall back on the original
1846 filename. Not much more we can do...)
1847 */
1848 if (!source_full_path_of (exec_file, &full_exec_path))
1849 full_exec_path = savestring (exec_file, strlen (exec_file));
1850
1851 exec_file_attach (full_exec_path, from_tty);
1adeb98a 1852 symbol_file_add_main (full_exec_path, from_tty);
c5aa993b 1853 }
c906108c 1854 }
c906108c
SS
1855
1856#ifdef SOLIB_ADD
990f9fe3
FF
1857 /* Add shared library symbols from the newly attached process, if any. */
1858 SOLIB_ADD ((char *) 0, from_tty, &current_target, auto_solib_add);
1859 re_enable_breakpoints_in_shlibs ();
c906108c
SS
1860#endif
1861
1862 /* Take any necessary post-attaching actions for this platform.
c5aa993b 1863 */
39f77062 1864 target_post_attach (PIDGET (inferior_ptid));
c906108c
SS
1865
1866 normal_stop ();
6426a772
JM
1867
1868 if (attach_hook)
1869 attach_hook ();
c906108c
SS
1870}
1871
1872/*
1873 * detach_command --
1874 * takes a program previously attached to and detaches it.
1875 * The program resumes execution and will no longer stop
1876 * on signals, etc. We better not have left any breakpoints
1877 * in the program or it'll die when it hits one. For this
1878 * to work, it may be necessary for the process to have been
1879 * previously attached. It *might* work if the program was
1880 * started via the normal ptrace (PTRACE_TRACEME).
1881 */
1882
1883static void
fba45db2 1884detach_command (char *args, int from_tty)
c906108c 1885{
c5aa993b 1886 dont_repeat (); /* Not for the faint of heart */
c906108c
SS
1887 target_detach (args, from_tty);
1888#if defined(SOLIB_RESTART)
1889 SOLIB_RESTART ();
1890#endif
6426a772
JM
1891 if (detach_hook)
1892 detach_hook ();
c906108c
SS
1893}
1894
6ad8ae5c
DJ
1895/* Disconnect from the current target without resuming it (leaving it
1896 waiting for a debugger).
1897
1898 We'd better not have left any breakpoints in the program or the
1899 next debugger will get confused. Currently only supported for some
1900 remote targets, since the normal attach mechanisms don't work on
1901 stopped processes on some native platforms (e.g. GNU/Linux). */
1902
1903static void
1904disconnect_command (char *args, int from_tty)
1905{
1906 dont_repeat (); /* Not for the faint of heart */
1907 target_disconnect (args, from_tty);
1908#if defined(SOLIB_RESTART)
1909 SOLIB_RESTART ();
1910#endif
1911 if (detach_hook)
1912 detach_hook ();
1913}
1914
43ff13b4
JM
1915/* Stop the execution of the target while running in async mode, in
1916 the backgound. */
8b93c638 1917void
fba45db2 1918interrupt_target_command (char *args, int from_tty)
43ff13b4 1919{
6426a772 1920 if (event_loop_p && target_can_async_p ())
43ff13b4 1921 {
c5aa993b 1922 dont_repeat (); /* Not for the faint of heart */
43ff13b4
JM
1923 target_stop ();
1924 }
1925}
1926
c906108c 1927static void
23e3a7ac
AC
1928print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
1929 struct frame_info *frame, const char *args)
c906108c 1930{
e71ecd70
MK
1931 if (!target_has_registers)
1932 error ("The program has no registers now.");
6e7f8b9c 1933 if (deprecated_selected_frame == NULL)
e71ecd70
MK
1934 error ("No selected frame.");
1935
23e3a7ac
AC
1936 if (gdbarch_print_float_info_p (gdbarch))
1937 gdbarch_print_float_info (gdbarch, file, frame, args);
1938 else
1939 {
23e3a7ac
AC
1940 int regnum;
1941 int printed_something = 0;
ab4327e0 1942
23e3a7ac
AC
1943 for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
1944 {
f9418c0f 1945 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
23e3a7ac
AC
1946 {
1947 printed_something = 1;
23e3a7ac 1948 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
23e3a7ac
AC
1949 }
1950 }
1951 if (!printed_something)
1952 fprintf_filtered (file, "\
1953No floating-point info available for this processor.\n");
23e3a7ac
AC
1954 }
1955}
1956
1957static void
1958float_info (char *args, int from_tty)
1959{
6e7f8b9c 1960 print_float_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args);
c906108c
SS
1961}
1962\f
c906108c 1963static void
fba45db2 1964unset_command (char *args, int from_tty)
c906108c
SS
1965{
1966 printf_filtered ("\"unset\" must be followed by the name of ");
1967 printf_filtered ("an unset subcommand.\n");
1968 help_list (unsetlist, "unset ", -1, gdb_stdout);
1969}
1970
1971void
fba45db2 1972_initialize_infcmd (void)
c906108c
SS
1973{
1974 struct cmd_list_element *c;
c5aa993b 1975
c94fdfd0
EZ
1976 c = add_com ("tty", class_run, tty_command,
1977 "Set terminal for future runs of program being debugged.");
5ba2abeb 1978 set_cmd_completer (c, filename_completer);
c906108c 1979
fa58ee11
EZ
1980 c = add_set_cmd ("args", class_run, var_string_noescape,
1981 (char *) &inferior_args,
1982 "Set argument list to give program being debugged when it is started.\n\
c906108c 1983Follow this command with any number of args, to be passed to the program.",
fa58ee11 1984 &setlist);
5ba2abeb 1985 set_cmd_completer (c, filename_completer);
9f60d481 1986 set_cmd_sfunc (c, notice_args_set);
552c04a7 1987 c = add_show_from_set (c, &showlist);
9f60d481 1988 set_cmd_sfunc (c, notice_args_read);
c906108c
SS
1989
1990 c = add_cmd
1991 ("environment", no_class, environment_info,
1992 "The environment to give the program, or one variable's value.\n\
1993With an argument VAR, prints the value of environment variable VAR to\n\
1994give the program being debugged. With no arguments, prints the entire\n\
1995environment to be given to the program.", &showlist);
5ba2abeb 1996 set_cmd_completer (c, noop_completer);
c906108c
SS
1997
1998 add_prefix_cmd ("unset", no_class, unset_command,
d4654627 1999 "Complement to certain \"set\" commands.",
c906108c 2000 &unsetlist, "unset ", 0, &cmdlist);
c5aa993b 2001
c906108c 2002 c = add_cmd ("environment", class_run, unset_environment_command,
c5aa993b 2003 "Cancel environment variable VAR for the program.\n\
c906108c 2004This does not affect the program until the next \"run\" command.",
c5aa993b 2005 &unsetlist);
5ba2abeb 2006 set_cmd_completer (c, noop_completer);
c906108c
SS
2007
2008 c = add_cmd ("environment", class_run, set_environment_command,
2009 "Set environment variable value to give the program.\n\
2010Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2011VALUES of environment variables are uninterpreted strings.\n\
2012This does not affect the program until the next \"run\" command.",
c5aa993b 2013 &setlist);
5ba2abeb 2014 set_cmd_completer (c, noop_completer);
c5aa993b 2015
fa58ee11
EZ
2016 c = add_com ("path", class_files, path_command,
2017 "Add directory DIR(s) to beginning of search path for object files.\n\
c906108c
SS
2018$cwd in the path means the current working directory.\n\
2019This path is equivalent to the $PATH shell variable. It is a list of\n\
2020directories, separated by colons. These directories are searched to find\n\
2021fully linked executable files and separately compiled object files as needed.");
5ba2abeb 2022 set_cmd_completer (c, filename_completer);
c906108c
SS
2023
2024 c = add_cmd ("paths", no_class, path_info,
c5aa993b 2025 "Current search path for finding object files.\n\
c906108c
SS
2026$cwd in the path means the current working directory.\n\
2027This path is equivalent to the $PATH shell variable. It is a list of\n\
2028directories, separated by colons. These directories are searched to find\n\
2029fully linked executable files and separately compiled object files as needed.",
2030 &showlist);
5ba2abeb 2031 set_cmd_completer (c, noop_completer);
c906108c 2032
c5aa993b
JM
2033 add_com ("attach", class_run, attach_command,
2034 "Attach to a process or file outside of GDB.\n\
c906108c
SS
2035This command attaches to another target, of the same type as your last\n\
2036\"target\" command (\"info files\" will show your target stack).\n\
2037The command may take as argument a process id or a device file.\n\
2038For a process id, you must have permission to send the process a signal,\n\
2039and it must have the same effective uid as the debugger.\n\
2040When using \"attach\" with a process id, the debugger finds the\n\
2041program running in the process, looking first in the current working\n\
2042directory, or (if not found there) using the source file search path\n\
2043(see the \"directory\" command). You can also use the \"file\" command\n\
2044to specify the program, and to load its symbol table.");
2045
2046 add_com ("detach", class_run, detach_command,
2047 "Detach a process or file previously attached.\n\
2048If a process, it is no longer traced, and it continues its execution. If\n\
2049you were debugging a file, the file is closed and gdb no longer accesses it.");
2050
6ad8ae5c
DJ
2051 add_com ("disconnect", class_run, disconnect_command,
2052 "Disconnect from a target.\n\
2053The target will wait for another debugger to connect. Not available for\n\
2054all targets.");
2055
c906108c
SS
2056 add_com ("signal", class_run, signal_command,
2057 "Continue program giving it signal specified by the argument.\n\
2058An argument of \"0\" means continue program without giving it a signal.");
2059
2060 add_com ("stepi", class_run, stepi_command,
2061 "Step one instruction exactly.\n\
2062Argument N means do this N times (or till program stops for another reason).");
2063 add_com_alias ("si", "stepi", class_alias, 0);
2064
2065 add_com ("nexti", class_run, nexti_command,
2066 "Step one instruction, but proceed through subroutine calls.\n\
2067Argument N means do this N times (or till program stops for another reason).");
2068 add_com_alias ("ni", "nexti", class_alias, 0);
2069
2070 add_com ("finish", class_run, finish_command,
2071 "Execute until selected stack frame returns.\n\
2072Upon return, the value returned is printed and put in the value history.");
2073
2074 add_com ("next", class_run, next_command,
2075 "Step program, proceeding through subroutine calls.\n\
2076Like the \"step\" command as long as subroutine calls do not happen;\n\
2077when they do, the call is treated as one instruction.\n\
2078Argument N means do this N times (or till program stops for another reason).");
2079 add_com_alias ("n", "next", class_run, 1);
2080 if (xdb_commands)
c5aa993b 2081 add_com_alias ("S", "next", class_run, 1);
c906108c
SS
2082
2083 add_com ("step", class_run, step_command,
2084 "Step program until it reaches a different source line.\n\
2085Argument N means do this N times (or till program stops for another reason).");
2086 add_com_alias ("s", "step", class_run, 1);
2087
c94fdfd0
EZ
2088 c = add_com ("until", class_run, until_command,
2089 "Execute until the program reaches a source line greater than the current\n\
ae66c1fc 2090or a specified location (same args as break command) within the current frame.");
5ba2abeb 2091 set_cmd_completer (c, location_completer);
c906108c 2092 add_com_alias ("u", "until", class_run, 1);
c5aa993b 2093
ae66c1fc
EZ
2094 c = add_com ("advance", class_run, advance_command,
2095 "Continue the program up to the given location (same form as args for break command).\n\
2096Execution will also stop upon exit from the current stack frame.");
2097 set_cmd_completer (c, location_completer);
2098
c94fdfd0
EZ
2099 c = add_com ("jump", class_run, jump_command,
2100 "Continue program being debugged at specified line or address.\n\
c906108c
SS
2101Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2102for an address to start at.");
5ba2abeb 2103 set_cmd_completer (c, location_completer);
c906108c 2104
b83266a0 2105 if (xdb_commands)
c94fdfd0
EZ
2106 {
2107 c = add_com ("go", class_run, go_command,
2108 "Usage: go <location>\n\
c906108c
SS
2109Continue program being debugged, stopping at specified line or \n\
2110address.\n\
2111Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2112expression for an address to start at.\n\
2113This command is a combination of tbreak and jump.");
5ba2abeb 2114 set_cmd_completer (c, location_completer);
c94fdfd0 2115 }
b83266a0 2116
c906108c 2117 if (xdb_commands)
c5aa993b 2118 add_com_alias ("g", "go", class_run, 1);
c906108c
SS
2119
2120 add_com ("continue", class_run, continue_command,
2121 "Continue program being debugged, after signal or breakpoint.\n\
2122If proceeding from breakpoint, a number N may be used as an argument,\n\
2123which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2124the breakpoint won't break until the Nth time it is reached).");
2125 add_com_alias ("c", "cont", class_run, 1);
2126 add_com_alias ("fg", "cont", class_run, 1);
2127
fa58ee11 2128 c = add_com ("run", class_run, run_command,
c906108c
SS
2129 "Start debugged program. You may specify arguments to give it.\n\
2130Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2131Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2132With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2133To cancel previous arguments and run with no arguments,\n\
2134use \"set args\" without arguments.");
5ba2abeb 2135 set_cmd_completer (c, filename_completer);
c906108c
SS
2136 add_com_alias ("r", "run", class_run, 1);
2137 if (xdb_commands)
2138 add_com ("R", class_run, run_no_args_command,
c5aa993b 2139 "Start debugged program with no arguments.");
c906108c 2140
43ff13b4
JM
2141 add_com ("interrupt", class_run, interrupt_target_command,
2142 "Interrupt the execution of the debugged program.");
2143
c906108c 2144 add_info ("registers", nofp_registers_info,
c5aa993b 2145 "List of integer registers and their contents, for selected stack frame.\n\
c906108c 2146Register name as argument means describe only that register.");
7194c49b 2147 add_info_alias ("r", "registers", 1);
c906108c
SS
2148
2149 if (xdb_commands)
c5aa993b
JM
2150 add_com ("lr", class_info, nofp_registers_info,
2151 "List of integer registers and their contents, for selected stack frame.\n\
c906108c
SS
2152 Register name as argument means describe only that register.");
2153 add_info ("all-registers", all_registers_info,
c5aa993b 2154 "List of all registers and their contents, for selected stack frame.\n\
c906108c
SS
2155Register name as argument means describe only that register.");
2156
2157 add_info ("program", program_info,
2158 "Execution status of the program.");
2159
2160 add_info ("float", float_info,
2161 "Print the status of the floating point unit\n");
2162
e76f1f2e
AC
2163 add_info ("vector", vector_info,
2164 "Print the status of the vector unit\n");
2165
c906108c
SS
2166 inferior_environ = make_environ ();
2167 init_environ (inferior_environ);
2168}