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