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