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