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