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