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