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