Add a new method 'disassemble' to gdb.Architecture class.
[deliverable/binutils-gdb.git] / gdb / infcmd.c
CommitLineData
c906108c 1/* Memory-access and commands for "inferior" process, for GDB.
990a07ab 2
28e7fd62 3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
5af949e3 21#include "arch-utils.h"
c906108c
SS
22#include <signal.h>
23#include "gdb_string.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "frame.h"
27#include "inferior.h"
28#include "environ.h"
29#include "value.h"
30#include "gdbcmd.h"
1adeb98a 31#include "symfile.h"
c906108c
SS
32#include "gdbcore.h"
33#include "target.h"
34#include "language.h"
35#include "symfile.h"
36#include "objfiles.h"
c94fdfd0 37#include "completer.h"
8b93c638 38#include "ui-out.h"
6426a772 39#include "event-top.h"
96baa820 40#include "parser-defs.h"
36160dc4 41#include "regcache.h"
f9418c0f 42#include "reggroups.h"
fe898f56 43#include "block.h"
a77053c2 44#include "solib.h"
f9418c0f 45#include <ctype.h>
92ad9cd9 46#include "gdb_assert.h"
281b533b 47#include "observer.h"
424163ea 48#include "target-descriptions.h"
ad842144 49#include "user-regs.h"
32c1e744 50#include "exceptions.h"
700b53b1 51#include "cli/cli-decode.h"
a0ef4274 52#include "gdbthread.h"
79a45b7d 53#include "valprint.h"
edb3359d 54#include "inline-frame.h"
573cda03 55#include "tracepoint.h"
09cee04b 56#include "inf-loop.h"
be34f849 57#include "continuations.h"
f8eba3c6 58#include "linespec.h"
d5551862 59
a58dd373
EZ
60/* Local functions: */
61
62static void nofp_registers_info (char *, int);
63
6a3a010b 64static void print_return_value (struct value *function,
c055b101 65 struct type *value_type);
11cf8741 66
a14ed312 67static void until_next_command (int);
c906108c 68
a14ed312 69static void until_command (char *, int);
c906108c 70
a14ed312 71static void path_info (char *, int);
c906108c 72
a14ed312 73static void path_command (char *, int);
c906108c 74
a14ed312 75static void unset_command (char *, int);
c906108c 76
a14ed312 77static void float_info (char *, int);
c906108c 78
6ad8ae5c
DJ
79static void disconnect_command (char *, int);
80
a14ed312 81static void unset_environment_command (char *, int);
c906108c 82
a14ed312 83static void set_environment_command (char *, int);
c906108c 84
a14ed312 85static void environment_info (char *, int);
c906108c 86
a14ed312 87static void program_info (char *, int);
c906108c 88
a14ed312 89static void finish_command (char *, int);
c906108c 90
a14ed312 91static void signal_command (char *, int);
c906108c 92
a14ed312 93static void jump_command (char *, int);
c906108c 94
a14ed312 95static void step_1 (int, int, char *);
3e43a32a
MS
96static void step_once (int skip_subroutines, int single_inst,
97 int count, int thread);
c906108c 98
a14ed312 99static void next_command (char *, int);
c906108c 100
a14ed312 101static void step_command (char *, int);
c906108c 102
a14ed312 103static void run_command (char *, int);
c906108c 104
a14ed312 105static void run_no_args_command (char *args, int from_tty);
392a587b 106
a14ed312 107static void go_command (char *line_no, int from_tty);
392a587b 108
a14ed312 109static int strip_bg_char (char **);
43ff13b4 110
a14ed312 111void _initialize_infcmd (void);
c906108c 112
c906108c 113#define ERROR_NO_INFERIOR \
8a3fe4f8 114 if (!target_has_execution) error (_("The program is not being run."));
c906108c 115
3e43a32a
MS
116/* Scratch area where string containing arguments to give to the
117 program will be stored by 'set args'. As soon as anything is
118 stored, notice_args_set will move it into per-inferior storage.
1777feb0 119 Arguments are separated by spaces. Empty string (pointer to '\0')
3e43a32a 120 means no args. */
c906108c 121
3f81c18a 122static char *inferior_args_scratch;
c906108c 123
3f81c18a
VP
124/* Scratch area where 'set inferior-tty' will store user-provided value.
125 We'll immediate copy it into per-inferior storage. */
552c04a7 126
3f81c18a 127static char *inferior_io_terminal_scratch;
c906108c
SS
128
129/* Pid of our debugged inferior, or 0 if no inferior now.
130 Since various parts of infrun.c test this to see whether there is a program
131 being debugged it should be nonzero (currently 3 is used) for remote
132 debugging. */
133
39f77062 134ptid_t inferior_ptid;
c906108c 135
c906108c
SS
136/* Address at which inferior stopped. */
137
138CORE_ADDR stop_pc;
139
c906108c
SS
140/* Nonzero if stopped due to completion of a stack dummy routine. */
141
aa7d318d 142enum stop_stack_kind stop_stack_dummy;
c906108c
SS
143
144/* Nonzero if stopped due to a random (unexpected) signal in inferior
145 process. */
146
147int stopped_by_random_signal;
148
c906108c 149\f
1777feb0 150/* Accessor routines. */
07091751 151
3f81c18a
VP
152/* Set the io terminal for the current inferior. Ownership of
153 TERMINAL_NAME is not transferred. */
154
3cb3b8df
BR
155void
156set_inferior_io_terminal (const char *terminal_name)
157{
3f81c18a
VP
158 xfree (current_inferior ()->terminal);
159 current_inferior ()->terminal = terminal_name ? xstrdup (terminal_name) : 0;
3cb3b8df
BR
160}
161
162const char *
163get_inferior_io_terminal (void)
164{
3f81c18a
VP
165 return current_inferior ()->terminal;
166}
167
168static void
169set_inferior_tty_command (char *args, int from_tty,
170 struct cmd_list_element *c)
171{
172 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
173 Now route it to current inferior. */
174 set_inferior_io_terminal (inferior_io_terminal_scratch);
175}
176
177static void
178show_inferior_tty_command (struct ui_file *file, int from_tty,
179 struct cmd_list_element *c, const char *value)
180{
181 /* Note that we ignore the passed-in value in favor of computing it
182 directly. */
275f2e57 183 const char *inferior_io_terminal = get_inferior_io_terminal ();
abbb1732 184
275f2e57
DJ
185 if (inferior_io_terminal == NULL)
186 inferior_io_terminal = "";
3f81c18a 187 fprintf_filtered (gdb_stdout,
275f2e57
DJ
188 _("Terminal for future runs of program being debugged "
189 "is \"%s\".\n"), inferior_io_terminal);
3cb3b8df
BR
190}
191
07091751
FN
192char *
193get_inferior_args (void)
194{
3f81c18a 195 if (current_inferior ()->argc != 0)
552c04a7 196 {
3f81c18a 197 char *n;
552c04a7 198
3f81c18a
VP
199 n = construct_inferior_arguments (current_inferior ()->argc,
200 current_inferior ()->argv);
201 set_inferior_args (n);
202 xfree (n);
552c04a7
TT
203 }
204
3f81c18a
VP
205 if (current_inferior ()->args == NULL)
206 current_inferior ()->args = xstrdup ("");
552c04a7 207
3f81c18a 208 return current_inferior ()->args;
07091751
FN
209}
210
3f81c18a
VP
211/* Set the arguments for the current inferior. Ownership of
212 NEWARGS is not transferred. */
213
214void
07091751
FN
215set_inferior_args (char *newargs)
216{
3f81c18a
VP
217 xfree (current_inferior ()->args);
218 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
219 current_inferior ()->argc = 0;
220 current_inferior ()->argv = 0;
07091751 221}
c5aa993b 222
552c04a7
TT
223void
224set_inferior_args_vector (int argc, char **argv)
225{
3f81c18a
VP
226 current_inferior ()->argc = argc;
227 current_inferior ()->argv = argv;
552c04a7
TT
228}
229
230/* Notice when `set args' is run. */
231static void
3f81c18a 232set_args_command (char *args, int from_tty, struct cmd_list_element *c)
552c04a7 233{
3f81c18a
VP
234 /* CLI has assigned the user-provided value to inferior_args_scratch.
235 Now route it to current inferior. */
236 set_inferior_args (inferior_args_scratch);
552c04a7
TT
237}
238
239/* Notice when `show args' is run. */
240static void
3f81c18a
VP
241show_args_command (struct ui_file *file, int from_tty,
242 struct cmd_list_element *c, const char *value)
552c04a7 243{
258c00cc
TT
244 /* Note that we ignore the passed-in value in favor of computing it
245 directly. */
246 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
552c04a7
TT
247}
248
c2a727fa
TT
249\f
250/* Compute command-line string given argument vector. This does the
251 same shell processing as fork_inferior. */
c2a727fa 252char *
bd57a748 253construct_inferior_arguments (int argc, char **argv)
c2a727fa
TT
254{
255 char *result;
256
257 if (STARTUP_WITH_SHELL)
258 {
5d60742e
EZ
259#ifdef __MINGW32__
260 /* This holds all the characters considered special to the
261 Windows shells. */
262 char *special = "\"!&*|[]{}<>?`~^=;, \t\n";
263 const char quote = '"';
264#else
c2a727fa
TT
265 /* This holds all the characters considered special to the
266 typical Unix shells. We include `^' because the SunOS
267 /bin/sh treats it as a synonym for `|'. */
5d60742e
EZ
268 char *special = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
269 const char quote = '\'';
270#endif
c2a727fa
TT
271 int i;
272 int length = 0;
273 char *out, *cp;
274
275 /* We over-compute the size. It shouldn't matter. */
276 for (i = 0; i < argc; ++i)
c2226152 277 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
c2a727fa
TT
278
279 result = (char *) xmalloc (length);
280 out = result;
281
282 for (i = 0; i < argc; ++i)
283 {
284 if (i > 0)
285 *out++ = ' ';
286
03c6228e
AS
287 /* Need to handle empty arguments specially. */
288 if (argv[i][0] == '\0')
c2a727fa 289 {
5d60742e
EZ
290 *out++ = quote;
291 *out++ = quote;
03c6228e
AS
292 }
293 else
294 {
5d60742e
EZ
295#ifdef __MINGW32__
296 int quoted = 0;
297
298 if (strpbrk (argv[i], special))
299 {
300 quoted = 1;
301 *out++ = quote;
302 }
303#endif
03c6228e
AS
304 for (cp = argv[i]; *cp; ++cp)
305 {
c2226152
AS
306 if (*cp == '\n')
307 {
308 /* A newline cannot be quoted with a backslash (it
309 just disappears), only by putting it inside
310 quotes. */
5d60742e 311 *out++ = quote;
c2226152 312 *out++ = '\n';
5d60742e 313 *out++ = quote;
c2226152
AS
314 }
315 else
316 {
5d60742e
EZ
317#ifdef __MINGW32__
318 if (*cp == quote)
319#else
c2226152 320 if (strchr (special, *cp) != NULL)
5d60742e 321#endif
c2226152
AS
322 *out++ = '\\';
323 *out++ = *cp;
324 }
03c6228e 325 }
5d60742e
EZ
326#ifdef __MINGW32__
327 if (quoted)
328 *out++ = quote;
329#endif
c2a727fa
TT
330 }
331 }
332 *out = '\0';
333 }
334 else
335 {
336 /* In this case we can't handle arguments that contain spaces,
337 tabs, or newlines -- see breakup_args(). */
338 int i;
339 int length = 0;
340
341 for (i = 0; i < argc; ++i)
342 {
343 char *cp = strchr (argv[i], ' ');
344 if (cp == NULL)
345 cp = strchr (argv[i], '\t');
346 if (cp == NULL)
347 cp = strchr (argv[i], '\n');
348 if (cp != NULL)
3e43a32a
MS
349 error (_("can't handle command-line "
350 "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
1777feb0
MS
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
281b533b
DJ
398/* Common actions to take after creating any sort of inferior, by any
399 means (running, attaching, connecting, et cetera). The target
400 should be stopped. */
401
402void
403post_create_inferior (struct target_ops *target, int from_tty)
404{
ce406537
PA
405 volatile struct gdb_exception ex;
406
b79599ff
DP
407 /* Be sure we own the terminal in case write operations are performed. */
408 target_terminal_ours ();
409
424163ea
DJ
410 /* If the target hasn't taken care of this already, do it now.
411 Targets which need to access registers during to_open,
412 to_create_inferior, or to_attach should do it earlier; but many
413 don't need to. */
414 target_find_description ();
415
ce406537
PA
416 /* Now that we know the register layout, retrieve current PC. But
417 if the PC is unavailable (e.g., we're opening a core file with
418 missing registers info), ignore it. */
419 stop_pc = 0;
420 TRY_CATCH (ex, RETURN_MASK_ERROR)
421 {
422 stop_pc = regcache_read_pc (get_current_regcache ());
423 }
424 if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
425 throw_exception (ex);
f698437e 426
50c71eaf
PA
427 if (exec_bfd)
428 {
2eff07b3
PP
429 const unsigned solib_add_generation
430 = current_program_space->solib_add_generation;
431
9353355f
DJ
432 /* Create the hooks to handle shared library load and unload
433 events. */
434#ifdef SOLIB_CREATE_INFERIOR_HOOK
37706b70 435 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
9353355f 436#else
268a4a75
JK
437 solib_create_inferior_hook (from_tty);
438#endif
268a4a75 439
2eff07b3
PP
440 if (current_program_space->solib_add_generation == solib_add_generation)
441 {
442 /* The platform-specific hook should load initial shared libraries,
443 but didn't. FROM_TTY will be incorrectly 0 but such solib
444 targets should be fixed anyway. Call it only after the solib
445 target has been initialized by solib_create_inferior_hook. */
446
447 if (info_verbose)
448 warning (_("platform-specific solib_create_inferior_hook did "
449 "not load initial shared libraries."));
450
451 /* If the solist is global across processes, there's no need to
452 refetch it here. */
f5656ead 453 if (!gdbarch_has_global_solist (target_gdbarch ()))
2eff07b3 454 {
268a4a75 455#ifdef SOLIB_ADD
2eff07b3 456 SOLIB_ADD (NULL, 0, target, auto_solib_add);
268a4a75 457#else
2eff07b3 458 solib_add (NULL, 0, target, auto_solib_add);
9353355f 459#endif
2eff07b3
PP
460 }
461 }
9353355f
DJ
462 }
463
ea5d7a99
PM
464 /* If the user sets watchpoints before execution having started,
465 then she gets software watchpoints, because GDB can't know which
466 target will end up being pushed, or if it supports hardware
467 watchpoints or not. breakpoint_re_set takes care of promoting
468 watchpoints to hardware watchpoints if possible, however, if this
469 new inferior doesn't load shared libraries or we don't pull in
470 symbols from any other source on this target/arch,
471 breakpoint_re_set is never called. Call it now so that software
472 watchpoints get a chance to be promoted to hardware watchpoints
473 if the now pushed target supports hardware watchpoints. */
474 breakpoint_re_set ();
475
281b533b
DJ
476 observer_notify_inferior_created (target, from_tty);
477}
478
a4d5f2e0
JB
479/* Kill the inferior if already running. This function is designed
480 to be called when we are about to start the execution of the program
481 from the beginning. Ask the user to confirm that he wants to restart
482 the program being debugged when FROM_TTY is non-null. */
c906108c 483
8edfe269 484static void
a4d5f2e0
JB
485kill_if_already_running (int from_tty)
486{
39f77062 487 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
c906108c 488 {
8edfe269
DJ
489 /* Bail out before killing the program if we will not be able to
490 restart it. */
491 target_require_runnable ();
492
adf40b2e 493 if (from_tty
9e2f0ad4
HZ
494 && !query (_("The program being debugged has been started already.\n\
495Start it from the beginning? ")))
8a3fe4f8 496 error (_("Program not restarted."));
c906108c 497 target_kill ();
c906108c 498 }
a4d5f2e0
JB
499}
500
1777feb0 501/* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
f67a969f
JB
502 a temporary breakpoint at the begining of the main program before
503 running the program. */
504
a4d5f2e0 505static void
f67a969f 506run_command_1 (char *args, int from_tty, int tbreak_at_main)
a4d5f2e0
JB
507{
508 char *exec_file;
29f49a6a
PA
509 struct cleanup *old_chain;
510 ptid_t ptid;
79a45e25 511 struct ui_out *uiout = current_uiout;
c906108c 512
a4d5f2e0
JB
513 dont_repeat ();
514
515 kill_if_already_running (from_tty);
3c35e65b
UW
516
517 init_wait_for_inferior ();
c906108c
SS
518 clear_breakpoint_hit_counts ();
519
fd79ecee
DJ
520 /* Clean up any leftovers from other runs. Some other things from
521 this function should probably be moved into target_pre_inferior. */
522 target_pre_inferior (from_tty);
523
39ad761d
JB
524 /* The comment here used to read, "The exec file is re-read every
525 time we do a generic_mourn_inferior, so we just have to worry
526 about the symbol file." The `generic_mourn_inferior' function
527 gets called whenever the program exits. However, suppose the
528 program exits, and *then* the executable file changes? We need
529 to check again here. Since reopen_exec_file doesn't do anything
530 if the timestamp hasn't changed, I don't see the harm. */
531 reopen_exec_file ();
c906108c
SS
532 reread_symbols ();
533
f67a969f
JB
534 /* Insert the temporary breakpoint if a location was specified. */
535 if (tbreak_at_main)
536 tbreak_command (main_name (), 0);
537
39ad761d
JB
538 exec_file = (char *) get_exec_file (0);
539
9908b566
VP
540 if (non_stop && !target_supports_non_stop ())
541 error (_("The target does not support running in non-stop mode."));
542
c906108c
SS
543 /* We keep symbols from add-symbol-file, on the grounds that the
544 user might want to add some symbols before running the program
545 (right?). But sometimes (dynamic loading where the user manually
546 introduces the new symbols with add-symbol-file), the code which
547 the symbols describe does not persist between runs. Currently
548 the user has to manually nuke all symbols between runs if they
549 want them to go away (PR 2207). This is probably reasonable. */
550
43ff13b4 551 if (!args)
6426a772 552 {
362646f5 553 if (target_can_async_p ())
6426a772
JM
554 async_disable_stdin ();
555 }
43ff13b4 556 else
c906108c 557 {
43ff13b4
JM
558 int async_exec = strip_bg_char (&args);
559
560 /* If we get a request for running in the bg but the target
1777feb0 561 doesn't support it, error out. */
362646f5 562 if (async_exec && !target_can_async_p ())
8a3fe4f8 563 error (_("Asynchronous execution not supported on this target."));
43ff13b4
JM
564
565 /* If we don't get a request of running in the bg, then we need
1777feb0 566 to simulate synchronous (fg) execution. */
362646f5 567 if (!async_exec && target_can_async_p ())
43ff13b4 568 {
1777feb0 569 /* Simulate synchronous execution. */
6426a772 570 async_disable_stdin ();
43ff13b4
JM
571 }
572
1777feb0 573 /* If there were other args, beside '&', process them. */
43ff13b4 574 if (args)
3f81c18a 575 set_inferior_args (args);
c906108c
SS
576 }
577
578 if (from_tty)
579 {
8b93c638
JM
580 ui_out_field_string (uiout, NULL, "Starting program");
581 ui_out_text (uiout, ": ");
582 if (exec_file)
583 ui_out_field_string (uiout, "execfile", exec_file);
584 ui_out_spaces (uiout, 1);
552c04a7
TT
585 /* We call get_inferior_args() because we might need to compute
586 the value now. */
587 ui_out_field_string (uiout, "infargs", get_inferior_args ());
8b93c638
JM
588 ui_out_text (uiout, "\n");
589 ui_out_flush (uiout);
c906108c
SS
590 }
591
552c04a7
TT
592 /* We call get_inferior_args() because we might need to compute
593 the value now. */
594 target_create_inferior (exec_file, get_inferior_args (),
3e43a32a
MS
595 environ_vector (current_inferior ()->environment),
596 from_tty);
281b533b 597
29f49a6a
PA
598 /* We're starting off a new process. When we get out of here, in
599 non-stop mode, finish the state of all threads of that process,
600 but leave other threads alone, as they may be stopped in internal
601 events --- the frontend shouldn't see them as stopped. In
602 all-stop, always finish the state of all threads, as we may be
603 resuming more than just the new process. */
604 if (non_stop)
605 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
606 else
607 ptid = minus_one_ptid;
608 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
609
de1b3c3d
PA
610 /* Pass zero for FROM_TTY, because at this point the "run" command
611 has done its thing; now we are setting up the running program. */
612 post_create_inferior (&current_target, 0);
281b533b 613
74d1f91e
JK
614 /* Start the target running. Do not use -1 continuation as it would skip
615 breakpoint right at the entry point. */
a493e3e2 616 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0, 0);
c906108c 617
29f49a6a
PA
618 /* Since there was no error, there's no need to finish the thread
619 states here. */
620 discard_cleanups (old_chain);
621}
c906108c 622
f67a969f
JB
623static void
624run_command (char *args, int from_tty)
625{
626 run_command_1 (args, from_tty, 0);
627}
628
c906108c 629static void
fba45db2 630run_no_args_command (char *args, int from_tty)
c906108c 631{
3f81c18a 632 set_inferior_args ("");
c906108c 633}
c906108c 634\f
c5aa993b 635
a4d5f2e0
JB
636/* Start the execution of the program up until the beginning of the main
637 program. */
638
639static void
640start_command (char *args, int from_tty)
641{
642 /* Some languages such as Ada need to search inside the program
643 minimal symbols for the location where to put the temporary
644 breakpoint before starting. */
645 if (!have_minimal_symbols ())
8a3fe4f8 646 error (_("No symbol table loaded. Use the \"file\" command."));
a4d5f2e0 647
f67a969f
JB
648 /* Run the program until reaching the main procedure... */
649 run_command_1 (args, from_tty, 1);
a4d5f2e0
JB
650}
651
8cae4b3f
PA
652static int
653proceed_thread_callback (struct thread_info *thread, void *arg)
654{
74531fed
PA
655 /* We go through all threads individually instead of compressing
656 into a single target `resume_all' request, because some threads
657 may be stopped in internal breakpoints/events, or stopped waiting
658 for its turn in the displaced stepping queue (that is, they are
659 running && !executing). The target side has no idea about why
660 the thread is stopped, so a `resume_all' command would resume too
661 much. If/when GDB gains a way to tell the target `hold this
662 thread stopped until I say otherwise', then we can optimize
663 this. */
4f8d22e3 664 if (!is_stopped (thread->ptid))
8cae4b3f
PA
665 return 0;
666
dcf4fbde 667 switch_to_thread (thread->ptid);
8cae4b3f 668 clear_proceed_status ();
a493e3e2 669 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
8cae4b3f
PA
670 return 0;
671}
672
70221824 673static void
d729566a
PA
674ensure_valid_thread (void)
675{
676 if (ptid_equal (inferior_ptid, null_ptid)
677 || is_exited (inferior_ptid))
3e43a32a 678 error (_("Cannot execute this command without a live selected thread."));
d729566a
PA
679}
680
573cda03 681/* If the user is looking at trace frames, any resumption of execution
1777feb0 682 is likely to mix up recorded and live target data. So simply
573cda03
SS
683 disallow those commands. */
684
70221824 685static void
573cda03
SS
686ensure_not_tfind_mode (void)
687{
688 if (get_traceframe_number () >= 0)
3e43a32a 689 error (_("Cannot execute this command while looking at trace frames."));
573cda03
SS
690}
691
3d3fef6b
YQ
692/* Throw an error indicating the current thread is running. */
693
694static void
695error_is_running (void)
696{
697 error (_("Cannot execute this command while "
698 "the selected thread is running."));
699}
700
701/* Calls error_is_running if the current thread is running. */
702
703static void
704ensure_not_running (void)
705{
706 if (is_running (inferior_ptid))
707 error_is_running ();
708}
709
77ebaa5a
VP
710void
711continue_1 (int all_threads)
712{
3d488bfc 713 ERROR_NO_INFERIOR;
573cda03 714 ensure_not_tfind_mode ();
3d488bfc 715
77ebaa5a
VP
716 if (non_stop && all_threads)
717 {
718 /* Don't error out if the current thread is running, because
abbb1732 719 there may be other stopped threads. */
77ebaa5a
VP
720 struct cleanup *old_chain;
721
722 /* Backup current thread and selected frame. */
723 old_chain = make_cleanup_restore_current_thread ();
724
725 iterate_over_threads (proceed_thread_callback, NULL);
726
727 /* Restore selected ptid. */
728 do_cleanups (old_chain);
729 }
730 else
731 {
d729566a 732 ensure_valid_thread ();
77ebaa5a
VP
733 ensure_not_running ();
734 clear_proceed_status ();
a493e3e2 735 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
77ebaa5a
VP
736 }
737}
738
8cae4b3f 739/* continue [-a] [proceed-count] [&] */
1dd5fedc 740static void
8cae4b3f 741continue_command (char *args, int from_tty)
c906108c 742{
c5aa993b 743 int async_exec = 0;
8cae4b3f 744 int all_threads = 0;
c906108c
SS
745 ERROR_NO_INFERIOR;
746
1777feb0 747 /* Find out whether we must run in the background. */
8cae4b3f
PA
748 if (args != NULL)
749 async_exec = strip_bg_char (&args);
43ff13b4
JM
750
751 /* If we must run in the background, but the target can't do it,
1777feb0 752 error out. */
362646f5 753 if (async_exec && !target_can_async_p ())
8a3fe4f8 754 error (_("Asynchronous execution not supported on this target."));
43ff13b4
JM
755
756 /* If we are not asked to run in the bg, then prepare to run in the
1777feb0 757 foreground, synchronously. */
362646f5 758 if (!async_exec && target_can_async_p ())
c5aa993b 759 {
1777feb0 760 /* Simulate synchronous execution. */
6426a772 761 async_disable_stdin ();
43ff13b4 762 }
c906108c 763
8cae4b3f
PA
764 if (args != NULL)
765 {
766 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
767 {
768 all_threads = 1;
769 args += sizeof ("-a") - 1;
770 if (*args == '\0')
771 args = NULL;
772 }
773 }
774
775 if (!non_stop && all_threads)
776 error (_("`-a' is meaningless in all-stop mode."));
777
778 if (args != NULL && all_threads)
3e43a32a
MS
779 error (_("Can't resume all threads and specify "
780 "proceed count simultaneously."));
8cae4b3f
PA
781
782 /* If we have an argument left, set proceed count of breakpoint we
783 stopped at. */
784 if (args != NULL)
c906108c 785 {
347bddb7 786 bpstat bs = NULL;
8671a17b
PA
787 int num, stat;
788 int stopped = 0;
347bddb7
PA
789 struct thread_info *tp;
790
791 if (non_stop)
e09875d4 792 tp = find_thread_ptid (inferior_ptid);
347bddb7
PA
793 else
794 {
795 ptid_t last_ptid;
796 struct target_waitstatus ws;
797
798 get_last_target_status (&last_ptid, &ws);
e09875d4 799 tp = find_thread_ptid (last_ptid);
347bddb7
PA
800 }
801 if (tp != NULL)
16c381f0 802 bs = tp->control.stop_bpstat;
8671a17b
PA
803
804 while ((stat = bpstat_num (&bs, &num)) != 0)
805 if (stat > 0)
806 {
807 set_ignore_count (num,
8cae4b3f 808 parse_and_eval_long (args) - 1,
8671a17b
PA
809 from_tty);
810 /* set_ignore_count prints a message ending with a period.
811 So print two spaces before "Continuing.". */
812 if (from_tty)
813 printf_filtered (" ");
814 stopped = 1;
815 }
816
817 if (!stopped && from_tty)
c906108c
SS
818 {
819 printf_filtered
820 ("Not stopped at any breakpoint; argument ignored.\n");
821 }
c906108c
SS
822 }
823
824 if (from_tty)
a3f17187 825 printf_filtered (_("Continuing.\n"));
c906108c 826
77ebaa5a 827 continue_1 (all_threads);
c906108c
SS
828}
829\f
edb3359d
DJ
830/* Record the starting point of a "step" or "next" command. */
831
832static void
833set_step_frame (void)
834{
835 struct symtab_and_line sal;
836
837 find_frame_sal (get_current_frame (), &sal);
838 set_step_info (get_current_frame (), sal);
839}
840
c906108c
SS
841/* Step until outside of current statement. */
842
c906108c 843static void
fba45db2 844step_command (char *count_string, int from_tty)
c906108c
SS
845{
846 step_1 (0, 0, count_string);
847}
848
849/* Likewise, but skip over subroutine calls as if single instructions. */
850
c906108c 851static void
fba45db2 852next_command (char *count_string, int from_tty)
c906108c
SS
853{
854 step_1 (1, 0, count_string);
855}
856
857/* Likewise, but step only one instruction. */
858
1dd5fedc 859static void
fba45db2 860stepi_command (char *count_string, int from_tty)
c906108c
SS
861{
862 step_1 (0, 1, count_string);
863}
864
1dd5fedc 865static void
fba45db2 866nexti_command (char *count_string, int from_tty)
c906108c
SS
867{
868 step_1 (1, 1, count_string);
869}
870
186c406b 871void
611c83ae 872delete_longjmp_breakpoint_cleanup (void *arg)
74b7792f 873{
611c83ae
PA
874 int thread = * (int *) arg;
875 delete_longjmp_breakpoint (thread);
74b7792f
AC
876}
877
c906108c 878static void
fba45db2 879step_1 (int skip_subroutines, int single_inst, char *count_string)
c906108c 880{
52f0bd74 881 int count = 1;
f107f563 882 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
43ff13b4 883 int async_exec = 0;
b3dc826b 884 int thread = -1;
c5aa993b 885
c906108c 886 ERROR_NO_INFERIOR;
573cda03 887 ensure_not_tfind_mode ();
d729566a 888 ensure_valid_thread ();
94cc34af 889 ensure_not_running ();
43ff13b4
JM
890
891 if (count_string)
892 async_exec = strip_bg_char (&count_string);
c5aa993b 893
43ff13b4 894 /* If we get a request for running in the bg but the target
1777feb0 895 doesn't support it, error out. */
362646f5 896 if (async_exec && !target_can_async_p ())
8a3fe4f8 897 error (_("Asynchronous execution not supported on this target."));
43ff13b4
JM
898
899 /* If we don't get a request of running in the bg, then we need
1777feb0 900 to simulate synchronous (fg) execution. */
362646f5 901 if (!async_exec && target_can_async_p ())
43ff13b4 902 {
1777feb0 903 /* Simulate synchronous execution. */
6426a772 904 async_disable_stdin ();
43ff13b4
JM
905 }
906
bb518678 907 count = count_string ? parse_and_eval_long (count_string) : 1;
c906108c 908
1777feb0 909 if (!single_inst || skip_subroutines) /* Leave si command alone. */
c906108c 910 {
186c406b
TT
911 struct thread_info *tp = inferior_thread ();
912
611c83ae 913 if (in_thread_list (inferior_ptid))
b3dc826b 914 thread = pid_to_thread_id (inferior_ptid);
611c83ae 915
186c406b 916 set_longjmp_breakpoint (tp, get_frame_id (get_current_frame ()));
611c83ae 917
b3dc826b 918 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
c2d11a7d
JM
919 }
920
37d94800 921 /* In synchronous case, all is well; each step_once call will step once. */
362646f5 922 if (!target_can_async_p ())
c2d11a7d
JM
923 {
924 for (; count > 0; count--)
925 {
37d94800 926 step_once (skip_subroutines, single_inst, count, thread);
c2d11a7d 927
751b8ce1
PA
928 if (!target_has_execution)
929 break;
c2d11a7d
JM
930 else
931 {
751b8ce1
PA
932 struct thread_info *tp = inferior_thread ();
933
934 if (!tp->control.stop_step || !tp->step_multi)
935 {
936 /* If we stopped for some reason that is not stepping
937 there are no further steps to make. */
938 tp->step_multi = 0;
939 break;
940 }
c2d11a7d 941 }
c2d11a7d
JM
942 }
943
f107f563 944 do_cleanups (cleanups);
c2d11a7d 945 }
c2d11a7d
JM
946 else
947 {
37d94800
PA
948 /* In the case of an asynchronous target things get complicated;
949 do only one step for now, before returning control to the
950 event loop. Let the continuation figure out how many other
951 steps we need to do, and handle them one at the time, through
952 step_once. */
b3dc826b 953 step_once (skip_subroutines, single_inst, count, thread);
37d94800 954
611c83ae 955 /* We are running, and the continuation is installed. It will
f107f563
VP
956 disable the longjmp breakpoint as appropriate. */
957 discard_cleanups (cleanups);
c906108c 958 }
c2d11a7d 959}
c906108c 960
bfec99b2
PA
961struct step_1_continuation_args
962{
963 int count;
964 int skip_subroutines;
965 int single_inst;
966 int thread;
967};
968
c2d11a7d
JM
969/* Called after we are done with one step operation, to check whether
970 we need to step again, before we print the prompt and return control
1777feb0
MS
971 to the user. If count is > 1, we will need to do one more call to
972 proceed(), via step_once(). Basically it is like step_once and
973 step_1_continuation are co-recursive. */
c2d11a7d 974static void
fa4cd53f 975step_1_continuation (void *args, int err)
c2d11a7d 976{
bfec99b2 977 struct step_1_continuation_args *a = args;
f13468d9 978
af679fd0 979 if (target_has_execution)
f13468d9 980 {
af679fd0
PA
981 struct thread_info *tp;
982
983 tp = inferior_thread ();
fa4cd53f
PA
984 if (!err
985 && tp->step_multi && tp->control.stop_step)
af679fd0
PA
986 {
987 /* There are more steps to make, and we did stop due to
988 ending a stepping range. Do another step. */
37d94800
PA
989 step_once (a->skip_subroutines, a->single_inst,
990 a->count - 1, a->thread);
af679fd0
PA
991 return;
992 }
993 tp->step_multi = 0;
f107f563 994 }
af679fd0 995
fa4cd53f
PA
996 /* We either hit an error, or stopped for some reason that is
997 not stepping, or there are no further steps to make.
998 Cleanup. */
af679fd0
PA
999 if (!a->single_inst || a->skip_subroutines)
1000 delete_longjmp_breakpoint (a->thread);
c2d11a7d
JM
1001}
1002
37d94800
PA
1003/* Do just one step operation. This is useful to implement the 'step
1004 n' kind of commands. In case of asynchronous targets, we will have
1005 to set up a continuation to be done after the target stops (after
1006 this one step). For synch targets, the caller handles further
1007 stepping. */
1008
1009static void
611c83ae 1010step_once (int skip_subroutines, int single_inst, int count, int thread)
bfec99b2 1011{
edb3359d 1012 struct frame_info *frame = get_current_frame ();
c2d11a7d
JM
1013
1014 if (count > 0)
c906108c 1015 {
4e1c45ea
PA
1016 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1017 the longjmp breakpoint was not required. Use the
1018 INFERIOR_PTID thread instead, which is the same thread when
1019 THREAD is set. */
1020 struct thread_info *tp = inferior_thread ();
abbb1732 1021
c906108c 1022 clear_proceed_status ();
edb3359d 1023 set_step_frame ();
c906108c 1024
c5aa993b 1025 if (!single_inst)
c906108c 1026 {
1641cfcc
PA
1027 CORE_ADDR pc;
1028
edb3359d 1029 /* Step at an inlined function behaves like "down". */
3f01d0d0 1030 if (!skip_subroutines
edb3359d
DJ
1031 && inline_skipped_frames (inferior_ptid))
1032 {
09cee04b
PA
1033 ptid_t resume_ptid;
1034
1035 /* Pretend that we've ran. */
1036 resume_ptid = user_visible_resume_ptid (1);
1037 set_running (resume_ptid, 1);
1038
edb3359d
DJ
1039 step_into_inline_frame (inferior_ptid);
1040 if (count > 1)
1041 step_once (skip_subroutines, single_inst, count - 1, thread);
1042 else
09cee04b
PA
1043 {
1044 /* Pretend that we've stopped. */
1045 normal_stop ();
1046
1047 if (target_can_async_p ())
1048 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1049 }
edb3359d
DJ
1050 return;
1051 }
1052
1641cfcc
PA
1053 pc = get_frame_pc (frame);
1054 find_pc_line_pc_range (pc,
16c381f0
JK
1055 &tp->control.step_range_start,
1056 &tp->control.step_range_end);
5fbbeb29
CF
1057
1058 /* If we have no line info, switch to stepi mode. */
16c381f0
JK
1059 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1060 tp->control.step_range_start = tp->control.step_range_end = 1;
1061 else if (tp->control.step_range_end == 0)
c906108c 1062 {
2c02bd72 1063 const char *name;
abbb1732 1064
1641cfcc 1065 if (find_pc_partial_function (pc, &name,
16c381f0
JK
1066 &tp->control.step_range_start,
1067 &tp->control.step_range_end) == 0)
8a3fe4f8 1068 error (_("Cannot find bounds of current function"));
c906108c
SS
1069
1070 target_terminal_ours ();
3e43a32a
MS
1071 printf_filtered (_("Single stepping until exit from function %s,"
1072 "\nwhich has no line number information.\n"),
1073 name);
c906108c
SS
1074 }
1075 }
1076 else
1077 {
1078 /* Say we are stepping, but stop after one insn whatever it does. */
16c381f0 1079 tp->control.step_range_start = tp->control.step_range_end = 1;
c906108c
SS
1080 if (!skip_subroutines)
1081 /* It is stepi.
1082 Don't step over function calls, not even to functions lacking
1083 line numbers. */
16c381f0 1084 tp->control.step_over_calls = STEP_OVER_NONE;
c906108c
SS
1085 }
1086
1087 if (skip_subroutines)
16c381f0 1088 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1089
95e54da7 1090 tp->step_multi = (count > 1);
a493e3e2 1091 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
bfec99b2 1092
37d94800
PA
1093 /* For async targets, register a continuation to do any
1094 additional steps. For sync targets, the caller will handle
1095 further stepping. */
1096 if (target_can_async_p ())
1097 {
1098 struct step_1_continuation_args *args;
1099
1100 args = xmalloc (sizeof (*args));
1101 args->skip_subroutines = skip_subroutines;
1102 args->single_inst = single_inst;
1103 args->count = count;
1104 args->thread = thread;
1105
1106 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
1107 }
c906108c 1108 }
c906108c 1109}
c2d11a7d 1110
c906108c
SS
1111\f
1112/* Continue program at specified address. */
1113
1114static void
fba45db2 1115jump_command (char *arg, int from_tty)
c906108c 1116{
5af949e3 1117 struct gdbarch *gdbarch = get_current_arch ();
52f0bd74 1118 CORE_ADDR addr;
c906108c
SS
1119 struct symtabs_and_lines sals;
1120 struct symtab_and_line sal;
1121 struct symbol *fn;
1122 struct symbol *sfn;
43ff13b4 1123 int async_exec = 0;
c5aa993b 1124
c906108c 1125 ERROR_NO_INFERIOR;
573cda03 1126 ensure_not_tfind_mode ();
d729566a 1127 ensure_valid_thread ();
94cc34af 1128 ensure_not_running ();
c906108c 1129
1777feb0 1130 /* Find out whether we must run in the background. */
43ff13b4
JM
1131 if (arg != NULL)
1132 async_exec = strip_bg_char (&arg);
1133
1134 /* If we must run in the background, but the target can't do it,
1777feb0 1135 error out. */
362646f5 1136 if (async_exec && !target_can_async_p ())
8a3fe4f8 1137 error (_("Asynchronous execution not supported on this target."));
43ff13b4 1138
c906108c 1139 if (!arg)
e2e0b3e5 1140 error_no_arg (_("starting address"));
c906108c 1141
39cf75f7 1142 sals = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
c906108c
SS
1143 if (sals.nelts != 1)
1144 {
8a3fe4f8 1145 error (_("Unreasonable jump request"));
c906108c
SS
1146 }
1147
1148 sal = sals.sals[0];
b8c9b27d 1149 xfree (sals.sals);
c906108c
SS
1150
1151 if (sal.symtab == 0 && sal.pc == 0)
8a3fe4f8 1152 error (_("No source file has been specified."));
c906108c 1153
1777feb0 1154 resolve_sal_pc (&sal); /* May error out. */
c906108c 1155
1777feb0 1156 /* See if we are trying to jump to another function. */
c906108c
SS
1157 fn = get_frame_function (get_current_frame ());
1158 sfn = find_pc_function (sal.pc);
1159 if (fn != NULL && sfn != fn)
1160 {
9e2f0ad4 1161 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
de5ad195 1162 SYMBOL_PRINT_NAME (fn)))
c906108c 1163 {
8a3fe4f8 1164 error (_("Not confirmed."));
c906108c
SS
1165 /* NOTREACHED */
1166 }
1167 }
1168
c5aa993b 1169 if (sfn != NULL)
c906108c
SS
1170 {
1171 fixup_symbol_section (sfn, 0);
714835d5
UW
1172 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1173 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
c906108c 1174 {
3e43a32a
MS
1175 if (!query (_("WARNING!!! Destination is in "
1176 "unmapped overlay! Jump anyway? ")))
c906108c 1177 {
8a3fe4f8 1178 error (_("Not confirmed."));
c906108c
SS
1179 /* NOTREACHED */
1180 }
1181 }
1182 }
1183
c906108c
SS
1184 addr = sal.pc;
1185
1186 if (from_tty)
1187 {
a3f17187 1188 printf_filtered (_("Continuing at "));
5af949e3 1189 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
c906108c
SS
1190 printf_filtered (".\n");
1191 }
1192
89113898 1193 /* If we are not asked to run in the bg, then prepare to run in the
1777feb0 1194 foreground, synchronously. */
89113898
PA
1195 if (!async_exec && target_can_async_p ())
1196 {
1777feb0 1197 /* Simulate synchronous execution. */
89113898
PA
1198 async_disable_stdin ();
1199 }
1200
c906108c 1201 clear_proceed_status ();
a493e3e2 1202 proceed (addr, GDB_SIGNAL_0, 0);
c906108c 1203}
c906108c 1204\f
c5aa993b 1205
1777feb0 1206/* Go to line or address in current procedure. */
c906108c 1207static void
fba45db2 1208go_command (char *line_no, int from_tty)
c906108c 1209{
c5aa993b 1210 if (line_no == (char *) NULL || !*line_no)
f42429a6 1211 printf_filtered (_("Usage: go <location>\n"));
c906108c
SS
1212 else
1213 {
b83266a0
SS
1214 tbreak_command (line_no, from_tty);
1215 jump_command (line_no, from_tty);
c906108c
SS
1216 }
1217}
c906108c 1218\f
c5aa993b 1219
c906108c
SS
1220/* Continue program giving it specified signal. */
1221
1222static void
fba45db2 1223signal_command (char *signum_exp, int from_tty)
c906108c 1224{
2ea28649 1225 enum gdb_signal oursig;
32c1e744 1226 int async_exec = 0;
c906108c
SS
1227
1228 dont_repeat (); /* Too dangerous. */
1229 ERROR_NO_INFERIOR;
573cda03 1230 ensure_not_tfind_mode ();
d729566a 1231 ensure_valid_thread ();
94cc34af 1232 ensure_not_running ();
c906108c 1233
32c1e744
VP
1234 /* Find out whether we must run in the background. */
1235 if (signum_exp != NULL)
1236 async_exec = strip_bg_char (&signum_exp);
1237
1238 /* If we must run in the background, but the target can't do it,
1239 error out. */
1240 if (async_exec && !target_can_async_p ())
1241 error (_("Asynchronous execution not supported on this target."));
1242
1243 /* If we are not asked to run in the bg, then prepare to run in the
1244 foreground, synchronously. */
1245 if (!async_exec && target_can_async_p ())
1246 {
1247 /* Simulate synchronous execution. */
1248 async_disable_stdin ();
1249 }
1250
c906108c 1251 if (!signum_exp)
e2e0b3e5 1252 error_no_arg (_("signal number"));
c906108c
SS
1253
1254 /* It would be even slicker to make signal names be valid expressions,
1255 (the type could be "enum $signal" or some such), then the user could
1256 assign them to convenience variables. */
2ea28649 1257 oursig = gdb_signal_from_name (signum_exp);
c906108c 1258
a493e3e2 1259 if (oursig == GDB_SIGNAL_UNKNOWN)
c906108c
SS
1260 {
1261 /* No, try numeric. */
bb518678 1262 int num = parse_and_eval_long (signum_exp);
c906108c
SS
1263
1264 if (num == 0)
a493e3e2 1265 oursig = GDB_SIGNAL_0;
c906108c 1266 else
2ea28649 1267 oursig = gdb_signal_from_command (num);
c906108c
SS
1268 }
1269
1270 if (from_tty)
1271 {
a493e3e2 1272 if (oursig == GDB_SIGNAL_0)
a3f17187 1273 printf_filtered (_("Continuing with no signal.\n"));
c906108c 1274 else
a3f17187 1275 printf_filtered (_("Continuing with signal %s.\n"),
2ea28649 1276 gdb_signal_to_name (oursig));
c906108c
SS
1277 }
1278
1279 clear_proceed_status ();
a12cc160 1280 proceed ((CORE_ADDR) -1, oursig, 0);
c906108c
SS
1281}
1282
fa4cd53f
PA
1283/* Continuation args to be passed to the "until" command
1284 continuation. */
1285struct until_next_continuation_args
1286{
1287 /* The thread that was current when the command was executed. */
1288 int thread;
1289};
1290
186c406b
TT
1291/* A continuation callback for until_next_command. */
1292
1293static void
fa4cd53f 1294until_next_continuation (void *arg, int err)
186c406b 1295{
fa4cd53f 1296 struct until_next_continuation_args *a = arg;
186c406b 1297
fa4cd53f 1298 delete_longjmp_breakpoint (a->thread);
186c406b
TT
1299}
1300
c906108c
SS
1301/* Proceed until we reach a different source line with pc greater than
1302 our current one or exit the function. We skip calls in both cases.
1303
1304 Note that eventually this command should probably be changed so
1305 that only source lines are printed out when we hit the breakpoint
1306 we set. This may involve changes to wait_for_inferior and the
1307 proceed status code. */
1308
c906108c 1309static void
fba45db2 1310until_next_command (int from_tty)
c906108c
SS
1311{
1312 struct frame_info *frame;
1313 CORE_ADDR pc;
1314 struct symbol *func;
1315 struct symtab_and_line sal;
4e1c45ea 1316 struct thread_info *tp = inferior_thread ();
186c406b
TT
1317 int thread = tp->num;
1318 struct cleanup *old_chain;
c5aa993b 1319
c906108c 1320 clear_proceed_status ();
edb3359d 1321 set_step_frame ();
c906108c
SS
1322
1323 frame = get_current_frame ();
1324
1325 /* Step until either exited from this function or greater
1326 than the current line (if in symbolic section) or pc (if
1777feb0 1327 not). */
c906108c 1328
1c7819ef 1329 pc = get_frame_pc (frame);
c906108c 1330 func = find_pc_function (pc);
c5aa993b 1331
c906108c
SS
1332 if (!func)
1333 {
1334 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
c5aa993b 1335
c906108c 1336 if (msymbol == NULL)
8a3fe4f8 1337 error (_("Execution is not within a known function."));
c5aa993b 1338
16c381f0
JK
1339 tp->control.step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1340 tp->control.step_range_end = pc;
c906108c
SS
1341 }
1342 else
1343 {
1344 sal = find_pc_line (pc, 0);
c5aa993b 1345
16c381f0
JK
1346 tp->control.step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1347 tp->control.step_range_end = sal.end;
c906108c 1348 }
c5aa993b 1349
16c381f0 1350 tp->control.step_over_calls = STEP_OVER_ALL;
c906108c 1351
af679fd0 1352 tp->step_multi = 0; /* Only one call to proceed */
c5aa993b 1353
186c406b
TT
1354 set_longjmp_breakpoint (tp, get_frame_id (frame));
1355 old_chain = make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1356
a493e3e2 1357 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
186c406b
TT
1358
1359 if (target_can_async_p () && is_running (inferior_ptid))
1360 {
fa4cd53f
PA
1361 struct until_next_continuation_args *cont_args;
1362
186c406b 1363 discard_cleanups (old_chain);
fa4cd53f
PA
1364 cont_args = XNEW (struct until_next_continuation_args);
1365 cont_args->thread = inferior_thread ()->num;
1366
1367 add_continuation (tp, until_next_continuation, cont_args, xfree);
186c406b
TT
1368 }
1369 else
1370 do_cleanups (old_chain);
c906108c
SS
1371}
1372
c5aa993b 1373static void
fba45db2 1374until_command (char *arg, int from_tty)
c906108c 1375{
43ff13b4
JM
1376 int async_exec = 0;
1377
4247603b 1378 ERROR_NO_INFERIOR;
573cda03 1379 ensure_not_tfind_mode ();
4247603b
PA
1380 ensure_valid_thread ();
1381 ensure_not_running ();
573cda03 1382
1777feb0 1383 /* Find out whether we must run in the background. */
43ff13b4
JM
1384 if (arg != NULL)
1385 async_exec = strip_bg_char (&arg);
1386
1387 /* If we must run in the background, but the target can't do it,
1777feb0 1388 error out. */
362646f5 1389 if (async_exec && !target_can_async_p ())
8a3fe4f8 1390 error (_("Asynchronous execution not supported on this target."));
43ff13b4
JM
1391
1392 /* If we are not asked to run in the bg, then prepare to run in the
1777feb0 1393 foreground, synchronously. */
362646f5 1394 if (!async_exec && target_can_async_p ())
c5aa993b 1395 {
1777feb0 1396 /* Simulate synchronous execution. */
6426a772 1397 async_disable_stdin ();
43ff13b4
JM
1398 }
1399
c906108c 1400 if (arg)
ae66c1fc 1401 until_break_command (arg, from_tty, 0);
c906108c
SS
1402 else
1403 until_next_command (from_tty);
1404}
ae66c1fc
EZ
1405
1406static void
1407advance_command (char *arg, int from_tty)
1408{
1409 int async_exec = 0;
1410
4247603b 1411 ERROR_NO_INFERIOR;
573cda03 1412 ensure_not_tfind_mode ();
4247603b
PA
1413 ensure_valid_thread ();
1414 ensure_not_running ();
573cda03 1415
ae66c1fc 1416 if (arg == NULL)
e2e0b3e5 1417 error_no_arg (_("a location"));
ae66c1fc
EZ
1418
1419 /* Find out whether we must run in the background. */
1420 if (arg != NULL)
1421 async_exec = strip_bg_char (&arg);
1422
1423 /* If we must run in the background, but the target can't do it,
1424 error out. */
362646f5 1425 if (async_exec && !target_can_async_p ())
8a3fe4f8 1426 error (_("Asynchronous execution not supported on this target."));
ae66c1fc
EZ
1427
1428 /* If we are not asked to run in the bg, then prepare to run in the
1429 foreground, synchronously. */
362646f5 1430 if (!async_exec && target_can_async_p ())
ae66c1fc
EZ
1431 {
1432 /* Simulate synchronous execution. */
1433 async_disable_stdin ();
1434 }
1435
1436 until_break_command (arg, from_tty, 1);
1437}
c906108c 1438\f
cc72b2a2
KP
1439/* Return the value of the result of a function at the end of a 'finish'
1440 command/BP. */
f941662f 1441
cc72b2a2 1442struct value *
6a3a010b 1443get_return_value (struct value *function, struct type *value_type)
11cf8741 1444{
cc72b2a2
KP
1445 struct regcache *stop_regs = stop_registers;
1446 struct gdbarch *gdbarch;
44e5158b 1447 struct value *value;
cc72b2a2
KP
1448 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
1449
1450 /* If stop_registers were not saved, use the current registers. */
1451 if (!stop_regs)
1452 {
1453 stop_regs = regcache_dup (get_current_regcache ());
1454 cleanup = make_cleanup_regcache_xfree (stop_regs);
1455 }
1456
1457 gdbarch = get_regcache_arch (stop_regs);
44e5158b 1458
181fc57c 1459 CHECK_TYPEDEF (value_type);
44e5158b 1460 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
11cf8741 1461
92ad9cd9
AC
1462 /* FIXME: 2003-09-27: When returning from a nested inferior function
1463 call, it's possible (with no help from the architecture vector)
1464 to locate and return/print a "struct return" value. This is just
7a9dd1b2 1465 a more complicated case of what is already being done in the
92ad9cd9
AC
1466 inferior function call code. In fact, when inferior function
1467 calls are made async, this will likely be made the norm. */
31db7b6c 1468
6a3a010b 1469 switch (gdbarch_return_value (gdbarch, function, value_type,
c055b101 1470 NULL, NULL, NULL))
44e5158b 1471 {
750eb019
AC
1472 case RETURN_VALUE_REGISTER_CONVENTION:
1473 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
181fc57c 1474 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
44e5158b 1475 value = allocate_value (value_type);
6a3a010b 1476 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
990a07ab 1477 value_contents_raw (value), NULL);
750eb019
AC
1478 break;
1479 case RETURN_VALUE_STRUCT_CONVENTION:
1480 value = NULL;
1481 break;
1482 default:
e2e0b3e5 1483 internal_error (__FILE__, __LINE__, _("bad switch"));
44e5158b 1484 }
bb472c1e 1485
cc72b2a2
KP
1486 do_cleanups (cleanup);
1487
1488 return value;
1489}
1490
1491/* Print the result of a function at the end of a 'finish' command. */
1492
1493static void
6a3a010b 1494print_return_value (struct value *function, struct type *value_type)
cc72b2a2 1495{
6a3a010b 1496 struct value *value = get_return_value (function, value_type);
cc72b2a2
KP
1497 struct ui_out *uiout = current_uiout;
1498
31db7b6c
MK
1499 if (value)
1500 {
79a45b7d 1501 struct value_print_options opts;
f99d8bf4
PA
1502 struct ui_file *stb;
1503 struct cleanup *old_chain;
79a45b7d 1504
31db7b6c 1505 /* Print it. */
f99d8bf4
PA
1506 stb = mem_fileopen ();
1507 old_chain = make_cleanup_ui_file_delete (stb);
31db7b6c
MK
1508 ui_out_text (uiout, "Value returned is ");
1509 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1510 record_latest_value (value));
1511 ui_out_text (uiout, " = ");
79a45b7d 1512 get_raw_print_options (&opts);
f99d8bf4 1513 value_print (value, stb, &opts);
31db7b6c
MK
1514 ui_out_field_stream (uiout, "return-value", stb);
1515 ui_out_text (uiout, "\n");
1d751abe 1516 do_cleanups (old_chain);
31db7b6c
MK
1517 }
1518 else
1519 {
1520 ui_out_text (uiout, "Value returned has type: ");
1d751abe
PA
1521 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1522 ui_out_text (uiout, ".");
1523 ui_out_text (uiout, " Cannot determine contents\n");
31db7b6c 1524 }
11cf8741
JM
1525}
1526
43ff13b4 1527/* Stuff that needs to be done by the finish command after the target
f941662f
MK
1528 has stopped. In asynchronous mode, we wait for the target to stop
1529 in the call to poll or select in the event loop, so it is
1530 impossible to do all the stuff as part of the finish_command
1531 function itself. The only chance we have to complete this command
1532 is in fetch_inferior_event, which is called by the event loop as
fa4cd53f 1533 soon as it detects that the target has stopped. */
f941662f 1534
bfec99b2 1535struct finish_command_continuation_args
43ff13b4 1536{
fa4cd53f
PA
1537 /* The thread that as current when the command was executed. */
1538 int thread;
43ff13b4 1539 struct breakpoint *breakpoint;
bfec99b2
PA
1540 struct symbol *function;
1541};
c5aa993b 1542
bfec99b2 1543static void
fa4cd53f 1544finish_command_continuation (void *arg, int err)
bfec99b2
PA
1545{
1546 struct finish_command_continuation_args *a = arg;
347bddb7 1547
fa4cd53f 1548 if (!err)
43ff13b4 1549 {
fa4cd53f
PA
1550 struct thread_info *tp = NULL;
1551 bpstat bs = NULL;
bfec99b2 1552
fa4cd53f
PA
1553 if (!ptid_equal (inferior_ptid, null_ptid)
1554 && target_has_execution
1555 && is_stopped (inferior_ptid))
1556 {
1557 tp = inferior_thread ();
1558 bs = tp->control.stop_bpstat;
1559 }
f5871ec0 1560
fa4cd53f
PA
1561 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1562 && a->function != NULL)
40c549d6 1563 {
fa4cd53f
PA
1564 struct type *value_type;
1565
1566 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1567 if (!value_type)
1568 internal_error (__FILE__, __LINE__,
1569 _("finish_command: function has no target type"));
40c549d6 1570
fa4cd53f 1571 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
40c549d6 1572 {
fa4cd53f 1573 volatile struct gdb_exception ex;
6a3a010b 1574 struct value *func;
fa4cd53f 1575
6a3a010b 1576 func = read_var_value (a->function, get_current_frame ());
fa4cd53f
PA
1577 TRY_CATCH (ex, RETURN_MASK_ALL)
1578 {
1579 /* print_return_value can throw an exception in some
1580 circumstances. We need to catch this so that we still
1581 delete the breakpoint. */
6a3a010b 1582 print_return_value (func, value_type);
fa4cd53f
PA
1583 }
1584 if (ex.reason < 0)
1585 exception_print (gdb_stdout, ex);
40c549d6 1586 }
40c549d6 1587 }
fa4cd53f
PA
1588
1589 /* We suppress normal call of normal_stop observer and do it
1590 here so that the *stopped notification includes the return
1591 value. */
1592 if (bs != NULL && tp->control.proceed_to_finish)
1593 observer_notify_normal_stop (bs, 1 /* print frame */);
43ff13b4 1594 }
f941662f 1595
bfec99b2 1596 delete_breakpoint (a->breakpoint);
fa4cd53f 1597 delete_longjmp_breakpoint (a->thread);
43ff13b4
JM
1598}
1599
604ead4a
PA
1600static void
1601finish_command_continuation_free_arg (void *arg)
1602{
604ead4a
PA
1603 xfree (arg);
1604}
1605
b2175913
MS
1606/* finish_backward -- helper function for finish_command. */
1607
1608static void
1609finish_backward (struct symbol *function)
1610{
1611 struct symtab_and_line sal;
1612 struct thread_info *tp = inferior_thread ();
1c7819ef 1613 CORE_ADDR pc;
b2175913 1614 CORE_ADDR func_addr;
b2175913 1615
1c7819ef
PA
1616 pc = get_frame_pc (get_current_frame ());
1617
1618 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
b2175913
MS
1619 internal_error (__FILE__, __LINE__,
1620 _("Finish: couldn't find function."));
1621
1622 sal = find_pc_line (func_addr, 0);
1623
9da8c2a0 1624 tp->control.proceed_to_finish = 1;
b2175913
MS
1625 /* Special case: if we're sitting at the function entry point,
1626 then all we need to do is take a reverse singlestep. We
1627 don't need to set a breakpoint, and indeed it would do us
1628 no good to do so.
1629
1630 Note that this can only happen at frame #0, since there's
1631 no way that a function up the stack can have a return address
1632 that's equal to its entry point. */
1633
1c7819ef 1634 if (sal.pc != pc)
b2175913 1635 {
a6d9a66e
UW
1636 struct frame_info *frame = get_selected_frame (NULL);
1637 struct gdbarch *gdbarch = get_frame_arch (frame);
9da8c2a0
PA
1638 struct symtab_and_line sr_sal;
1639
1640 /* Set a step-resume at the function's entry point. Once that's
1641 hit, we'll do one more step backwards. */
1642 init_sal (&sr_sal);
1643 sr_sal.pc = sal.pc;
1644 sr_sal.pspace = get_frame_program_space (frame);
1645 insert_step_resume_breakpoint_at_sal (gdbarch,
1646 sr_sal, null_frame_id);
a6d9a66e 1647
a493e3e2 1648 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
b2175913
MS
1649 }
1650 else
b2175913 1651 {
9da8c2a0
PA
1652 /* We're almost there -- we just need to back up by one more
1653 single-step. */
16c381f0 1654 tp->control.step_range_start = tp->control.step_range_end = 1;
a493e3e2 1655 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
b2175913 1656 }
b2175913
MS
1657}
1658
1659/* finish_forward -- helper function for finish_command. */
1660
1661static void
1662finish_forward (struct symbol *function, struct frame_info *frame)
1663{
def166f6 1664 struct frame_id frame_id = get_frame_id (frame);
a6d9a66e 1665 struct gdbarch *gdbarch = get_frame_arch (frame);
b2175913
MS
1666 struct symtab_and_line sal;
1667 struct thread_info *tp = inferior_thread ();
1668 struct breakpoint *breakpoint;
1669 struct cleanup *old_chain;
1670 struct finish_command_continuation_args *cargs;
186c406b 1671 int thread = tp->num;
b2175913
MS
1672
1673 sal = find_pc_line (get_frame_pc (frame), 0);
1674 sal.pc = get_frame_pc (frame);
1675
a6d9a66e
UW
1676 breakpoint = set_momentary_breakpoint (gdbarch, sal,
1677 get_stack_frame_id (frame),
b2175913
MS
1678 bp_finish);
1679
c70a6932
JK
1680 /* set_momentary_breakpoint invalidates FRAME. */
1681 frame = NULL;
1682
b2175913
MS
1683 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1684
def166f6 1685 set_longjmp_breakpoint (tp, frame_id);
186c406b
TT
1686 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1687
16c381f0
JK
1688 /* We want stop_registers, please... */
1689 tp->control.proceed_to_finish = 1;
b2175913
MS
1690 cargs = xmalloc (sizeof (*cargs));
1691
fa4cd53f 1692 cargs->thread = thread;
b2175913
MS
1693 cargs->breakpoint = breakpoint;
1694 cargs->function = function;
1695 add_continuation (tp, finish_command_continuation, cargs,
1696 finish_command_continuation_free_arg);
a493e3e2 1697 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
b2175913
MS
1698
1699 discard_cleanups (old_chain);
1700 if (!target_can_async_p ())
fa4cd53f 1701 do_all_continuations (0);
b2175913
MS
1702}
1703
f941662f
MK
1704/* "finish": Set a temporary breakpoint at the place the selected
1705 frame will return to, then continue. */
c906108c
SS
1706
1707static void
fba45db2 1708finish_command (char *arg, int from_tty)
c906108c 1709{
52f0bd74
AC
1710 struct frame_info *frame;
1711 struct symbol *function;
43ff13b4
JM
1712
1713 int async_exec = 0;
1714
4247603b 1715 ERROR_NO_INFERIOR;
573cda03 1716 ensure_not_tfind_mode ();
4247603b
PA
1717 ensure_valid_thread ();
1718 ensure_not_running ();
573cda03 1719
f941662f 1720 /* Find out whether we must run in the background. */
43ff13b4
JM
1721 if (arg != NULL)
1722 async_exec = strip_bg_char (&arg);
1723
1724 /* If we must run in the background, but the target can't do it,
f941662f 1725 error out. */
362646f5 1726 if (async_exec && !target_can_async_p ())
8a3fe4f8 1727 error (_("Asynchronous execution not supported on this target."));
43ff13b4
JM
1728
1729 /* If we are not asked to run in the bg, then prepare to run in the
f941662f 1730 foreground, synchronously. */
362646f5 1731 if (!async_exec && target_can_async_p ())
c5aa993b 1732 {
f941662f 1733 /* Simulate synchronous execution. */
6426a772 1734 async_disable_stdin ();
43ff13b4 1735 }
c906108c
SS
1736
1737 if (arg)
8a3fe4f8 1738 error (_("The \"finish\" command does not take any arguments."));
c906108c 1739
206415a3 1740 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
c906108c 1741 if (frame == 0)
8a3fe4f8 1742 error (_("\"finish\" not meaningful in the outermost frame."));
c906108c
SS
1743
1744 clear_proceed_status ();
1745
edb3359d
DJ
1746 /* Finishing from an inline frame is completely different. We don't
1747 try to show the "return value" - no way to locate it. So we do
1748 not need a completion. */
1749 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1750 == INLINE_FRAME)
1751 {
1752 /* Claim we are stepping in the calling frame. An empty step
1753 range means that we will stop once we aren't in a function
1754 called by that frame. We don't use the magic "1" value for
1755 step_range_end, because then infrun will think this is nexti,
1756 and not step over the rest of this inlined function call. */
1757 struct thread_info *tp = inferior_thread ();
1758 struct symtab_and_line empty_sal;
abbb1732 1759
edb3359d
DJ
1760 init_sal (&empty_sal);
1761 set_step_info (frame, empty_sal);
16c381f0
JK
1762 tp->control.step_range_start = get_frame_pc (frame);
1763 tp->control.step_range_end = tp->control.step_range_start;
1764 tp->control.step_over_calls = STEP_OVER_ALL;
edb3359d
DJ
1765
1766 /* Print info on the selected frame, including level number but not
1767 source. */
1768 if (from_tty)
1769 {
1770 printf_filtered (_("Run till exit from "));
1771 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1772 }
1773
a493e3e2 1774 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
edb3359d
DJ
1775 return;
1776 }
1777
1ab3b62c
JK
1778 /* Ignore TAILCALL_FRAME type frames, they were executed already before
1779 entering THISFRAME. */
1780 while (get_frame_type (frame) == TAILCALL_FRAME)
1781 frame = get_prev_frame (frame);
1782
c906108c
SS
1783 /* Find the function we will return from. */
1784
206415a3 1785 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
c906108c 1786
f941662f
MK
1787 /* Print info on the selected frame, including level number but not
1788 source. */
c906108c
SS
1789 if (from_tty)
1790 {
b2175913
MS
1791 if (execution_direction == EXEC_REVERSE)
1792 printf_filtered (_("Run back to call of "));
1793 else
1794 printf_filtered (_("Run till exit from "));
1795
b04f3ab4 1796 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
c906108c
SS
1797 }
1798
b2175913
MS
1799 if (execution_direction == EXEC_REVERSE)
1800 finish_backward (function);
1801 else
1802 finish_forward (function, frame);
c906108c
SS
1803}
1804\f
f941662f 1805
c906108c 1806static void
fba45db2 1807program_info (char *args, int from_tty)
c906108c 1808{
347bddb7
PA
1809 bpstat bs;
1810 int num, stat;
1811 struct thread_info *tp;
1812 ptid_t ptid;
c5aa993b 1813
c906108c
SS
1814 if (!target_has_execution)
1815 {
a3f17187 1816 printf_filtered (_("The program being debugged is not being run.\n"));
c906108c
SS
1817 return;
1818 }
1819
347bddb7
PA
1820 if (non_stop)
1821 ptid = inferior_ptid;
1822 else
1823 {
1824 struct target_waitstatus ws;
abbb1732 1825
347bddb7
PA
1826 get_last_target_status (&ptid, &ws);
1827 }
1828
1829 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1830 error (_("Invalid selected thread."));
1831 else if (is_running (ptid))
1832 error (_("Selected thread is running."));
1833
e09875d4 1834 tp = find_thread_ptid (ptid);
16c381f0 1835 bs = tp->control.stop_bpstat;
347bddb7
PA
1836 stat = bpstat_num (&bs, &num);
1837
c906108c 1838 target_files_info ();
5af949e3 1839 printf_filtered (_("Program stopped at %s.\n"),
f5656ead 1840 paddress (target_gdbarch (), stop_pc));
16c381f0 1841 if (tp->control.stop_step)
a3f17187 1842 printf_filtered (_("It stopped after being stepped.\n"));
8671a17b 1843 else if (stat != 0)
c906108c
SS
1844 {
1845 /* There may be several breakpoints in the same place, so this
c5aa993b 1846 isn't as strange as it seems. */
8671a17b 1847 while (stat != 0)
c906108c 1848 {
8671a17b 1849 if (stat < 0)
c906108c 1850 {
3e43a32a
MS
1851 printf_filtered (_("It stopped at a breakpoint "
1852 "that has since been deleted.\n"));
c906108c
SS
1853 }
1854 else
a3f17187 1855 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
8671a17b 1856 stat = bpstat_num (&bs, &num);
c906108c
SS
1857 }
1858 }
a493e3e2 1859 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
c906108c 1860 {
a3f17187 1861 printf_filtered (_("It stopped with signal %s, %s.\n"),
2ea28649
PA
1862 gdb_signal_to_name (tp->suspend.stop_signal),
1863 gdb_signal_to_string (tp->suspend.stop_signal));
c906108c
SS
1864 }
1865
1866 if (!from_tty)
1867 {
3e43a32a
MS
1868 printf_filtered (_("Type \"info stack\" or \"info "
1869 "registers\" for more information.\n"));
c906108c
SS
1870 }
1871}
1872\f
1873static void
fba45db2 1874environment_info (char *var, int from_tty)
c906108c
SS
1875{
1876 if (var)
1877 {
3f81c18a 1878 char *val = get_in_environ (current_inferior ()->environment, var);
abbb1732 1879
c906108c
SS
1880 if (val)
1881 {
1882 puts_filtered (var);
1883 puts_filtered (" = ");
1884 puts_filtered (val);
1885 puts_filtered ("\n");
1886 }
1887 else
1888 {
1889 puts_filtered ("Environment variable \"");
1890 puts_filtered (var);
1891 puts_filtered ("\" not defined.\n");
1892 }
1893 }
1894 else
1895 {
3f81c18a 1896 char **vector = environ_vector (current_inferior ()->environment);
abbb1732 1897
c906108c
SS
1898 while (*vector)
1899 {
1900 puts_filtered (*vector++);
1901 puts_filtered ("\n");
1902 }
1903 }
1904}
1905
1906static void
fba45db2 1907set_environment_command (char *arg, int from_tty)
c906108c 1908{
52f0bd74 1909 char *p, *val, *var;
c906108c
SS
1910 int nullset = 0;
1911
1912 if (arg == 0)
e2e0b3e5 1913 error_no_arg (_("environment variable and value"));
c906108c 1914
1777feb0 1915 /* Find seperation between variable name and value. */
c906108c
SS
1916 p = (char *) strchr (arg, '=');
1917 val = (char *) strchr (arg, ' ');
1918
1919 if (p != 0 && val != 0)
1920 {
1921 /* We have both a space and an equals. If the space is before the
c5aa993b 1922 equals, walk forward over the spaces til we see a nonspace
1777feb0 1923 (possibly the equals). */
c906108c
SS
1924 if (p > val)
1925 while (*val == ' ')
1926 val++;
1927
1928 /* Now if the = is after the char following the spaces,
c5aa993b 1929 take the char following the spaces. */
c906108c
SS
1930 if (p > val)
1931 p = val - 1;
1932 }
1933 else if (val != 0 && p == 0)
1934 p = val;
1935
1936 if (p == arg)
e2e0b3e5 1937 error_no_arg (_("environment variable to set"));
c906108c
SS
1938
1939 if (p == 0 || p[1] == 0)
1940 {
1941 nullset = 1;
1942 if (p == 0)
1777feb0 1943 p = arg + strlen (arg); /* So that savestring below will work. */
c906108c
SS
1944 }
1945 else
1946 {
1777feb0 1947 /* Not setting variable value to null. */
c906108c
SS
1948 val = p + 1;
1949 while (*val == ' ' || *val == '\t')
1950 val++;
1951 }
1952
c5aa993b
JM
1953 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1954 p--;
c906108c
SS
1955
1956 var = savestring (arg, p - arg);
1957 if (nullset)
1958 {
3e43a32a
MS
1959 printf_filtered (_("Setting environment variable "
1960 "\"%s\" to null value.\n"),
a3f17187 1961 var);
3f81c18a 1962 set_in_environ (current_inferior ()->environment, var, "");
c906108c
SS
1963 }
1964 else
3f81c18a 1965 set_in_environ (current_inferior ()->environment, var, val);
b8c9b27d 1966 xfree (var);
c906108c
SS
1967}
1968
1969static void
fba45db2 1970unset_environment_command (char *var, int from_tty)
c906108c
SS
1971{
1972 if (var == 0)
1973 {
1974 /* If there is no argument, delete all environment variables.
c5aa993b 1975 Ask for confirmation if reading from the terminal. */
e2e0b3e5 1976 if (!from_tty || query (_("Delete all environment variables? ")))
c906108c 1977 {
3f81c18a
VP
1978 free_environ (current_inferior ()->environment);
1979 current_inferior ()->environment = make_environ ();
c906108c
SS
1980 }
1981 }
1982 else
3f81c18a 1983 unset_in_environ (current_inferior ()->environment, var);
c906108c
SS
1984}
1985
1777feb0 1986/* Handle the execution path (PATH variable). */
c906108c
SS
1987
1988static const char path_var_name[] = "PATH";
1989
c906108c 1990static void
fba45db2 1991path_info (char *args, int from_tty)
c906108c
SS
1992{
1993 puts_filtered ("Executable and object file path: ");
3e43a32a
MS
1994 puts_filtered (get_in_environ (current_inferior ()->environment,
1995 path_var_name));
c906108c
SS
1996 puts_filtered ("\n");
1997}
1998
1999/* Add zero or more directories to the front of the execution path. */
2000
2001static void
fba45db2 2002path_command (char *dirname, int from_tty)
c906108c
SS
2003{
2004 char *exec_path;
2005 char *env;
abbb1732 2006
c906108c 2007 dont_repeat ();
3f81c18a 2008 env = get_in_environ (current_inferior ()->environment, path_var_name);
1777feb0 2009 /* Can be null if path is not set. */
c906108c
SS
2010 if (!env)
2011 env = "";
4fcf66da 2012 exec_path = xstrdup (env);
c906108c 2013 mod_path (dirname, &exec_path);
3f81c18a 2014 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
b8c9b27d 2015 xfree (exec_path);
c906108c 2016 if (from_tty)
c5aa993b 2017 path_info ((char *) NULL, from_tty);
c906108c 2018}
c906108c 2019\f
c5aa993b 2020
1292279a
PA
2021/* Print out the register NAME with value VAL, to FILE, in the default
2022 fashion. */
2023
2024static void
2025default_print_one_register_info (struct ui_file *file,
2026 const char *name,
2027 struct value *val)
2028{
2029 struct type *regtype = value_type (val);
2030
2031 fputs_filtered (name, file);
2032 print_spaces_filtered (15 - strlen (name), file);
2033
2034 if (!value_entirely_available (val))
2035 {
2036 fprintf_filtered (file, "*value not available*\n");
2037 return;
2038 }
2039
2040 /* If virtual format is floating, print it that way, and in raw
2041 hex. */
2042 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2043 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2044 {
2045 int j;
2046 struct value_print_options opts;
2047 const gdb_byte *valaddr = value_contents_for_printing (val);
2048 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2049
2050 get_user_print_options (&opts);
2051 opts.deref_ref = 1;
2052
2053 val_print (regtype,
2054 value_contents_for_printing (val),
2055 value_embedded_offset (val), 0,
2056 file, 0, val, &opts, current_language);
2057
2058 fprintf_filtered (file, "\t(raw 0x");
2059 for (j = 0; j < TYPE_LENGTH (regtype); j++)
2060 {
2061 int idx;
2062
2063 if (byte_order == BFD_ENDIAN_BIG)
2064 idx = j;
2065 else
2066 idx = TYPE_LENGTH (regtype) - 1 - j;
2067 fprintf_filtered (file, "%02x", (unsigned char) valaddr[idx]);
2068 }
2069 fprintf_filtered (file, ")");
2070 }
2071 else
2072 {
2073 struct value_print_options opts;
2074
2075 /* Print the register in hex. */
2076 get_formatted_print_options (&opts, 'x');
2077 opts.deref_ref = 1;
2078 val_print (regtype,
2079 value_contents_for_printing (val),
2080 value_embedded_offset (val), 0,
2081 file, 0, val, &opts, current_language);
2082 /* If not a vector register, print it also according to its
2083 natural format. */
2084 if (TYPE_VECTOR (regtype) == 0)
2085 {
2086 get_user_print_options (&opts);
2087 opts.deref_ref = 1;
2088 fprintf_filtered (file, "\t");
2089 val_print (regtype,
2090 value_contents_for_printing (val),
2091 value_embedded_offset (val), 0,
2092 file, 0, val, &opts, current_language);
2093 }
2094 }
2095
2096 fprintf_filtered (file, "\n");
2097}
2098
1777feb0 2099/* Print out the machine register regnum. If regnum is -1, print all
0ab7a791
AC
2100 registers (print_all == 1) or all non-float and non-vector
2101 registers (print_all == 0).
c906108c
SS
2102
2103 For most machines, having all_registers_info() print the
0ab7a791
AC
2104 register(s) one per line is good enough. If a different format is
2105 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2106 regs), or there is an existing convention for showing all the
2107 registers, define the architecture method PRINT_REGISTERS_INFO to
2108 provide that format. */
c906108c 2109
666e11c5 2110void
0ab7a791
AC
2111default_print_registers_info (struct gdbarch *gdbarch,
2112 struct ui_file *file,
2113 struct frame_info *frame,
2114 int regnum, int print_all)
c906108c 2115{
0ab7a791 2116 int i;
a4bd449d
UW
2117 const int numregs = gdbarch_num_regs (gdbarch)
2118 + gdbarch_num_pseudo_regs (gdbarch);
0ab7a791 2119
c906108c
SS
2120 for (i = 0; i < numregs; i++)
2121 {
29ec5263
PA
2122 struct type *regtype;
2123 struct value *val;
2124
4782dc19
AC
2125 /* Decide between printing all regs, non-float / vector regs, or
2126 specific reg. */
c5aa993b
JM
2127 if (regnum == -1)
2128 {
f9418c0f 2129 if (print_all)
4782dc19 2130 {
f9418c0f 2131 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
4782dc19 2132 continue;
f9418c0f
AC
2133 }
2134 else
2135 {
2136 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
4782dc19
AC
2137 continue;
2138 }
c5aa993b
JM
2139 }
2140 else
2141 {
2142 if (i != regnum)
2143 continue;
2144 }
c906108c
SS
2145
2146 /* If the register name is empty, it is undefined for this
c5aa993b 2147 processor, so don't display anything. */
a4bd449d
UW
2148 if (gdbarch_register_name (gdbarch, i) == NULL
2149 || *(gdbarch_register_name (gdbarch, i)) == '\0')
c906108c
SS
2150 continue;
2151
29ec5263
PA
2152 regtype = register_type (gdbarch, i);
2153 val = allocate_value (regtype);
2154
c906108c 2155 /* Get the data in raw format. */
ca9d61b9 2156 if (! deprecated_frame_register_read (frame, i, value_contents_raw (val)))
1292279a 2157 mark_value_bytes_unavailable (val, 0, TYPE_LENGTH (value_type (val)));
c906108c 2158
1292279a
PA
2159 default_print_one_register_info (file,
2160 gdbarch_register_name (gdbarch, i),
2161 val);
c906108c
SS
2162 }
2163}
c906108c 2164
c906108c 2165void
fba45db2 2166registers_info (char *addr_exp, int fpregs)
c906108c 2167{
206415a3 2168 struct frame_info *frame;
a4bd449d 2169 struct gdbarch *gdbarch;
c906108c
SS
2170
2171 if (!target_has_registers)
8a3fe4f8 2172 error (_("The program has no registers now."));
206415a3 2173 frame = get_selected_frame (NULL);
a4bd449d 2174 gdbarch = get_frame_arch (frame);
c906108c
SS
2175
2176 if (!addr_exp)
2177 {
a4bd449d 2178 gdbarch_print_registers_info (gdbarch, gdb_stdout,
206415a3 2179 frame, -1, fpregs);
c906108c
SS
2180 return;
2181 }
2182
f9418c0f 2183 while (*addr_exp != '\0')
c5aa993b 2184 {
f9418c0f
AC
2185 char *start;
2186 const char *end;
c906108c 2187
f9418c0f
AC
2188 /* Keep skipping leading white space. */
2189 if (isspace ((*addr_exp)))
2190 {
2191 addr_exp++;
2192 continue;
2193 }
c906108c 2194
f9418c0f
AC
2195 /* Discard any leading ``$''. Check that there is something
2196 resembling a register following it. */
2197 if (addr_exp[0] == '$')
2198 addr_exp++;
2199 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
8a3fe4f8 2200 error (_("Missing register name"));
c906108c 2201
f9418c0f
AC
2202 /* Find the start/end of this register name/num/group. */
2203 start = addr_exp;
2204 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2205 addr_exp++;
2206 end = addr_exp;
ad842144 2207
f9418c0f
AC
2208 /* Figure out what we've found and display it. */
2209
2210 /* A register name? */
2211 {
029a67e4 2212 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
abbb1732 2213
f9418c0f
AC
2214 if (regnum >= 0)
2215 {
ad842144
MR
2216 /* User registers lie completely outside of the range of
2217 normal registers. Catch them early so that the target
2218 never sees them. */
2219 if (regnum >= gdbarch_num_regs (gdbarch)
2220 + gdbarch_num_pseudo_regs (gdbarch))
2221 {
1292279a
PA
2222 struct value *regval = value_of_user_reg (regnum, frame);
2223 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2224 regnum);
2225
2226 /* Print in the same fashion
2227 gdbarch_print_registers_info's default
2228 implementation prints. */
2229 default_print_one_register_info (gdb_stdout,
2230 regname,
2231 regval);
ad842144
MR
2232 }
2233 else
2234 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2235 frame, regnum, fpregs);
f9418c0f
AC
2236 continue;
2237 }
2238 }
ad842144 2239
f9418c0f
AC
2240 /* A register group? */
2241 {
6c7d17ba 2242 struct reggroup *group;
abbb1732 2243
a4bd449d 2244 for (group = reggroup_next (gdbarch, NULL);
6c7d17ba 2245 group != NULL;
a4bd449d 2246 group = reggroup_next (gdbarch, group))
f9418c0f
AC
2247 {
2248 /* Don't bother with a length check. Should the user
2249 enter a short register group name, go with the first
2250 group that matches. */
6c7d17ba 2251 if (strncmp (start, reggroup_name (group), end - start) == 0)
f9418c0f
AC
2252 break;
2253 }
6c7d17ba 2254 if (group != NULL)
f9418c0f
AC
2255 {
2256 int regnum;
abbb1732 2257
f57d151a 2258 for (regnum = 0;
a4bd449d
UW
2259 regnum < gdbarch_num_regs (gdbarch)
2260 + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 2261 regnum++)
f9418c0f 2262 {
a4bd449d
UW
2263 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2264 gdbarch_print_registers_info (gdbarch,
206415a3 2265 gdb_stdout, frame,
f9418c0f
AC
2266 regnum, fpregs);
2267 }
2268 continue;
2269 }
2270 }
c906108c 2271
f9418c0f 2272 /* Nothing matched. */
8a3fe4f8 2273 error (_("Invalid register `%.*s'"), (int) (end - start), start);
c5aa993b 2274 }
c906108c
SS
2275}
2276
1dd5fedc 2277static void
fba45db2 2278all_registers_info (char *addr_exp, int from_tty)
c906108c
SS
2279{
2280 registers_info (addr_exp, 1);
2281}
2282
a58dd373 2283static void
fba45db2 2284nofp_registers_info (char *addr_exp, int from_tty)
c906108c
SS
2285{
2286 registers_info (addr_exp, 0);
2287}
e76f1f2e
AC
2288
2289static void
d80b854b 2290print_vector_info (struct ui_file *file,
e76f1f2e
AC
2291 struct frame_info *frame, const char *args)
2292{
d80b854b
UW
2293 struct gdbarch *gdbarch = get_frame_arch (frame);
2294
e76f1f2e
AC
2295 if (gdbarch_print_vector_info_p (gdbarch))
2296 gdbarch_print_vector_info (gdbarch, file, frame, args);
2297 else
2298 {
2299 int regnum;
2300 int printed_something = 0;
ab4327e0 2301
f57d151a 2302 for (regnum = 0;
a4bd449d
UW
2303 regnum < gdbarch_num_regs (gdbarch)
2304 + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 2305 regnum++)
e76f1f2e 2306 {
f9418c0f 2307 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
e76f1f2e
AC
2308 {
2309 printed_something = 1;
e76f1f2e 2310 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
e76f1f2e
AC
2311 }
2312 }
2313 if (!printed_something)
2314 fprintf_filtered (file, "No vector information\n");
2315 }
2316}
2317
2318static void
2319vector_info (char *args, int from_tty)
2320{
206415a3
DJ
2321 if (!target_has_registers)
2322 error (_("The program has no registers now."));
2323
d80b854b 2324 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
e76f1f2e 2325}
c906108c 2326\f
5fd62852
PA
2327/* Kill the inferior process. Make us have no inferior. */
2328
2329static void
2330kill_command (char *arg, int from_tty)
2331{
2332 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2333 It should be a distinct flag that indicates that a target is active, cuz
1777feb0 2334 some targets don't have processes! */
5fd62852
PA
2335
2336 if (ptid_equal (inferior_ptid, null_ptid))
2337 error (_("The program is not being run."));
2338 if (!query (_("Kill the program being debugged? ")))
2339 error (_("Not confirmed."));
2340 target_kill ();
2341
c35b1492
PA
2342 /* If we still have other inferiors to debug, then don't mess with
2343 with their threads. */
2344 if (!have_inferiors ())
5fd62852 2345 {
1777feb0 2346 init_thread_list (); /* Destroy thread info. */
5fd62852
PA
2347
2348 /* Killing off the inferior can leave us with a core file. If
2349 so, print the state we are left in. */
2350 if (target_has_stack)
2351 {
2352 printf_filtered (_("In %s,\n"), target_longname);
2353 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
2354 }
2355 }
2356 bfd_cache_close_all ();
2357}
c5aa993b 2358
74531fed
PA
2359/* Used in `attach&' command. ARG is a point to an integer
2360 representing a process id. Proceed threads of this process iff
2361 they stopped due to debugger request, and when they did, they
a493e3e2 2362 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads
74531fed
PA
2363 that have been explicitly been told to stop. */
2364
2365static int
2366proceed_after_attach_callback (struct thread_info *thread,
2367 void *arg)
2368{
2369 int pid = * (int *) arg;
2370
2371 if (ptid_get_pid (thread->ptid) == pid
2372 && !is_exited (thread->ptid)
2373 && !is_executing (thread->ptid)
2374 && !thread->stop_requested
a493e3e2 2375 && thread->suspend.stop_signal == GDB_SIGNAL_0)
74531fed
PA
2376 {
2377 switch_to_thread (thread->ptid);
2378 clear_proceed_status ();
a493e3e2 2379 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
74531fed
PA
2380 }
2381
2382 return 0;
2383}
2384
2385static void
2386proceed_after_attach (int pid)
2387{
2388 /* Don't error out if the current thread is running, because
2389 there may be other stopped threads. */
2390 struct cleanup *old_chain;
2391
2392 /* Backup current thread and selected frame. */
2393 old_chain = make_cleanup_restore_current_thread ();
2394
2395 iterate_over_threads (proceed_after_attach_callback, &pid);
2396
2397 /* Restore selected ptid. */
2398 do_cleanups (old_chain);
2399}
2400
c906108c
SS
2401/*
2402 * TODO:
2403 * Should save/restore the tty state since it might be that the
2404 * program to be debugged was started on this tty and it wants
2405 * the tty in some state other than what we want. If it's running
2406 * on another terminal or without a terminal, then saving and
2407 * restoring the tty state is a harmless no-op.
2408 * This only needs to be done if we are attaching to a process.
2409 */
2410
1777feb0 2411/* attach_command --
c906108c
SS
2412 takes a program started up outside of gdb and ``attaches'' to it.
2413 This stops it cold in its tracks and allows us to start debugging it.
2414 and wait for the trace-trap that results from attaching. */
2415
9356cf8d
PA
2416static void
2417attach_command_post_wait (char *args, int from_tty, int async_exec)
2418{
2419 char *exec_file;
2420 char *full_exec_path = NULL;
d6b48e9c 2421 struct inferior *inferior;
9356cf8d 2422
d6b48e9c 2423 inferior = current_inferior ();
16c381f0 2424 inferior->control.stop_soon = NO_STOP_QUIETLY;
9356cf8d
PA
2425
2426 /* If no exec file is yet known, try to determine it from the
2427 process itself. */
2428 exec_file = (char *) get_exec_file (0);
2429 if (!exec_file)
2430 {
2431 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2432 if (exec_file)
2433 {
2434 /* It's possible we don't have a full path, but rather just a
2435 filename. Some targets, such as HP-UX, don't provide the
2436 full path, sigh.
2437
2438 Attempt to qualify the filename against the source path.
2439 (If that fails, we'll just fall back on the original
1777feb0
MS
2440 filename. Not much more we can do...) */
2441
9356cf8d 2442 if (!source_full_path_of (exec_file, &full_exec_path))
1b36a34b 2443 full_exec_path = xstrdup (exec_file);
9356cf8d
PA
2444
2445 exec_file_attach (full_exec_path, from_tty);
2446 symbol_file_add_main (full_exec_path, from_tty);
2447 }
2448 }
2449 else
2450 {
2451 reopen_exec_file ();
2452 reread_symbols ();
2453 }
2454
2455 /* Take any necessary post-attaching actions for this platform. */
2456 target_post_attach (PIDGET (inferior_ptid));
2457
2458 post_create_inferior (&current_target, from_tty);
2459
2460 /* Install inferior's terminal modes. */
2461 target_terminal_inferior ();
2462
2463 if (async_exec)
74531fed
PA
2464 {
2465 /* The user requested an `attach&', so be sure to leave threads
2466 that didn't get a signal running. */
2467
2468 /* Immediatelly resume all suspended threads of this inferior,
2469 and this inferior only. This should have no effect on
2470 already running threads. If a thread has been stopped with a
2471 signal, leave it be. */
2472 if (non_stop)
2473 proceed_after_attach (inferior->pid);
2474 else
2475 {
a493e3e2 2476 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
74531fed
PA
2477 {
2478 clear_proceed_status ();
a493e3e2 2479 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
74531fed
PA
2480 }
2481 }
2482 }
9356cf8d
PA
2483 else
2484 {
74531fed
PA
2485 /* The user requested a plain `attach', so be sure to leave
2486 the inferior stopped. */
2487
9356cf8d
PA
2488 if (target_can_async_p ())
2489 async_enable_stdin ();
74531fed
PA
2490
2491 /* At least the current thread is already stopped. */
2492
2493 /* In all-stop, by definition, all threads have to be already
2494 stopped at this point. In non-stop, however, although the
2495 selected thread is stopped, others may still be executing.
2496 Be sure to explicitly stop all threads of the process. This
2497 should have no effect on already stopped threads. */
2498 if (non_stop)
2499 target_stop (pid_to_ptid (inferior->pid));
2500
2501 /* Tell the user/frontend where we're stopped. */
9356cf8d
PA
2502 normal_stop ();
2503 if (deprecated_attach_hook)
2504 deprecated_attach_hook ();
2505 }
2506}
2507
bfec99b2 2508struct attach_command_continuation_args
9356cf8d
PA
2509{
2510 char *args;
2511 int from_tty;
2512 int async_exec;
bfec99b2 2513};
9356cf8d 2514
bfec99b2 2515static void
fa4cd53f 2516attach_command_continuation (void *args, int err)
bfec99b2
PA
2517{
2518 struct attach_command_continuation_args *a = args;
abbb1732 2519
fa4cd53f
PA
2520 if (err)
2521 return;
2522
bfec99b2 2523 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
9356cf8d
PA
2524}
2525
604ead4a
PA
2526static void
2527attach_command_continuation_free_args (void *args)
2528{
2529 struct attach_command_continuation_args *a = args;
abbb1732 2530
604ead4a
PA
2531 xfree (a->args);
2532 xfree (a);
2533}
2534
c906108c 2535void
fba45db2 2536attach_command (char *args, int from_tty)
c906108c 2537{
9356cf8d 2538 int async_exec = 0;
cb0362bb 2539 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
c906108c 2540
c5aa993b 2541 dont_repeat (); /* Not for the faint of heart */
c906108c 2542
f5656ead 2543 if (gdbarch_has_global_solist (target_gdbarch ()))
2567c7d9
PA
2544 /* Don't complain if all processes share the same symbol
2545 space. */
8a305172
PA
2546 ;
2547 else if (target_has_execution)
c906108c 2548 {
9e2f0ad4 2549 if (query (_("A program is being debugged already. Kill it? ")))
c906108c
SS
2550 target_kill ();
2551 else
8a3fe4f8 2552 error (_("Not killed."));
c906108c
SS
2553 }
2554
fd79ecee
DJ
2555 /* Clean up any leftovers from other runs. Some other things from
2556 this function should probably be moved into target_pre_inferior. */
2557 target_pre_inferior (from_tty);
2558
9908b566
VP
2559 if (non_stop && !target_supports_non_stop ())
2560 error (_("Cannot attach to this target in non-stop mode"));
2561
9356cf8d
PA
2562 if (args)
2563 {
2564 async_exec = strip_bg_char (&args);
2565
2566 /* If we get a request for running in the bg but the target
1777feb0 2567 doesn't support it, error out. */
9356cf8d
PA
2568 if (async_exec && !target_can_async_p ())
2569 error (_("Asynchronous execution not supported on this target."));
2570 }
2571
2572 /* If we don't get a request of running in the bg, then we need
2573 to simulate synchronous (fg) execution. */
2574 if (!async_exec && target_can_async_p ())
2575 {
1777feb0 2576 /* Simulate synchronous execution. */
9356cf8d 2577 async_disable_stdin ();
cb0362bb 2578 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
9356cf8d
PA
2579 }
2580
c906108c
SS
2581 target_attach (args, from_tty);
2582
2583 /* Set up the "saved terminal modes" of the inferior
2584 based on what modes we are starting it with. */
2585 target_terminal_init ();
2586
c906108c
SS
2587 /* Set up execution context to know that we should return from
2588 wait_for_inferior as soon as the target reports a stop. */
2589 init_wait_for_inferior ();
2590 clear_proceed_status ();
c906108c 2591
74531fed
PA
2592 if (non_stop)
2593 {
2594 /* If we find that the current thread isn't stopped, explicitly
2595 do so now, because we're going to install breakpoints and
2596 poke at memory. */
2597
2598 if (async_exec)
2599 /* The user requested an `attach&'; stop just one thread. */
2600 target_stop (inferior_ptid);
2601 else
2602 /* The user requested an `attach', so stop all threads of this
2603 inferior. */
2604 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2605 }
2606
dc177b7a
PA
2607 /* Some system don't generate traps when attaching to inferior.
2608 E.g. Mach 3 or GNU hurd. */
2609 if (!target_attach_no_wait)
c5aa993b 2610 {
d6b48e9c
PA
2611 struct inferior *inferior = current_inferior ();
2612
1777feb0 2613 /* Careful here. See comments in inferior.h. Basically some
dc177b7a
PA
2614 OSes don't ignore SIGSTOPs on continue requests anymore. We
2615 need a way for handle_inferior_event to reset the stop_signal
2616 variable after an attach, and this is what
2617 STOP_QUIETLY_NO_SIGSTOP is for. */
16c381f0 2618 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
c5aa993b 2619
dc177b7a
PA
2620 if (target_can_async_p ())
2621 {
2622 /* sync_execution mode. Wait for stop. */
bfec99b2
PA
2623 struct attach_command_continuation_args *a;
2624
2625 a = xmalloc (sizeof (*a));
2626 a->args = xstrdup (args);
2627 a->from_tty = from_tty;
2628 a->async_exec = async_exec;
e0ba6746
PA
2629 add_inferior_continuation (attach_command_continuation, a,
2630 attach_command_continuation_free_args);
cb0362bb 2631 discard_cleanups (back_to);
dc177b7a
PA
2632 return;
2633 }
c906108c 2634
e4c8541f 2635 wait_for_inferior ();
dc177b7a 2636 }
6426a772 2637
9356cf8d 2638 attach_command_post_wait (args, from_tty, async_exec);
cb0362bb 2639 discard_cleanups (back_to);
c906108c
SS
2640}
2641
1941c569
PA
2642/* We had just found out that the target was already attached to an
2643 inferior. PTID points at a thread of this new inferior, that is
2644 the most likely to be stopped right now, but not necessarily so.
2645 The new inferior is assumed to be already added to the inferior
2646 list at this point. If LEAVE_RUNNING, then leave the threads of
2647 this inferior running, except those we've explicitly seen reported
2648 as stopped. */
2649
2650void
2651notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2652{
2653 struct cleanup* old_chain;
2654 int async_exec;
2655
2656 old_chain = make_cleanup (null_cleanup, NULL);
2657
2658 /* If in non-stop, leave threads as running as they were. If
2659 they're stopped for some reason other than us telling it to, the
a493e3e2 2660 target reports a signal != GDB_SIGNAL_0. We don't try to
1941c569
PA
2661 resume threads with such a stop signal. */
2662 async_exec = non_stop;
2663
2664 if (!ptid_equal (inferior_ptid, null_ptid))
2665 make_cleanup_restore_current_thread ();
2666
2667 switch_to_thread (ptid);
2668
2669 /* When we "notice" a new inferior we need to do all the things we
2670 would normally do if we had just attached to it. */
2671
2672 if (is_executing (inferior_ptid))
2673 {
2674 struct inferior *inferior = current_inferior ();
2675
2676 /* We're going to install breakpoints, and poke at memory,
2677 ensure that the inferior is stopped for a moment while we do
2678 that. */
2679 target_stop (inferior_ptid);
2680
16c381f0 2681 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
1941c569
PA
2682
2683 /* Wait for stop before proceeding. */
2684 if (target_can_async_p ())
2685 {
2686 struct attach_command_continuation_args *a;
2687
2688 a = xmalloc (sizeof (*a));
2689 a->args = xstrdup ("");
2690 a->from_tty = from_tty;
2691 a->async_exec = async_exec;
2692 add_inferior_continuation (attach_command_continuation, a,
2693 attach_command_continuation_free_args);
2694
2695 do_cleanups (old_chain);
2696 return;
2697 }
2698 else
e4c8541f 2699 wait_for_inferior ();
1941c569
PA
2700 }
2701
2702 async_exec = leave_running;
2703 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2704
2705 do_cleanups (old_chain);
2706}
2707
c906108c
SS
2708/*
2709 * detach_command --
2710 * takes a program previously attached to and detaches it.
2711 * The program resumes execution and will no longer stop
2712 * on signals, etc. We better not have left any breakpoints
2713 * in the program or it'll die when it hits one. For this
2714 * to work, it may be necessary for the process to have been
2715 * previously attached. It *might* work if the program was
2716 * started via the normal ptrace (PTRACE_TRACEME).
2717 */
2718
6418d433 2719void
fba45db2 2720detach_command (char *args, int from_tty)
c906108c 2721{
1f5d0fc9 2722 dont_repeat (); /* Not for the faint of heart. */
d729566a
PA
2723
2724 if (ptid_equal (inferior_ptid, null_ptid))
2725 error (_("The program is not being run."));
2726
33da3f1c 2727 disconnect_tracing (from_tty);
d5551862 2728
c906108c 2729 target_detach (args, from_tty);
50c71eaf
PA
2730
2731 /* If the solist is global across inferiors, don't clear it when we
2732 detach from a single inferior. */
f5656ead 2733 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf 2734 no_shared_libraries (NULL, from_tty);
8a305172 2735
c35b1492
PA
2736 /* If we still have inferiors to debug, then don't mess with their
2737 threads. */
2738 if (!have_inferiors ())
8a305172
PA
2739 init_thread_list ();
2740
9a4105ab
AC
2741 if (deprecated_detach_hook)
2742 deprecated_detach_hook ();
c906108c
SS
2743}
2744
6ad8ae5c
DJ
2745/* Disconnect from the current target without resuming it (leaving it
2746 waiting for a debugger).
2747
2748 We'd better not have left any breakpoints in the program or the
2749 next debugger will get confused. Currently only supported for some
2750 remote targets, since the normal attach mechanisms don't work on
2751 stopped processes on some native platforms (e.g. GNU/Linux). */
2752
2753static void
2754disconnect_command (char *args, int from_tty)
2755{
1777feb0 2756 dont_repeat (); /* Not for the faint of heart. */
d31647d2 2757 disconnect_tracing (from_tty);
6ad8ae5c 2758 target_disconnect (args, from_tty);
e85a822c 2759 no_shared_libraries (NULL, from_tty);
a0ef4274 2760 init_thread_list ();
9a4105ab
AC
2761 if (deprecated_detach_hook)
2762 deprecated_detach_hook ();
6ad8ae5c
DJ
2763}
2764
77ebaa5a
VP
2765void
2766interrupt_target_1 (int all_threads)
2767{
2768 ptid_t ptid;
abbb1732 2769
77ebaa5a
VP
2770 if (all_threads)
2771 ptid = minus_one_ptid;
2772 else
2773 ptid = inferior_ptid;
2774 target_stop (ptid);
252fbfc8
PA
2775
2776 /* Tag the thread as having been explicitly requested to stop, so
2777 other parts of gdb know not to resume this thread automatically,
2778 if it was stopped due to an internal event. Limit this to
2779 non-stop mode, as when debugging a multi-threaded application in
2780 all-stop mode, we will only get one stop event --- it's undefined
2781 which thread will report the event. */
2782 if (non_stop)
2783 set_stop_requested (ptid, 1);
77ebaa5a
VP
2784}
2785
43ff13b4 2786/* Stop the execution of the target while running in async mode, in
8cae4b3f
PA
2787 the backgound. In all-stop, stop the whole process. In non-stop
2788 mode, stop the current thread only by default, or stop all threads
2789 if the `-a' switch is used. */
2790
2791/* interrupt [-a] */
1dd5fedc 2792static void
fba45db2 2793interrupt_target_command (char *args, int from_tty)
43ff13b4 2794{
362646f5 2795 if (target_can_async_p ())
43ff13b4 2796 {
8cae4b3f
PA
2797 int all_threads = 0;
2798
1777feb0 2799 dont_repeat (); /* Not for the faint of heart. */
94cc34af 2800
8cae4b3f
PA
2801 if (args != NULL
2802 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2803 all_threads = 1;
2804
2805 if (!non_stop && all_threads)
2806 error (_("-a is meaningless in all-stop mode."));
2807
77ebaa5a 2808 interrupt_target_1 (all_threads);
43ff13b4
JM
2809 }
2810}
2811
c906108c 2812static void
d80b854b 2813print_float_info (struct ui_file *file,
23e3a7ac 2814 struct frame_info *frame, const char *args)
c906108c 2815{
d80b854b
UW
2816 struct gdbarch *gdbarch = get_frame_arch (frame);
2817
23e3a7ac
AC
2818 if (gdbarch_print_float_info_p (gdbarch))
2819 gdbarch_print_float_info (gdbarch, file, frame, args);
2820 else
2821 {
23e3a7ac
AC
2822 int regnum;
2823 int printed_something = 0;
ab4327e0 2824
f57d151a 2825 for (regnum = 0;
a4bd449d
UW
2826 regnum < gdbarch_num_regs (gdbarch)
2827 + gdbarch_num_pseudo_regs (gdbarch);
f57d151a 2828 regnum++)
23e3a7ac 2829 {
f9418c0f 2830 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
23e3a7ac
AC
2831 {
2832 printed_something = 1;
23e3a7ac 2833 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
23e3a7ac
AC
2834 }
2835 }
2836 if (!printed_something)
3e43a32a
MS
2837 fprintf_filtered (file, "No floating-point info "
2838 "available for this processor.\n");
23e3a7ac
AC
2839 }
2840}
2841
2842static void
2843float_info (char *args, int from_tty)
2844{
206415a3
DJ
2845 if (!target_has_registers)
2846 error (_("The program has no registers now."));
2847
d80b854b 2848 print_float_info (gdb_stdout, get_selected_frame (NULL), args);
c906108c
SS
2849}
2850\f
c906108c 2851static void
fba45db2 2852unset_command (char *args, int from_tty)
c906108c 2853{
3e43a32a
MS
2854 printf_filtered (_("\"unset\" must be followed by the "
2855 "name of an unset subcommand.\n"));
c906108c
SS
2856 help_list (unsetlist, "unset ", -1, gdb_stdout);
2857}
2858
145b16a9
UW
2859/* Implement `info proc' family of commands. */
2860
2861static void
2862info_proc_cmd_1 (char *args, enum info_proc_what what, int from_tty)
2863{
3030c96e
UW
2864 struct gdbarch *gdbarch = get_current_arch ();
2865
451b7c33
TT
2866 if (!target_info_proc (args, what))
2867 {
2868 if (gdbarch_info_proc_p (gdbarch))
2869 gdbarch_info_proc (gdbarch, args, what);
2870 else
2871 error (_("Not supported on this target."));
2872 }
145b16a9
UW
2873}
2874
2875/* Implement `info proc' when given without any futher parameters. */
2876
2877static void
2878info_proc_cmd (char *args, int from_tty)
2879{
2880 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
2881}
2882
2883/* Implement `info proc mappings'. */
2884
2885static void
2886info_proc_cmd_mappings (char *args, int from_tty)
2887{
2888 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
2889}
2890
2891/* Implement `info proc stat'. */
2892
2893static void
2894info_proc_cmd_stat (char *args, int from_tty)
2895{
2896 info_proc_cmd_1 (args, IP_STAT, from_tty);
2897}
2898
2899/* Implement `info proc status'. */
2900
2901static void
2902info_proc_cmd_status (char *args, int from_tty)
2903{
2904 info_proc_cmd_1 (args, IP_STATUS, from_tty);
2905}
2906
2907/* Implement `info proc cwd'. */
2908
2909static void
2910info_proc_cmd_cwd (char *args, int from_tty)
2911{
2912 info_proc_cmd_1 (args, IP_CWD, from_tty);
2913}
2914
2915/* Implement `info proc cmdline'. */
2916
2917static void
2918info_proc_cmd_cmdline (char *args, int from_tty)
2919{
2920 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
2921}
2922
2923/* Implement `info proc exe'. */
2924
2925static void
2926info_proc_cmd_exe (char *args, int from_tty)
2927{
2928 info_proc_cmd_1 (args, IP_EXE, from_tty);
2929}
2930
2931/* Implement `info proc all'. */
2932
2933static void
2934info_proc_cmd_all (char *args, int from_tty)
2935{
2936 info_proc_cmd_1 (args, IP_ALL, from_tty);
2937}
2938
c906108c 2939void
fba45db2 2940_initialize_infcmd (void)
c906108c 2941{
145b16a9 2942 static struct cmd_list_element *info_proc_cmdlist;
3cb3b8df 2943 struct cmd_list_element *c = NULL;
6ace3df1 2944 char *cmd_name;
3cb3b8df 2945
1777feb0 2946 /* Add the filename of the terminal connected to inferior I/O. */
3cb3b8df 2947 add_setshow_filename_cmd ("inferior-tty", class_run,
3f81c18a 2948 &inferior_io_terminal_scratch, _("\
3cb3b8df
BR
2949Set terminal for future runs of program being debugged."), _("\
2950Show terminal for future runs of program being debugged."), _("\
3f81c18a
VP
2951Usage: set inferior-tty /dev/pts/1"),
2952 set_inferior_tty_command,
2953 show_inferior_tty_command,
2954 &setlist, &showlist);
3cb3b8df 2955 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
c906108c 2956
6ace3df1
YQ
2957 cmd_name = "args";
2958 add_setshow_string_noescape_cmd (cmd_name, class_run,
2959 &inferior_args_scratch, _("\
b4b4ac0b
AC
2960Set argument list to give program being debugged when it is started."), _("\
2961Show argument list to give program being debugged when it is started."), _("\
2962Follow this command with any number of args, to be passed to the program."),
6ace3df1
YQ
2963 set_args_command,
2964 show_args_command,
2965 &setlist, &showlist);
2966 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
2967 gdb_assert (c != NULL);
2968 set_cmd_completer (c, filename_completer);
c906108c 2969
1a966eab
AC
2970 c = add_cmd ("environment", no_class, environment_info, _("\
2971The environment to give the program, or one variable's value.\n\
c906108c
SS
2972With an argument VAR, prints the value of environment variable VAR to\n\
2973give the program being debugged. With no arguments, prints the entire\n\
1a966eab 2974environment to be given to the program."), &showlist);
5ba2abeb 2975 set_cmd_completer (c, noop_completer);
c906108c
SS
2976
2977 add_prefix_cmd ("unset", no_class, unset_command,
1bedd215 2978 _("Complement to certain \"set\" commands."),
c906108c 2979 &unsetlist, "unset ", 0, &cmdlist);
c5aa993b 2980
1a966eab
AC
2981 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2982Cancel environment variable VAR for the program.\n\
2983This does not affect the program until the next \"run\" command."),
c5aa993b 2984 &unsetlist);
5ba2abeb 2985 set_cmd_completer (c, noop_completer);
c906108c 2986
1a966eab
AC
2987 c = add_cmd ("environment", class_run, set_environment_command, _("\
2988Set environment variable value to give the program.\n\
c906108c
SS
2989Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2990VALUES of environment variables are uninterpreted strings.\n\
1a966eab 2991This does not affect the program until the next \"run\" command."),
c5aa993b 2992 &setlist);
5ba2abeb 2993 set_cmd_completer (c, noop_completer);
c5aa993b 2994
1bedd215
AC
2995 c = add_com ("path", class_files, path_command, _("\
2996Add directory DIR(s) to beginning of search path for object files.\n\
c906108c
SS
2997$cwd in the path means the current working directory.\n\
2998This path is equivalent to the $PATH shell variable. It is a list of\n\
2999directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3000fully linked executable files and separately compiled object files as \
3001needed."));
5ba2abeb 3002 set_cmd_completer (c, filename_completer);
c906108c 3003
1a966eab
AC
3004 c = add_cmd ("paths", no_class, path_info, _("\
3005Current search path for finding object files.\n\
c906108c
SS
3006$cwd in the path means the current working directory.\n\
3007This path is equivalent to the $PATH shell variable. It is a list of\n\
3008directories, separated by colons. These directories are searched to find\n\
3e43a32a
MS
3009fully linked executable files and separately compiled object files as \
3010needed."),
c906108c 3011 &showlist);
5ba2abeb 3012 set_cmd_completer (c, noop_completer);
c906108c 3013
2277426b
PA
3014 add_prefix_cmd ("kill", class_run, kill_command,
3015 _("Kill execution of program being debugged."),
3016 &killlist, "kill ", 0, &cmdlist);
5fd62852 3017
1bedd215
AC
3018 add_com ("attach", class_run, attach_command, _("\
3019Attach to a process or file outside of GDB.\n\
c906108c
SS
3020This command attaches to another target, of the same type as your last\n\
3021\"target\" command (\"info files\" will show your target stack).\n\
3022The command may take as argument a process id or a device file.\n\
3023For a process id, you must have permission to send the process a signal,\n\
3024and it must have the same effective uid as the debugger.\n\
3025When using \"attach\" with a process id, the debugger finds the\n\
3026program running in the process, looking first in the current working\n\
3027directory, or (if not found there) using the source file search path\n\
3028(see the \"directory\" command). You can also use the \"file\" command\n\
1bedd215 3029to specify the program, and to load its symbol table."));
c906108c 3030
f73adfeb 3031 add_prefix_cmd ("detach", class_run, detach_command, _("\
1bedd215 3032Detach a process or file previously attached.\n\
c906108c 3033If a process, it is no longer traced, and it continues its execution. If\n\
f73adfeb
AS
3034you were debugging a file, the file is closed and gdb no longer accesses it."),
3035 &detachlist, "detach ", 0, &cmdlist);
c906108c 3036
1bedd215
AC
3037 add_com ("disconnect", class_run, disconnect_command, _("\
3038Disconnect from a target.\n\
6ad8ae5c 3039The target will wait for another debugger to connect. Not available for\n\
1bedd215 3040all targets."));
6ad8ae5c 3041
de0bea00 3042 c = add_com ("signal", class_run, signal_command, _("\
486c7739
MF
3043Continue program with the specified signal.\n\
3044Usage: signal SIGNAL\n\
2edda2ff 3045The SIGNAL argument is processed the same as the handle command.\n\
486c7739
MF
3046\n\
3047An argument of \"0\" means continue the program without sending it a signal.\n\
3048This is useful in cases where the program stopped because of a signal,\n\
3049and you want to resume the program while discarding the signal."));
de0bea00 3050 set_cmd_completer (c, signal_completer);
c906108c 3051
1bedd215
AC
3052 add_com ("stepi", class_run, stepi_command, _("\
3053Step one instruction exactly.\n\
486c7739
MF
3054Usage: stepi [N]\n\
3055Argument N means step N times (or till program stops for another \
3e43a32a 3056reason)."));
c906108c
SS
3057 add_com_alias ("si", "stepi", class_alias, 0);
3058
1bedd215
AC
3059 add_com ("nexti", class_run, nexti_command, _("\
3060Step one instruction, but proceed through subroutine calls.\n\
486c7739
MF
3061Usage: nexti [N]\n\
3062Argument N means step N times (or till program stops for another \
3e43a32a 3063reason)."));
c906108c
SS
3064 add_com_alias ("ni", "nexti", class_alias, 0);
3065
1bedd215
AC
3066 add_com ("finish", class_run, finish_command, _("\
3067Execute until selected stack frame returns.\n\
486c7739 3068Usage: finish\n\
1bedd215 3069Upon return, the value returned is printed and put in the value history."));
0e479716 3070 add_com_alias ("fin", "finish", class_run, 1);
c906108c 3071
1bedd215
AC
3072 add_com ("next", class_run, next_command, _("\
3073Step program, proceeding through subroutine calls.\n\
486c7739
MF
3074Usage: next [N]\n\
3075Unlike \"step\", if the current source line calls a subroutine,\n\
3076this command does not enter the subroutine, but instead steps over\n\
dbf6a605 3077the call, in effect treating it as a single source line."));
c906108c
SS
3078 add_com_alias ("n", "next", class_run, 1);
3079 if (xdb_commands)
c5aa993b 3080 add_com_alias ("S", "next", class_run, 1);
c906108c 3081
1bedd215
AC
3082 add_com ("step", class_run, step_command, _("\
3083Step program until it reaches a different source line.\n\
486c7739
MF
3084Usage: step [N]\n\
3085Argument N means step N times (or till program stops for another \
3e43a32a 3086reason)."));
c906108c
SS
3087 add_com_alias ("s", "step", class_run, 1);
3088
1bedd215
AC
3089 c = add_com ("until", class_run, until_command, _("\
3090Execute until the program reaches a source line greater than the current\n\
3e43a32a
MS
3091or a specified location (same args as break command) within the current \
3092frame."));
5ba2abeb 3093 set_cmd_completer (c, location_completer);
c906108c 3094 add_com_alias ("u", "until", class_run, 1);
c5aa993b 3095
1bedd215 3096 c = add_com ("advance", class_run, advance_command, _("\
3e43a32a
MS
3097Continue the program up to the given location (same form as args for break \
3098command).\n\
1bedd215 3099Execution will also stop upon exit from the current stack frame."));
ae66c1fc
EZ
3100 set_cmd_completer (c, location_completer);
3101
1bedd215
AC
3102 c = add_com ("jump", class_run, jump_command, _("\
3103Continue program being debugged at specified line or address.\n\
486c7739 3104Usage: jump <location>\n\
c906108c 3105Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
1bedd215 3106for an address to start at."));
5ba2abeb 3107 set_cmd_completer (c, location_completer);
c1d780c2 3108 add_com_alias ("j", "jump", class_run, 1);
c906108c 3109
b83266a0 3110 if (xdb_commands)
c94fdfd0 3111 {
1bedd215
AC
3112 c = add_com ("go", class_run, go_command, _("\
3113Usage: go <location>\n\
c906108c
SS
3114Continue program being debugged, stopping at specified line or \n\
3115address.\n\
3116Give as argument either LINENUM or *ADDR, where ADDR is an \n\
3117expression for an address to start at.\n\
1bedd215 3118This command is a combination of tbreak and jump."));
5ba2abeb 3119 set_cmd_completer (c, location_completer);
c94fdfd0 3120 }
b83266a0 3121
c906108c 3122 if (xdb_commands)
c5aa993b 3123 add_com_alias ("g", "go", class_run, 1);
c906108c 3124
df983543 3125 add_com ("continue", class_run, continue_command, _("\
1bedd215 3126Continue program being debugged, after signal or breakpoint.\n\
486c7739 3127Usage: continue [N]\n\
c906108c
SS
3128If proceeding from breakpoint, a number N may be used as an argument,\n\
3129which means to set the ignore count of that breakpoint to N - 1 (so that\n\
8cae4b3f
PA
3130the breakpoint won't break until the Nth time it is reached).\n\
3131\n\
3132If non-stop mode is enabled, continue only the current thread,\n\
3133otherwise all the threads in the program are continued. To \n\
3134continue all stopped threads in non-stop mode, use the -a option.\n\
3135Specifying -a and an ignore count simultaneously is an error."));
c906108c
SS
3136 add_com_alias ("c", "cont", class_run, 1);
3137 add_com_alias ("fg", "cont", class_run, 1);
3138
1bedd215
AC
3139 c = add_com ("run", class_run, run_command, _("\
3140Start debugged program. You may specify arguments to give it.\n\
c906108c 3141Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
3e43a32a
MS
3142Input and output redirection with \">\", \"<\", or \">>\" are also \
3143allowed.\n\n\
3144With no arguments, uses arguments last specified (with \"run\" \
3145or \"set args\").\n\
c906108c 3146To cancel previous arguments and run with no arguments,\n\
1bedd215 3147use \"set args\" without arguments."));
5ba2abeb 3148 set_cmd_completer (c, filename_completer);
c906108c
SS
3149 add_com_alias ("r", "run", class_run, 1);
3150 if (xdb_commands)
3151 add_com ("R", class_run, run_no_args_command,
1bedd215 3152 _("Start debugged program with no arguments."));
c906108c 3153
1bedd215 3154 c = add_com ("start", class_run, start_command, _("\
a4d5f2e0
JB
3155Run the debugged program until the beginning of the main procedure.\n\
3156You may specify arguments to give to your program, just as with the\n\
1bedd215 3157\"run\" command."));
a4d5f2e0
JB
3158 set_cmd_completer (c, filename_completer);
3159
df983543
MS
3160 add_com ("interrupt", class_run, interrupt_target_command,
3161 _("Interrupt the execution of the debugged program.\n\
8cae4b3f
PA
3162If non-stop mode is enabled, interrupt only the current thread,\n\
3163otherwise all the threads in the program are stopped. To \n\
3164interrupt all running threads in non-stop mode, use the -a option."));
43ff13b4 3165
1bedd215
AC
3166 add_info ("registers", nofp_registers_info, _("\
3167List of integer registers and their contents, for selected stack frame.\n\
3168Register name as argument means describe only that register."));
7194c49b 3169 add_info_alias ("r", "registers", 1);
c906108c
SS
3170
3171 if (xdb_commands)
1bedd215
AC
3172 add_com ("lr", class_info, nofp_registers_info, _("\
3173List of integer registers and their contents, for selected stack frame.\n\
3174Register name as argument means describe only that register."));
3175 add_info ("all-registers", all_registers_info, _("\
3176List of all registers and their contents, for selected stack frame.\n\
3177Register name as argument means describe only that register."));
c906108c
SS
3178
3179 add_info ("program", program_info,
1bedd215 3180 _("Execution status of the program."));
c906108c
SS
3181
3182 add_info ("float", float_info,
1bedd215 3183 _("Print the status of the floating point unit\n"));
c906108c 3184
e76f1f2e 3185 add_info ("vector", vector_info,
1bedd215 3186 _("Print the status of the vector unit\n"));
145b16a9
UW
3187
3188 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3189 _("\
3190Show /proc process information about any running process.\n\
3191Specify any process id, or use the program being debugged by default."),
3192 &info_proc_cmdlist, "info proc ",
3193 1/*allow-unknown*/, &infolist);
3194
3195 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
3196List of mapped memory regions."),
3197 &info_proc_cmdlist);
3198
3199 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3200List process info from /proc/PID/stat."),
3201 &info_proc_cmdlist);
3202
3203 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3204List process info from /proc/PID/status."),
3205 &info_proc_cmdlist);
3206
3207 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
3208List current working directory of the process."),
3209 &info_proc_cmdlist);
3210
3211 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
3212List command line arguments of the process."),
3213 &info_proc_cmdlist);
3214
3215 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
3216List absolute filename for executable of the process."),
3217 &info_proc_cmdlist);
3218
3219 add_cmd ("all", class_info, info_proc_cmd_all, _("\
3220List all available /proc info."),
3221 &info_proc_cmdlist);
c906108c 3222}
This page took 2.510202 seconds and 4 git commands to generate.