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