]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Memory-access and commands for "inferior" process, for GDB. |
990a07ab AC |
2 | |
3 | Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, | |
4 | 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 | |
c906108c SS |
5 | Free Software Foundation, Inc. |
6 | ||
c5aa993b | 7 | This file is part of GDB. |
c906108c | 8 | |
c5aa993b JM |
9 | This program is free software; you can redistribute it and/or modify |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 2 of the License, or | |
12 | (at your option) any later version. | |
c906108c | 13 | |
c5aa993b JM |
14 | This program is distributed in the hope that it will be useful, |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
c906108c | 18 | |
c5aa993b JM |
19 | You should have received a copy of the GNU General Public License |
20 | along with this program; if not, write to the Free Software | |
21 | Foundation, Inc., 59 Temple Place - Suite 330, | |
22 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
23 | |
24 | #include "defs.h" | |
25 | #include <signal.h> | |
26 | #include "gdb_string.h" | |
27 | #include "symtab.h" | |
28 | #include "gdbtypes.h" | |
29 | #include "frame.h" | |
30 | #include "inferior.h" | |
31 | #include "environ.h" | |
32 | #include "value.h" | |
33 | #include "gdbcmd.h" | |
1adeb98a | 34 | #include "symfile.h" |
c906108c SS |
35 | #include "gdbcore.h" |
36 | #include "target.h" | |
37 | #include "language.h" | |
38 | #include "symfile.h" | |
39 | #include "objfiles.h" | |
c94fdfd0 | 40 | #include "completer.h" |
8b93c638 | 41 | #include "ui-out.h" |
6426a772 | 42 | #include "event-top.h" |
96baa820 | 43 | #include "parser-defs.h" |
36160dc4 | 44 | #include "regcache.h" |
f9418c0f | 45 | #include "reggroups.h" |
fe898f56 | 46 | #include "block.h" |
f9418c0f | 47 | #include <ctype.h> |
92ad9cd9 | 48 | #include "gdb_assert.h" |
72cec141 | 49 | |
a58dd373 | 50 | /* Functions exported for general use, in inferior.h: */ |
c906108c | 51 | |
a14ed312 | 52 | void all_registers_info (char *, int); |
c906108c | 53 | |
a14ed312 | 54 | void registers_info (char *, int); |
c906108c | 55 | |
a58dd373 EZ |
56 | void nexti_command (char *, int); |
57 | ||
58 | void stepi_command (char *, int); | |
c906108c | 59 | |
a14ed312 | 60 | void continue_command (char *, int); |
c906108c | 61 | |
a58dd373 EZ |
62 | void interrupt_target_command (char *args, int from_tty); |
63 | ||
64 | /* Local functions: */ | |
65 | ||
66 | static void nofp_registers_info (char *, int); | |
67 | ||
11cf8741 JM |
68 | static void print_return_value (int struct_return, struct type *value_type); |
69 | ||
a14ed312 | 70 | static void finish_command_continuation (struct continuation_arg *); |
43ff13b4 | 71 | |
a14ed312 | 72 | static void until_next_command (int); |
c906108c | 73 | |
a14ed312 | 74 | static void until_command (char *, int); |
c906108c | 75 | |
a14ed312 | 76 | static void path_info (char *, int); |
c906108c | 77 | |
a14ed312 | 78 | static void path_command (char *, int); |
c906108c | 79 | |
a14ed312 | 80 | static void unset_command (char *, int); |
c906108c | 81 | |
a14ed312 | 82 | static void float_info (char *, int); |
c906108c | 83 | |
a14ed312 | 84 | static void detach_command (char *, int); |
c906108c | 85 | |
6ad8ae5c DJ |
86 | static void disconnect_command (char *, int); |
87 | ||
a14ed312 | 88 | static void unset_environment_command (char *, int); |
c906108c | 89 | |
a14ed312 | 90 | static void set_environment_command (char *, int); |
c906108c | 91 | |
a14ed312 | 92 | static void environment_info (char *, int); |
c906108c | 93 | |
a14ed312 | 94 | static void program_info (char *, int); |
c906108c | 95 | |
a14ed312 | 96 | static void finish_command (char *, int); |
c906108c | 97 | |
a14ed312 | 98 | static void signal_command (char *, int); |
c906108c | 99 | |
a14ed312 | 100 | static void jump_command (char *, int); |
c906108c | 101 | |
a14ed312 | 102 | static void step_1 (int, int, char *); |
c2d11a7d JM |
103 | static void step_once (int skip_subroutines, int single_inst, int count); |
104 | static void step_1_continuation (struct continuation_arg *arg); | |
c906108c | 105 | |
a14ed312 | 106 | static void next_command (char *, int); |
c906108c | 107 | |
a14ed312 | 108 | static void step_command (char *, int); |
c906108c | 109 | |
a14ed312 | 110 | static void run_command (char *, int); |
c906108c | 111 | |
a14ed312 | 112 | static void run_no_args_command (char *args, int from_tty); |
392a587b | 113 | |
a14ed312 | 114 | static void go_command (char *line_no, int from_tty); |
392a587b | 115 | |
a14ed312 | 116 | static int strip_bg_char (char **); |
43ff13b4 | 117 | |
a14ed312 | 118 | void _initialize_infcmd (void); |
c906108c SS |
119 | |
120 | #define GO_USAGE "Usage: go <location>\n" | |
121 | ||
c906108c | 122 | #define ERROR_NO_INFERIOR \ |
8a3fe4f8 | 123 | if (!target_has_execution) error (_("The program is not being run.")); |
c906108c SS |
124 | |
125 | /* String containing arguments to give to the program, separated by spaces. | |
126 | Empty string (pointer to '\0') means no args. */ | |
127 | ||
128 | static char *inferior_args; | |
129 | ||
552c04a7 TT |
130 | /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero, |
131 | then we must compute INFERIOR_ARGS from this (via the target). */ | |
132 | ||
133 | static int inferior_argc; | |
134 | static char **inferior_argv; | |
135 | ||
c906108c SS |
136 | /* File name for default use for standard in/out in the inferior. */ |
137 | ||
138 | char *inferior_io_terminal; | |
139 | ||
140 | /* Pid of our debugged inferior, or 0 if no inferior now. | |
141 | Since various parts of infrun.c test this to see whether there is a program | |
142 | being debugged it should be nonzero (currently 3 is used) for remote | |
143 | debugging. */ | |
144 | ||
39f77062 | 145 | ptid_t inferior_ptid; |
c906108c SS |
146 | |
147 | /* Last signal that the inferior received (why it stopped). */ | |
148 | ||
149 | enum target_signal stop_signal; | |
150 | ||
151 | /* Address at which inferior stopped. */ | |
152 | ||
153 | CORE_ADDR stop_pc; | |
154 | ||
155 | /* Chain containing status of breakpoint(s) that we have stopped at. */ | |
156 | ||
157 | bpstat stop_bpstat; | |
158 | ||
159 | /* Flag indicating that a command has proceeded the inferior past the | |
160 | current breakpoint. */ | |
161 | ||
162 | int breakpoint_proceeded; | |
163 | ||
164 | /* Nonzero if stopped due to a step command. */ | |
165 | ||
166 | int stop_step; | |
167 | ||
168 | /* Nonzero if stopped due to completion of a stack dummy routine. */ | |
169 | ||
170 | int stop_stack_dummy; | |
171 | ||
172 | /* Nonzero if stopped due to a random (unexpected) signal in inferior | |
173 | process. */ | |
174 | ||
175 | int stopped_by_random_signal; | |
176 | ||
177 | /* Range to single step within. | |
178 | If this is nonzero, respond to a single-step signal | |
179 | by continuing to step if the pc is in this range. */ | |
180 | ||
c5aa993b JM |
181 | CORE_ADDR step_range_start; /* Inclusive */ |
182 | CORE_ADDR step_range_end; /* Exclusive */ | |
c906108c SS |
183 | |
184 | /* Stack frame address as of when stepping command was issued. | |
185 | This is how we know when we step into a subroutine call, | |
186 | and how to set the frame for the breakpoint used to step out. */ | |
187 | ||
aa0cd9c1 | 188 | struct frame_id step_frame_id; |
c906108c | 189 | |
5fbbeb29 | 190 | enum step_over_calls_kind step_over_calls; |
c906108c SS |
191 | |
192 | /* If stepping, nonzero means step count is > 1 | |
193 | so don't print frame next time inferior stops | |
194 | if it stops due to stepping. */ | |
195 | ||
196 | int step_multi; | |
197 | ||
198 | /* Environment to use for running inferior, | |
199 | in format described in environ.h. */ | |
200 | ||
201 | struct environ *inferior_environ; | |
c906108c | 202 | \f |
07091751 FN |
203 | /* Accessor routines. */ |
204 | ||
205 | char * | |
206 | get_inferior_args (void) | |
207 | { | |
552c04a7 TT |
208 | if (inferior_argc != 0) |
209 | { | |
210 | char *n, *old; | |
211 | ||
212 | n = gdbarch_construct_inferior_arguments (current_gdbarch, | |
213 | inferior_argc, inferior_argv); | |
214 | old = set_inferior_args (n); | |
215 | xfree (old); | |
216 | } | |
217 | ||
218 | if (inferior_args == NULL) | |
219 | inferior_args = xstrdup (""); | |
220 | ||
07091751 FN |
221 | return inferior_args; |
222 | } | |
223 | ||
224 | char * | |
225 | set_inferior_args (char *newargs) | |
226 | { | |
227 | char *saved_args = inferior_args; | |
228 | ||
229 | inferior_args = newargs; | |
552c04a7 TT |
230 | inferior_argc = 0; |
231 | inferior_argv = 0; | |
07091751 FN |
232 | |
233 | return saved_args; | |
234 | } | |
c5aa993b | 235 | |
552c04a7 TT |
236 | void |
237 | set_inferior_args_vector (int argc, char **argv) | |
238 | { | |
239 | inferior_argc = argc; | |
240 | inferior_argv = argv; | |
241 | } | |
242 | ||
243 | /* Notice when `set args' is run. */ | |
244 | static void | |
245 | notice_args_set (char *args, int from_tty, struct cmd_list_element *c) | |
246 | { | |
247 | inferior_argc = 0; | |
248 | inferior_argv = 0; | |
249 | } | |
250 | ||
251 | /* Notice when `show args' is run. */ | |
252 | static void | |
9f60d481 | 253 | notice_args_read (char *args, int from_tty, struct cmd_list_element *c) |
552c04a7 TT |
254 | { |
255 | /* Might compute the value. */ | |
256 | get_inferior_args (); | |
257 | } | |
258 | ||
c2a727fa TT |
259 | \f |
260 | /* Compute command-line string given argument vector. This does the | |
261 | same shell processing as fork_inferior. */ | |
c2a727fa TT |
262 | char * |
263 | construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv) | |
264 | { | |
265 | char *result; | |
266 | ||
267 | if (STARTUP_WITH_SHELL) | |
268 | { | |
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 `|'. */ | |
272 | char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n"; | |
273 | int i; | |
274 | int length = 0; | |
275 | char *out, *cp; | |
276 | ||
277 | /* We over-compute the size. It shouldn't matter. */ | |
278 | for (i = 0; i < argc; ++i) | |
03c6228e | 279 | length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0'); |
c2a727fa TT |
280 | |
281 | result = (char *) xmalloc (length); | |
282 | out = result; | |
283 | ||
284 | for (i = 0; i < argc; ++i) | |
285 | { | |
286 | if (i > 0) | |
287 | *out++ = ' '; | |
288 | ||
03c6228e AS |
289 | /* Need to handle empty arguments specially. */ |
290 | if (argv[i][0] == '\0') | |
c2a727fa | 291 | { |
03c6228e AS |
292 | *out++ = '\''; |
293 | *out++ = '\''; | |
294 | } | |
295 | else | |
296 | { | |
297 | for (cp = argv[i]; *cp; ++cp) | |
298 | { | |
299 | if (strchr (special, *cp) != NULL) | |
300 | *out++ = '\\'; | |
301 | *out++ = *cp; | |
302 | } | |
c2a727fa TT |
303 | } |
304 | } | |
305 | *out = '\0'; | |
306 | } | |
307 | else | |
308 | { | |
309 | /* In this case we can't handle arguments that contain spaces, | |
310 | tabs, or newlines -- see breakup_args(). */ | |
311 | int i; | |
312 | int length = 0; | |
313 | ||
314 | for (i = 0; i < argc; ++i) | |
315 | { | |
316 | char *cp = strchr (argv[i], ' '); | |
317 | if (cp == NULL) | |
318 | cp = strchr (argv[i], '\t'); | |
319 | if (cp == NULL) | |
320 | cp = strchr (argv[i], '\n'); | |
321 | if (cp != NULL) | |
8a3fe4f8 | 322 | error (_("can't handle command-line argument containing whitespace")); |
c2a727fa TT |
323 | length += strlen (argv[i]) + 1; |
324 | } | |
325 | ||
326 | result = (char *) xmalloc (length); | |
327 | result[0] = '\0'; | |
328 | for (i = 0; i < argc; ++i) | |
329 | { | |
330 | if (i > 0) | |
331 | strcat (result, " "); | |
332 | strcat (result, argv[i]); | |
333 | } | |
334 | } | |
335 | ||
336 | return result; | |
337 | } | |
552c04a7 TT |
338 | \f |
339 | ||
43ff13b4 JM |
340 | /* This function detects whether or not a '&' character (indicating |
341 | background execution) has been added as *the last* of the arguments ARGS | |
342 | of a command. If it has, it removes it and returns 1. Otherwise it | |
343 | does nothing and returns 0. */ | |
c5aa993b | 344 | static int |
fba45db2 | 345 | strip_bg_char (char **args) |
43ff13b4 JM |
346 | { |
347 | char *p = NULL; | |
c5aa993b | 348 | |
9846de1b | 349 | p = strchr (*args, '&'); |
c5aa993b | 350 | |
9846de1b | 351 | if (p) |
43ff13b4 JM |
352 | { |
353 | if (p == (*args + strlen (*args) - 1)) | |
354 | { | |
c5aa993b | 355 | if (strlen (*args) > 1) |
43ff13b4 JM |
356 | { |
357 | do | |
358 | p--; | |
359 | while (*p == ' ' || *p == '\t'); | |
360 | *(p + 1) = '\0'; | |
361 | } | |
362 | else | |
363 | *args = 0; | |
364 | return 1; | |
365 | } | |
366 | } | |
367 | return 0; | |
368 | } | |
369 | ||
c906108c | 370 | void |
fba45db2 | 371 | tty_command (char *file, int from_tty) |
c906108c SS |
372 | { |
373 | if (file == 0) | |
e2e0b3e5 | 374 | error_no_arg (_("terminal name for running target process")); |
c906108c SS |
375 | |
376 | inferior_io_terminal = savestring (file, strlen (file)); | |
377 | } | |
378 | ||
a4d5f2e0 JB |
379 | /* Kill the inferior if already running. This function is designed |
380 | to be called when we are about to start the execution of the program | |
381 | from the beginning. Ask the user to confirm that he wants to restart | |
382 | the program being debugged when FROM_TTY is non-null. */ | |
c906108c | 383 | |
a4d5f2e0 JB |
384 | void |
385 | kill_if_already_running (int from_tty) | |
386 | { | |
39f77062 | 387 | if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution) |
c906108c | 388 | { |
adf40b2e JM |
389 | if (from_tty |
390 | && !query ("The program being debugged has been started already.\n\ | |
c906108c | 391 | Start it from the beginning? ")) |
8a3fe4f8 | 392 | error (_("Program not restarted.")); |
c906108c SS |
393 | target_kill (); |
394 | #if defined(SOLIB_RESTART) | |
395 | SOLIB_RESTART (); | |
396 | #endif | |
397 | init_wait_for_inferior (); | |
398 | } | |
a4d5f2e0 JB |
399 | } |
400 | ||
401 | static void | |
402 | run_command (char *args, int from_tty) | |
403 | { | |
404 | char *exec_file; | |
c906108c | 405 | |
a4d5f2e0 JB |
406 | dont_repeat (); |
407 | ||
408 | kill_if_already_running (from_tty); | |
c906108c SS |
409 | clear_breakpoint_hit_counts (); |
410 | ||
c906108c SS |
411 | /* Purge old solib objfiles. */ |
412 | objfile_purge_solibs (); | |
413 | ||
414 | do_run_cleanups (NULL); | |
415 | ||
39ad761d JB |
416 | /* The comment here used to read, "The exec file is re-read every |
417 | time we do a generic_mourn_inferior, so we just have to worry | |
418 | about the symbol file." The `generic_mourn_inferior' function | |
419 | gets called whenever the program exits. However, suppose the | |
420 | program exits, and *then* the executable file changes? We need | |
421 | to check again here. Since reopen_exec_file doesn't do anything | |
422 | if the timestamp hasn't changed, I don't see the harm. */ | |
423 | reopen_exec_file (); | |
c906108c SS |
424 | reread_symbols (); |
425 | ||
39ad761d JB |
426 | exec_file = (char *) get_exec_file (0); |
427 | ||
c906108c SS |
428 | /* We keep symbols from add-symbol-file, on the grounds that the |
429 | user might want to add some symbols before running the program | |
430 | (right?). But sometimes (dynamic loading where the user manually | |
431 | introduces the new symbols with add-symbol-file), the code which | |
432 | the symbols describe does not persist between runs. Currently | |
433 | the user has to manually nuke all symbols between runs if they | |
434 | want them to go away (PR 2207). This is probably reasonable. */ | |
435 | ||
43ff13b4 | 436 | if (!args) |
6426a772 | 437 | { |
362646f5 | 438 | if (target_can_async_p ()) |
6426a772 JM |
439 | async_disable_stdin (); |
440 | } | |
43ff13b4 | 441 | else |
c906108c | 442 | { |
43ff13b4 JM |
443 | int async_exec = strip_bg_char (&args); |
444 | ||
445 | /* If we get a request for running in the bg but the target | |
446 | doesn't support it, error out. */ | |
362646f5 | 447 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 448 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
449 | |
450 | /* If we don't get a request of running in the bg, then we need | |
c5aa993b | 451 | to simulate synchronous (fg) execution. */ |
362646f5 | 452 | if (!async_exec && target_can_async_p ()) |
43ff13b4 JM |
453 | { |
454 | /* Simulate synchronous execution */ | |
6426a772 | 455 | async_disable_stdin (); |
43ff13b4 JM |
456 | } |
457 | ||
458 | /* If there were other args, beside '&', process them. */ | |
459 | if (args) | |
460 | { | |
07091751 FN |
461 | char *old_args = set_inferior_args (xstrdup (args)); |
462 | xfree (old_args); | |
43ff13b4 | 463 | } |
c906108c SS |
464 | } |
465 | ||
466 | if (from_tty) | |
467 | { | |
8b93c638 JM |
468 | ui_out_field_string (uiout, NULL, "Starting program"); |
469 | ui_out_text (uiout, ": "); | |
470 | if (exec_file) | |
471 | ui_out_field_string (uiout, "execfile", exec_file); | |
472 | ui_out_spaces (uiout, 1); | |
552c04a7 TT |
473 | /* We call get_inferior_args() because we might need to compute |
474 | the value now. */ | |
475 | ui_out_field_string (uiout, "infargs", get_inferior_args ()); | |
8b93c638 JM |
476 | ui_out_text (uiout, "\n"); |
477 | ui_out_flush (uiout); | |
c906108c SS |
478 | } |
479 | ||
552c04a7 TT |
480 | /* We call get_inferior_args() because we might need to compute |
481 | the value now. */ | |
482 | target_create_inferior (exec_file, get_inferior_args (), | |
c27cda74 | 483 | environ_vector (inferior_environ), from_tty); |
c906108c SS |
484 | } |
485 | ||
486 | ||
487 | static void | |
fba45db2 | 488 | run_no_args_command (char *args, int from_tty) |
c906108c | 489 | { |
07091751 FN |
490 | char *old_args = set_inferior_args (xstrdup ("")); |
491 | xfree (old_args); | |
c906108c | 492 | } |
c906108c | 493 | \f |
c5aa993b | 494 | |
a4d5f2e0 JB |
495 | /* Start the execution of the program up until the beginning of the main |
496 | program. */ | |
497 | ||
498 | static void | |
499 | start_command (char *args, int from_tty) | |
500 | { | |
501 | /* Some languages such as Ada need to search inside the program | |
502 | minimal symbols for the location where to put the temporary | |
503 | breakpoint before starting. */ | |
504 | if (!have_minimal_symbols ()) | |
8a3fe4f8 | 505 | error (_("No symbol table loaded. Use the \"file\" command.")); |
a4d5f2e0 JB |
506 | |
507 | /* If the inferior is already running, we want to ask the user if we | |
508 | should restart it or not before we insert the temporary breakpoint. | |
509 | This makes sure that this command doesn't have any side effect if | |
510 | the user changes its mind. */ | |
511 | kill_if_already_running (from_tty); | |
512 | ||
513 | /* Insert the temporary breakpoint, and run... */ | |
514 | tbreak_command (main_name (), 0); | |
515 | run_command (args, from_tty); | |
516 | } | |
517 | ||
c906108c | 518 | void |
fba45db2 | 519 | continue_command (char *proc_count_exp, int from_tty) |
c906108c | 520 | { |
c5aa993b | 521 | int async_exec = 0; |
c906108c SS |
522 | ERROR_NO_INFERIOR; |
523 | ||
43ff13b4 JM |
524 | /* Find out whether we must run in the background. */ |
525 | if (proc_count_exp != NULL) | |
526 | async_exec = strip_bg_char (&proc_count_exp); | |
527 | ||
528 | /* If we must run in the background, but the target can't do it, | |
529 | error out. */ | |
362646f5 | 530 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 531 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
532 | |
533 | /* If we are not asked to run in the bg, then prepare to run in the | |
534 | foreground, synchronously. */ | |
362646f5 | 535 | if (!async_exec && target_can_async_p ()) |
c5aa993b | 536 | { |
43ff13b4 | 537 | /* Simulate synchronous execution */ |
6426a772 | 538 | async_disable_stdin (); |
43ff13b4 | 539 | } |
c906108c | 540 | |
43ff13b4 JM |
541 | /* If have argument (besides '&'), set proceed count of breakpoint |
542 | we stopped at. */ | |
c906108c SS |
543 | if (proc_count_exp != NULL) |
544 | { | |
545 | bpstat bs = stop_bpstat; | |
546 | int num = bpstat_num (&bs); | |
547 | if (num == 0 && from_tty) | |
548 | { | |
549 | printf_filtered | |
550 | ("Not stopped at any breakpoint; argument ignored.\n"); | |
551 | } | |
552 | while (num != 0) | |
553 | { | |
554 | set_ignore_count (num, | |
bb518678 | 555 | parse_and_eval_long (proc_count_exp) - 1, |
c906108c SS |
556 | from_tty); |
557 | /* set_ignore_count prints a message ending with a period. | |
558 | So print two spaces before "Continuing.". */ | |
559 | if (from_tty) | |
560 | printf_filtered (" "); | |
561 | num = bpstat_num (&bs); | |
562 | } | |
563 | } | |
564 | ||
565 | if (from_tty) | |
a3f17187 | 566 | printf_filtered (_("Continuing.\n")); |
c906108c SS |
567 | |
568 | clear_proceed_status (); | |
569 | ||
2acceee2 | 570 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0); |
c906108c SS |
571 | } |
572 | \f | |
573 | /* Step until outside of current statement. */ | |
574 | ||
c906108c | 575 | static void |
fba45db2 | 576 | step_command (char *count_string, int from_tty) |
c906108c SS |
577 | { |
578 | step_1 (0, 0, count_string); | |
579 | } | |
580 | ||
581 | /* Likewise, but skip over subroutine calls as if single instructions. */ | |
582 | ||
c906108c | 583 | static void |
fba45db2 | 584 | next_command (char *count_string, int from_tty) |
c906108c SS |
585 | { |
586 | step_1 (1, 0, count_string); | |
587 | } | |
588 | ||
589 | /* Likewise, but step only one instruction. */ | |
590 | ||
c906108c | 591 | void |
fba45db2 | 592 | stepi_command (char *count_string, int from_tty) |
c906108c SS |
593 | { |
594 | step_1 (0, 1, count_string); | |
595 | } | |
596 | ||
c906108c | 597 | void |
fba45db2 | 598 | nexti_command (char *count_string, int from_tty) |
c906108c SS |
599 | { |
600 | step_1 (1, 1, count_string); | |
601 | } | |
602 | ||
74b7792f AC |
603 | static void |
604 | disable_longjmp_breakpoint_cleanup (void *ignore) | |
605 | { | |
606 | disable_longjmp_breakpoint (); | |
607 | } | |
608 | ||
c906108c | 609 | static void |
fba45db2 | 610 | step_1 (int skip_subroutines, int single_inst, char *count_string) |
c906108c | 611 | { |
52f0bd74 | 612 | int count = 1; |
c906108c SS |
613 | struct frame_info *frame; |
614 | struct cleanup *cleanups = 0; | |
43ff13b4 | 615 | int async_exec = 0; |
c5aa993b | 616 | |
c906108c | 617 | ERROR_NO_INFERIOR; |
43ff13b4 JM |
618 | |
619 | if (count_string) | |
620 | async_exec = strip_bg_char (&count_string); | |
c5aa993b | 621 | |
43ff13b4 JM |
622 | /* If we get a request for running in the bg but the target |
623 | doesn't support it, error out. */ | |
362646f5 | 624 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 625 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
626 | |
627 | /* If we don't get a request of running in the bg, then we need | |
628 | to simulate synchronous (fg) execution. */ | |
362646f5 | 629 | if (!async_exec && target_can_async_p ()) |
43ff13b4 JM |
630 | { |
631 | /* Simulate synchronous execution */ | |
6426a772 | 632 | async_disable_stdin (); |
43ff13b4 JM |
633 | } |
634 | ||
bb518678 | 635 | count = count_string ? parse_and_eval_long (count_string) : 1; |
c906108c | 636 | |
c5aa993b | 637 | if (!single_inst || skip_subroutines) /* leave si command alone */ |
c906108c | 638 | { |
c5aa993b | 639 | enable_longjmp_breakpoint (); |
362646f5 | 640 | if (!target_can_async_p ()) |
74b7792f | 641 | cleanups = make_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/); |
c2d11a7d | 642 | else |
74b7792f | 643 | make_exec_cleanup (disable_longjmp_breakpoint_cleanup, 0 /*ignore*/); |
c2d11a7d JM |
644 | } |
645 | ||
646 | /* In synchronous case, all is well, just use the regular for loop. */ | |
362646f5 | 647 | if (!target_can_async_p ()) |
c2d11a7d JM |
648 | { |
649 | for (; count > 0; count--) | |
650 | { | |
651 | clear_proceed_status (); | |
652 | ||
653 | frame = get_current_frame (); | |
654 | if (!frame) /* Avoid coredump here. Why tho? */ | |
8a3fe4f8 | 655 | error (_("No current frame")); |
aa0cd9c1 | 656 | step_frame_id = get_frame_id (frame); |
c2d11a7d JM |
657 | |
658 | if (!single_inst) | |
659 | { | |
660 | find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end); | |
661 | if (step_range_end == 0) | |
662 | { | |
663 | char *name; | |
664 | if (find_pc_partial_function (stop_pc, &name, &step_range_start, | |
665 | &step_range_end) == 0) | |
8a3fe4f8 | 666 | error (_("Cannot find bounds of current function")); |
c2d11a7d JM |
667 | |
668 | target_terminal_ours (); | |
a3f17187 | 669 | printf_filtered (_("\ |
c2d11a7d | 670 | Single stepping until exit from function %s, \n\ |
a3f17187 | 671 | which has no line number information.\n"), name); |
c2d11a7d JM |
672 | } |
673 | } | |
674 | else | |
675 | { | |
676 | /* Say we are stepping, but stop after one insn whatever it does. */ | |
677 | step_range_start = step_range_end = 1; | |
678 | if (!skip_subroutines) | |
679 | /* It is stepi. | |
680 | Don't step over function calls, not even to functions lacking | |
681 | line numbers. */ | |
5fbbeb29 | 682 | step_over_calls = STEP_OVER_NONE; |
c2d11a7d JM |
683 | } |
684 | ||
685 | if (skip_subroutines) | |
5fbbeb29 | 686 | step_over_calls = STEP_OVER_ALL; |
c2d11a7d JM |
687 | |
688 | step_multi = (count > 1); | |
689 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); | |
690 | ||
691 | if (!stop_step) | |
692 | break; | |
c2d11a7d JM |
693 | } |
694 | ||
695 | if (!single_inst || skip_subroutines) | |
696 | do_cleanups (cleanups); | |
697 | return; | |
698 | } | |
699 | /* In case of asynchronous target things get complicated, do only | |
700 | one step for now, before returning control to the event loop. Let | |
701 | the continuation figure out how many other steps we need to do, | |
702 | and handle them one at the time, through step_once(). */ | |
703 | else | |
704 | { | |
362646f5 | 705 | if (target_can_async_p ()) |
c2d11a7d | 706 | step_once (skip_subroutines, single_inst, count); |
c906108c | 707 | } |
c2d11a7d | 708 | } |
c906108c | 709 | |
c2d11a7d JM |
710 | /* Called after we are done with one step operation, to check whether |
711 | we need to step again, before we print the prompt and return control | |
712 | to the user. If count is > 1, we will need to do one more call to | |
713 | proceed(), via step_once(). Basically it is like step_once and | |
714 | step_1_continuation are co-recursive. */ | |
715 | static void | |
fba45db2 | 716 | step_1_continuation (struct continuation_arg *arg) |
c2d11a7d | 717 | { |
57e687d9 MS |
718 | int count; |
719 | int skip_subroutines; | |
720 | int single_inst; | |
721 | ||
722 | skip_subroutines = arg->data.integer; | |
723 | single_inst = arg->next->data.integer; | |
724 | count = arg->next->next->data.integer; | |
725 | ||
726 | if (stop_step) | |
e74f0f02 | 727 | step_once (skip_subroutines, single_inst, count - 1); |
57e687d9 MS |
728 | else |
729 | if (!single_inst || skip_subroutines) | |
730 | do_exec_cleanups (ALL_CLEANUPS); | |
c2d11a7d JM |
731 | } |
732 | ||
733 | /* Do just one step operation. If count >1 we will have to set up a | |
734 | continuation to be done after the target stops (after this one | |
735 | step). This is useful to implement the 'step n' kind of commands, in | |
736 | case of asynchronous targets. We had to split step_1 into two parts, | |
737 | one to be done before proceed() and one afterwards. This function is | |
738 | called in case of step n with n>1, after the first step operation has | |
739 | been completed.*/ | |
740 | static void | |
0d06e24b | 741 | step_once (int skip_subroutines, int single_inst, int count) |
c2d11a7d | 742 | { |
0d06e24b JM |
743 | struct continuation_arg *arg1; |
744 | struct continuation_arg *arg2; | |
745 | struct continuation_arg *arg3; | |
746 | struct frame_info *frame; | |
c2d11a7d JM |
747 | |
748 | if (count > 0) | |
c906108c SS |
749 | { |
750 | clear_proceed_status (); | |
751 | ||
752 | frame = get_current_frame (); | |
c5aa993b | 753 | if (!frame) /* Avoid coredump here. Why tho? */ |
8a3fe4f8 | 754 | error (_("No current frame")); |
aa0cd9c1 | 755 | step_frame_id = get_frame_id (frame); |
c906108c | 756 | |
c5aa993b | 757 | if (!single_inst) |
c906108c SS |
758 | { |
759 | find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end); | |
5fbbeb29 CF |
760 | |
761 | /* If we have no line info, switch to stepi mode. */ | |
762 | if (step_range_end == 0 && step_stop_if_no_debug) | |
763 | { | |
764 | step_range_start = step_range_end = 1; | |
765 | } | |
766 | else if (step_range_end == 0) | |
c906108c SS |
767 | { |
768 | char *name; | |
769 | if (find_pc_partial_function (stop_pc, &name, &step_range_start, | |
770 | &step_range_end) == 0) | |
8a3fe4f8 | 771 | error (_("Cannot find bounds of current function")); |
c906108c SS |
772 | |
773 | target_terminal_ours (); | |
a3f17187 | 774 | printf_filtered (_("\ |
c906108c | 775 | Single stepping until exit from function %s, \n\ |
a3f17187 | 776 | which has no line number information.\n"), name); |
c906108c SS |
777 | } |
778 | } | |
779 | else | |
780 | { | |
781 | /* Say we are stepping, but stop after one insn whatever it does. */ | |
782 | step_range_start = step_range_end = 1; | |
783 | if (!skip_subroutines) | |
784 | /* It is stepi. | |
785 | Don't step over function calls, not even to functions lacking | |
786 | line numbers. */ | |
5fbbeb29 | 787 | step_over_calls = STEP_OVER_NONE; |
c906108c SS |
788 | } |
789 | ||
790 | if (skip_subroutines) | |
5fbbeb29 | 791 | step_over_calls = STEP_OVER_ALL; |
c906108c SS |
792 | |
793 | step_multi = (count > 1); | |
c2d11a7d JM |
794 | arg1 = |
795 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
796 | arg2 = | |
797 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
798 | arg3 = | |
799 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
800 | arg1->next = arg2; | |
57e687d9 | 801 | arg1->data.integer = skip_subroutines; |
c2d11a7d | 802 | arg2->next = arg3; |
57e687d9 | 803 | arg2->data.integer = single_inst; |
c2d11a7d | 804 | arg3->next = NULL; |
57e687d9 | 805 | arg3->data.integer = count; |
c2d11a7d | 806 | add_intermediate_continuation (step_1_continuation, arg1); |
2acceee2 | 807 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); |
c906108c | 808 | } |
c906108c | 809 | } |
c2d11a7d | 810 | |
c906108c SS |
811 | \f |
812 | /* Continue program at specified address. */ | |
813 | ||
814 | static void | |
fba45db2 | 815 | jump_command (char *arg, int from_tty) |
c906108c | 816 | { |
52f0bd74 | 817 | CORE_ADDR addr; |
c906108c SS |
818 | struct symtabs_and_lines sals; |
819 | struct symtab_and_line sal; | |
820 | struct symbol *fn; | |
821 | struct symbol *sfn; | |
43ff13b4 | 822 | int async_exec = 0; |
c5aa993b | 823 | |
c906108c SS |
824 | ERROR_NO_INFERIOR; |
825 | ||
43ff13b4 JM |
826 | /* Find out whether we must run in the background. */ |
827 | if (arg != NULL) | |
828 | async_exec = strip_bg_char (&arg); | |
829 | ||
830 | /* If we must run in the background, but the target can't do it, | |
831 | error out. */ | |
362646f5 | 832 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 833 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
834 | |
835 | /* If we are not asked to run in the bg, then prepare to run in the | |
836 | foreground, synchronously. */ | |
362646f5 | 837 | if (!async_exec && target_can_async_p ()) |
c5aa993b | 838 | { |
43ff13b4 | 839 | /* Simulate synchronous execution */ |
6426a772 | 840 | async_disable_stdin (); |
43ff13b4 JM |
841 | } |
842 | ||
c906108c | 843 | if (!arg) |
e2e0b3e5 | 844 | error_no_arg (_("starting address")); |
c906108c SS |
845 | |
846 | sals = decode_line_spec_1 (arg, 1); | |
847 | if (sals.nelts != 1) | |
848 | { | |
8a3fe4f8 | 849 | error (_("Unreasonable jump request")); |
c906108c SS |
850 | } |
851 | ||
852 | sal = sals.sals[0]; | |
b8c9b27d | 853 | xfree (sals.sals); |
c906108c SS |
854 | |
855 | if (sal.symtab == 0 && sal.pc == 0) | |
8a3fe4f8 | 856 | error (_("No source file has been specified.")); |
c906108c | 857 | |
c5aa993b | 858 | resolve_sal_pc (&sal); /* May error out */ |
c906108c SS |
859 | |
860 | /* See if we are trying to jump to another function. */ | |
861 | fn = get_frame_function (get_current_frame ()); | |
862 | sfn = find_pc_function (sal.pc); | |
863 | if (fn != NULL && sfn != fn) | |
864 | { | |
865 | if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line, | |
de5ad195 | 866 | SYMBOL_PRINT_NAME (fn))) |
c906108c | 867 | { |
8a3fe4f8 | 868 | error (_("Not confirmed.")); |
c906108c SS |
869 | /* NOTREACHED */ |
870 | } | |
871 | } | |
872 | ||
c5aa993b | 873 | if (sfn != NULL) |
c906108c SS |
874 | { |
875 | fixup_symbol_section (sfn, 0); | |
c5aa993b | 876 | if (section_is_overlay (SYMBOL_BFD_SECTION (sfn)) && |
c906108c SS |
877 | !section_is_mapped (SYMBOL_BFD_SECTION (sfn))) |
878 | { | |
879 | if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? ")) | |
880 | { | |
8a3fe4f8 | 881 | error (_("Not confirmed.")); |
c906108c SS |
882 | /* NOTREACHED */ |
883 | } | |
884 | } | |
885 | } | |
886 | ||
c906108c SS |
887 | addr = sal.pc; |
888 | ||
889 | if (from_tty) | |
890 | { | |
a3f17187 | 891 | printf_filtered (_("Continuing at ")); |
c906108c SS |
892 | print_address_numeric (addr, 1, gdb_stdout); |
893 | printf_filtered (".\n"); | |
894 | } | |
895 | ||
896 | clear_proceed_status (); | |
897 | proceed (addr, TARGET_SIGNAL_0, 0); | |
898 | } | |
c906108c | 899 | \f |
c5aa993b | 900 | |
c906108c SS |
901 | /* Go to line or address in current procedure */ |
902 | static void | |
fba45db2 | 903 | go_command (char *line_no, int from_tty) |
c906108c | 904 | { |
c5aa993b | 905 | if (line_no == (char *) NULL || !*line_no) |
b83266a0 | 906 | printf_filtered (GO_USAGE); |
c906108c SS |
907 | else |
908 | { | |
b83266a0 SS |
909 | tbreak_command (line_no, from_tty); |
910 | jump_command (line_no, from_tty); | |
c906108c SS |
911 | } |
912 | } | |
c906108c | 913 | \f |
c5aa993b | 914 | |
c906108c SS |
915 | /* Continue program giving it specified signal. */ |
916 | ||
917 | static void | |
fba45db2 | 918 | signal_command (char *signum_exp, int from_tty) |
c906108c SS |
919 | { |
920 | enum target_signal oursig; | |
921 | ||
922 | dont_repeat (); /* Too dangerous. */ | |
923 | ERROR_NO_INFERIOR; | |
924 | ||
925 | if (!signum_exp) | |
e2e0b3e5 | 926 | error_no_arg (_("signal number")); |
c906108c SS |
927 | |
928 | /* It would be even slicker to make signal names be valid expressions, | |
929 | (the type could be "enum $signal" or some such), then the user could | |
930 | assign them to convenience variables. */ | |
931 | oursig = target_signal_from_name (signum_exp); | |
932 | ||
933 | if (oursig == TARGET_SIGNAL_UNKNOWN) | |
934 | { | |
935 | /* No, try numeric. */ | |
bb518678 | 936 | int num = parse_and_eval_long (signum_exp); |
c906108c SS |
937 | |
938 | if (num == 0) | |
939 | oursig = TARGET_SIGNAL_0; | |
940 | else | |
941 | oursig = target_signal_from_command (num); | |
942 | } | |
943 | ||
944 | if (from_tty) | |
945 | { | |
946 | if (oursig == TARGET_SIGNAL_0) | |
a3f17187 | 947 | printf_filtered (_("Continuing with no signal.\n")); |
c906108c | 948 | else |
a3f17187 | 949 | printf_filtered (_("Continuing with signal %s.\n"), |
c906108c SS |
950 | target_signal_to_name (oursig)); |
951 | } | |
952 | ||
953 | clear_proceed_status (); | |
954 | /* "signal 0" should not get stuck if we are stopped at a breakpoint. | |
955 | FIXME: Neither should "signal foo" but when I tried passing | |
956 | (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't | |
957 | tried to track down yet. */ | |
2acceee2 | 958 | proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0); |
c906108c SS |
959 | } |
960 | ||
c906108c SS |
961 | /* Proceed until we reach a different source line with pc greater than |
962 | our current one or exit the function. We skip calls in both cases. | |
963 | ||
964 | Note that eventually this command should probably be changed so | |
965 | that only source lines are printed out when we hit the breakpoint | |
966 | we set. This may involve changes to wait_for_inferior and the | |
967 | proceed status code. */ | |
968 | ||
c906108c | 969 | static void |
fba45db2 | 970 | until_next_command (int from_tty) |
c906108c SS |
971 | { |
972 | struct frame_info *frame; | |
973 | CORE_ADDR pc; | |
974 | struct symbol *func; | |
975 | struct symtab_and_line sal; | |
c5aa993b | 976 | |
c906108c SS |
977 | clear_proceed_status (); |
978 | ||
979 | frame = get_current_frame (); | |
980 | ||
981 | /* Step until either exited from this function or greater | |
982 | than the current line (if in symbolic section) or pc (if | |
983 | not). */ | |
984 | ||
985 | pc = read_pc (); | |
986 | func = find_pc_function (pc); | |
c5aa993b | 987 | |
c906108c SS |
988 | if (!func) |
989 | { | |
990 | struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc); | |
c5aa993b | 991 | |
c906108c | 992 | if (msymbol == NULL) |
8a3fe4f8 | 993 | error (_("Execution is not within a known function.")); |
c5aa993b | 994 | |
c906108c SS |
995 | step_range_start = SYMBOL_VALUE_ADDRESS (msymbol); |
996 | step_range_end = pc; | |
997 | } | |
998 | else | |
999 | { | |
1000 | sal = find_pc_line (pc, 0); | |
c5aa993b | 1001 | |
c906108c SS |
1002 | step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func)); |
1003 | step_range_end = sal.end; | |
1004 | } | |
c5aa993b | 1005 | |
5fbbeb29 | 1006 | step_over_calls = STEP_OVER_ALL; |
aa0cd9c1 | 1007 | step_frame_id = get_frame_id (frame); |
c906108c SS |
1008 | |
1009 | step_multi = 0; /* Only one call to proceed */ | |
c5aa993b | 1010 | |
2acceee2 | 1011 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1); |
c906108c SS |
1012 | } |
1013 | ||
c5aa993b | 1014 | static void |
fba45db2 | 1015 | until_command (char *arg, int from_tty) |
c906108c | 1016 | { |
43ff13b4 JM |
1017 | int async_exec = 0; |
1018 | ||
c906108c | 1019 | if (!target_has_execution) |
8a3fe4f8 | 1020 | error (_("The program is not running.")); |
43ff13b4 JM |
1021 | |
1022 | /* Find out whether we must run in the background. */ | |
1023 | if (arg != NULL) | |
1024 | async_exec = strip_bg_char (&arg); | |
1025 | ||
1026 | /* If we must run in the background, but the target can't do it, | |
1027 | error out. */ | |
362646f5 | 1028 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 1029 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
1030 | |
1031 | /* If we are not asked to run in the bg, then prepare to run in the | |
1032 | foreground, synchronously. */ | |
362646f5 | 1033 | if (!async_exec && target_can_async_p ()) |
c5aa993b | 1034 | { |
43ff13b4 | 1035 | /* Simulate synchronous execution */ |
6426a772 | 1036 | async_disable_stdin (); |
43ff13b4 JM |
1037 | } |
1038 | ||
c906108c | 1039 | if (arg) |
ae66c1fc | 1040 | until_break_command (arg, from_tty, 0); |
c906108c SS |
1041 | else |
1042 | until_next_command (from_tty); | |
1043 | } | |
ae66c1fc EZ |
1044 | |
1045 | static void | |
1046 | advance_command (char *arg, int from_tty) | |
1047 | { | |
1048 | int async_exec = 0; | |
1049 | ||
1050 | if (!target_has_execution) | |
8a3fe4f8 | 1051 | error (_("The program is not running.")); |
ae66c1fc EZ |
1052 | |
1053 | if (arg == NULL) | |
e2e0b3e5 | 1054 | error_no_arg (_("a location")); |
ae66c1fc EZ |
1055 | |
1056 | /* Find out whether we must run in the background. */ | |
1057 | if (arg != NULL) | |
1058 | async_exec = strip_bg_char (&arg); | |
1059 | ||
1060 | /* If we must run in the background, but the target can't do it, | |
1061 | error out. */ | |
362646f5 | 1062 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 1063 | error (_("Asynchronous execution not supported on this target.")); |
ae66c1fc EZ |
1064 | |
1065 | /* If we are not asked to run in the bg, then prepare to run in the | |
1066 | foreground, synchronously. */ | |
362646f5 | 1067 | if (!async_exec && target_can_async_p ()) |
ae66c1fc EZ |
1068 | { |
1069 | /* Simulate synchronous execution. */ | |
1070 | async_disable_stdin (); | |
1071 | } | |
1072 | ||
1073 | until_break_command (arg, from_tty, 1); | |
1074 | } | |
c906108c | 1075 | \f |
f941662f MK |
1076 | /* Print the result of a function at the end of a 'finish' command. */ |
1077 | ||
11cf8741 | 1078 | static void |
bb472c1e | 1079 | print_return_value (int struct_return, struct type *value_type) |
11cf8741 | 1080 | { |
31db7b6c | 1081 | struct gdbarch *gdbarch = current_gdbarch; |
bb472c1e MK |
1082 | struct cleanup *old_chain; |
1083 | struct ui_stream *stb; | |
44e5158b AC |
1084 | struct value *value; |
1085 | ||
1086 | gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID); | |
11cf8741 | 1087 | |
92ad9cd9 AC |
1088 | /* FIXME: 2003-09-27: When returning from a nested inferior function |
1089 | call, it's possible (with no help from the architecture vector) | |
1090 | to locate and return/print a "struct return" value. This is just | |
1091 | a more complicated case of what is already being done in in the | |
1092 | inferior function call code. In fact, when inferior function | |
1093 | calls are made async, this will likely be made the norm. */ | |
31db7b6c | 1094 | |
750eb019 | 1095 | switch (gdbarch_return_value (gdbarch, value_type, NULL, NULL, NULL)) |
44e5158b | 1096 | { |
750eb019 AC |
1097 | case RETURN_VALUE_REGISTER_CONVENTION: |
1098 | case RETURN_VALUE_ABI_RETURNS_ADDRESS: | |
44e5158b | 1099 | value = allocate_value (value_type); |
750eb019 AC |
1100 | CHECK_TYPEDEF (value_type); |
1101 | gdbarch_return_value (current_gdbarch, value_type, stop_registers, | |
990a07ab | 1102 | value_contents_raw (value), NULL); |
750eb019 AC |
1103 | break; |
1104 | case RETURN_VALUE_STRUCT_CONVENTION: | |
1105 | value = NULL; | |
1106 | break; | |
1107 | default: | |
e2e0b3e5 | 1108 | internal_error (__FILE__, __LINE__, _("bad switch")); |
44e5158b | 1109 | } |
bb472c1e | 1110 | |
31db7b6c MK |
1111 | if (value) |
1112 | { | |
1113 | /* Print it. */ | |
1114 | stb = ui_out_stream_new (uiout); | |
1115 | old_chain = make_cleanup_ui_out_stream_delete (stb); | |
1116 | ui_out_text (uiout, "Value returned is "); | |
1117 | ui_out_field_fmt (uiout, "gdb-result-var", "$%d", | |
1118 | record_latest_value (value)); | |
1119 | ui_out_text (uiout, " = "); | |
1120 | value_print (value, stb->stream, 0, Val_no_prettyprint); | |
1121 | ui_out_field_stream (uiout, "return-value", stb); | |
1122 | ui_out_text (uiout, "\n"); | |
1123 | do_cleanups (old_chain); | |
1124 | } | |
1125 | else | |
1126 | { | |
1127 | ui_out_text (uiout, "Value returned has type: "); | |
1128 | ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type)); | |
1129 | ui_out_text (uiout, "."); | |
1130 | ui_out_text (uiout, " Cannot determine contents\n"); | |
1131 | } | |
11cf8741 JM |
1132 | } |
1133 | ||
43ff13b4 | 1134 | /* Stuff that needs to be done by the finish command after the target |
f941662f MK |
1135 | has stopped. In asynchronous mode, we wait for the target to stop |
1136 | in the call to poll or select in the event loop, so it is | |
1137 | impossible to do all the stuff as part of the finish_command | |
1138 | function itself. The only chance we have to complete this command | |
1139 | is in fetch_inferior_event, which is called by the event loop as | |
1140 | soon as it detects that the target has stopped. This function is | |
1141 | called via the cmd_continuation pointer. */ | |
1142 | ||
1143 | static void | |
fba45db2 | 1144 | finish_command_continuation (struct continuation_arg *arg) |
43ff13b4 | 1145 | { |
52f0bd74 | 1146 | struct symbol *function; |
43ff13b4 | 1147 | struct breakpoint *breakpoint; |
0d06e24b | 1148 | struct cleanup *cleanups; |
c5aa993b | 1149 | |
57e687d9 | 1150 | breakpoint = (struct breakpoint *) arg->data.pointer; |
f941662f MK |
1151 | function = (struct symbol *) arg->next->data.pointer; |
1152 | cleanups = (struct cleanup *) arg->next->next->data.pointer; | |
43ff13b4 | 1153 | |
c5aa993b | 1154 | if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL |
f941662f | 1155 | && function != NULL) |
43ff13b4 JM |
1156 | { |
1157 | struct type *value_type; | |
43ff13b4 | 1158 | int struct_return; |
f941662f | 1159 | int gcc_compiled; |
43ff13b4 JM |
1160 | |
1161 | value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function)); | |
1162 | if (!value_type) | |
8e65ff28 | 1163 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 1164 | _("finish_command: function has no target type")); |
c5aa993b | 1165 | |
43ff13b4 JM |
1166 | if (TYPE_CODE (value_type) == TYPE_CODE_VOID) |
1167 | { | |
0d06e24b | 1168 | do_exec_cleanups (cleanups); |
43ff13b4 JM |
1169 | return; |
1170 | } | |
1171 | ||
f941662f MK |
1172 | CHECK_TYPEDEF (value_type); |
1173 | gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)); | |
1174 | struct_return = using_struct_return (value_type, gcc_compiled); | |
43ff13b4 | 1175 | |
11cf8741 | 1176 | print_return_value (struct_return, value_type); |
43ff13b4 | 1177 | } |
f941662f | 1178 | |
0d06e24b | 1179 | do_exec_cleanups (cleanups); |
43ff13b4 JM |
1180 | } |
1181 | ||
f941662f MK |
1182 | /* "finish": Set a temporary breakpoint at the place the selected |
1183 | frame will return to, then continue. */ | |
c906108c SS |
1184 | |
1185 | static void | |
fba45db2 | 1186 | finish_command (char *arg, int from_tty) |
c906108c SS |
1187 | { |
1188 | struct symtab_and_line sal; | |
52f0bd74 AC |
1189 | struct frame_info *frame; |
1190 | struct symbol *function; | |
c906108c SS |
1191 | struct breakpoint *breakpoint; |
1192 | struct cleanup *old_chain; | |
0d06e24b | 1193 | struct continuation_arg *arg1, *arg2, *arg3; |
43ff13b4 JM |
1194 | |
1195 | int async_exec = 0; | |
1196 | ||
f941662f | 1197 | /* Find out whether we must run in the background. */ |
43ff13b4 JM |
1198 | if (arg != NULL) |
1199 | async_exec = strip_bg_char (&arg); | |
1200 | ||
1201 | /* If we must run in the background, but the target can't do it, | |
f941662f | 1202 | error out. */ |
362646f5 | 1203 | if (async_exec && !target_can_async_p ()) |
8a3fe4f8 | 1204 | error (_("Asynchronous execution not supported on this target.")); |
43ff13b4 JM |
1205 | |
1206 | /* If we are not asked to run in the bg, then prepare to run in the | |
f941662f | 1207 | foreground, synchronously. */ |
362646f5 | 1208 | if (!async_exec && target_can_async_p ()) |
c5aa993b | 1209 | { |
f941662f | 1210 | /* Simulate synchronous execution. */ |
6426a772 | 1211 | async_disable_stdin (); |
43ff13b4 | 1212 | } |
c906108c SS |
1213 | |
1214 | if (arg) | |
8a3fe4f8 | 1215 | error (_("The \"finish\" command does not take any arguments.")); |
c906108c | 1216 | if (!target_has_execution) |
8a3fe4f8 | 1217 | error (_("The program is not running.")); |
6e7f8b9c | 1218 | if (deprecated_selected_frame == NULL) |
8a3fe4f8 | 1219 | error (_("No selected frame.")); |
c906108c | 1220 | |
6e7f8b9c | 1221 | frame = get_prev_frame (deprecated_selected_frame); |
c906108c | 1222 | if (frame == 0) |
8a3fe4f8 | 1223 | error (_("\"finish\" not meaningful in the outermost frame.")); |
c906108c SS |
1224 | |
1225 | clear_proceed_status (); | |
1226 | ||
bdd78e62 AC |
1227 | sal = find_pc_line (get_frame_pc (frame), 0); |
1228 | sal.pc = get_frame_pc (frame); | |
c906108c | 1229 | |
818dd999 | 1230 | breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish); |
c906108c | 1231 | |
362646f5 | 1232 | if (!target_can_async_p ()) |
4d6140d9 | 1233 | old_chain = make_cleanup_delete_breakpoint (breakpoint); |
43ff13b4 | 1234 | else |
4d6140d9 | 1235 | old_chain = make_exec_cleanup_delete_breakpoint (breakpoint); |
c906108c SS |
1236 | |
1237 | /* Find the function we will return from. */ | |
1238 | ||
bdd78e62 | 1239 | function = find_pc_function (get_frame_pc (deprecated_selected_frame)); |
c906108c | 1240 | |
f941662f MK |
1241 | /* Print info on the selected frame, including level number but not |
1242 | source. */ | |
c906108c SS |
1243 | if (from_tty) |
1244 | { | |
a3f17187 | 1245 | printf_filtered (_("Run till exit from ")); |
b04f3ab4 | 1246 | print_stack_frame (get_selected_frame (NULL), 1, LOCATION); |
c906108c SS |
1247 | } |
1248 | ||
43ff13b4 JM |
1249 | /* If running asynchronously and the target support asynchronous |
1250 | execution, set things up for the rest of the finish command to be | |
1251 | completed later on, when gdb has detected that the target has | |
f941662f | 1252 | stopped, in fetch_inferior_event. */ |
362646f5 | 1253 | if (target_can_async_p ()) |
43ff13b4 | 1254 | { |
c5aa993b | 1255 | arg1 = |
43ff13b4 | 1256 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
c5aa993b | 1257 | arg2 = |
43ff13b4 | 1258 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); |
0d06e24b JM |
1259 | arg3 = |
1260 | (struct continuation_arg *) xmalloc (sizeof (struct continuation_arg)); | |
43ff13b4 | 1261 | arg1->next = arg2; |
0d06e24b JM |
1262 | arg2->next = arg3; |
1263 | arg3->next = NULL; | |
57e687d9 MS |
1264 | arg1->data.pointer = breakpoint; |
1265 | arg2->data.pointer = function; | |
1266 | arg3->data.pointer = old_chain; | |
43ff13b4 JM |
1267 | add_continuation (finish_command_continuation, arg1); |
1268 | } | |
1269 | ||
f941662f | 1270 | proceed_to_finish = 1; /* We want stop_registers, please... */ |
2acceee2 | 1271 | proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0); |
c906108c | 1272 | |
43ff13b4 | 1273 | /* Do this only if not running asynchronously or if the target |
f941662f MK |
1274 | cannot do async execution. Otherwise, complete this command when |
1275 | the target actually stops, in fetch_inferior_event. */ | |
362646f5 | 1276 | if (!target_can_async_p ()) |
c5aa993b | 1277 | { |
f941662f | 1278 | /* Did we stop at our breakpoint? */ |
c5aa993b | 1279 | if (bpstat_find_breakpoint (stop_bpstat, breakpoint) != NULL |
f941662f | 1280 | && function != NULL) |
c5aa993b JM |
1281 | { |
1282 | struct type *value_type; | |
c5aa993b | 1283 | int struct_return; |
f941662f | 1284 | int gcc_compiled; |
c5aa993b JM |
1285 | |
1286 | value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function)); | |
1287 | if (!value_type) | |
8e65ff28 | 1288 | internal_error (__FILE__, __LINE__, |
e2e0b3e5 | 1289 | _("finish_command: function has no target type")); |
c5aa993b | 1290 | |
f941662f | 1291 | /* FIXME: Shouldn't we do the cleanups before returning? */ |
c5aa993b JM |
1292 | if (TYPE_CODE (value_type) == TYPE_CODE_VOID) |
1293 | return; | |
1294 | ||
f941662f MK |
1295 | CHECK_TYPEDEF (value_type); |
1296 | gcc_compiled = BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function)); | |
1297 | struct_return = using_struct_return (value_type, gcc_compiled); | |
c5aa993b | 1298 | |
11cf8741 | 1299 | print_return_value (struct_return, value_type); |
c5aa993b | 1300 | } |
f941662f | 1301 | |
c5aa993b JM |
1302 | do_cleanups (old_chain); |
1303 | } | |
c906108c SS |
1304 | } |
1305 | \f | |
f941662f | 1306 | |
c906108c | 1307 | static void |
fba45db2 | 1308 | program_info (char *args, int from_tty) |
c906108c SS |
1309 | { |
1310 | bpstat bs = stop_bpstat; | |
1311 | int num = bpstat_num (&bs); | |
c5aa993b | 1312 | |
c906108c SS |
1313 | if (!target_has_execution) |
1314 | { | |
a3f17187 | 1315 | printf_filtered (_("The program being debugged is not being run.\n")); |
c906108c SS |
1316 | return; |
1317 | } | |
1318 | ||
1319 | target_files_info (); | |
a3f17187 | 1320 | printf_filtered (_("Program stopped at %s.\n"), |
bb599908 | 1321 | hex_string ((unsigned long) stop_pc)); |
c906108c | 1322 | if (stop_step) |
a3f17187 | 1323 | printf_filtered (_("It stopped after being stepped.\n")); |
c906108c SS |
1324 | else if (num != 0) |
1325 | { | |
1326 | /* There may be several breakpoints in the same place, so this | |
c5aa993b | 1327 | isn't as strange as it seems. */ |
c906108c SS |
1328 | while (num != 0) |
1329 | { | |
1330 | if (num < 0) | |
1331 | { | |
a3f17187 AC |
1332 | printf_filtered (_("\ |
1333 | It stopped at a breakpoint that has since been deleted.\n")); | |
c906108c SS |
1334 | } |
1335 | else | |
a3f17187 | 1336 | printf_filtered (_("It stopped at breakpoint %d.\n"), num); |
c906108c SS |
1337 | num = bpstat_num (&bs); |
1338 | } | |
1339 | } | |
1340 | else if (stop_signal != TARGET_SIGNAL_0) | |
1341 | { | |
a3f17187 | 1342 | printf_filtered (_("It stopped with signal %s, %s.\n"), |
c906108c SS |
1343 | target_signal_to_name (stop_signal), |
1344 | target_signal_to_string (stop_signal)); | |
1345 | } | |
1346 | ||
1347 | if (!from_tty) | |
1348 | { | |
a3f17187 AC |
1349 | printf_filtered (_("\ |
1350 | Type \"info stack\" or \"info registers\" for more information.\n")); | |
c906108c SS |
1351 | } |
1352 | } | |
1353 | \f | |
1354 | static void | |
fba45db2 | 1355 | environment_info (char *var, int from_tty) |
c906108c SS |
1356 | { |
1357 | if (var) | |
1358 | { | |
aa1ee363 | 1359 | char *val = get_in_environ (inferior_environ, var); |
c906108c SS |
1360 | if (val) |
1361 | { | |
1362 | puts_filtered (var); | |
1363 | puts_filtered (" = "); | |
1364 | puts_filtered (val); | |
1365 | puts_filtered ("\n"); | |
1366 | } | |
1367 | else | |
1368 | { | |
1369 | puts_filtered ("Environment variable \""); | |
1370 | puts_filtered (var); | |
1371 | puts_filtered ("\" not defined.\n"); | |
1372 | } | |
1373 | } | |
1374 | else | |
1375 | { | |
aa1ee363 | 1376 | char **vector = environ_vector (inferior_environ); |
c906108c SS |
1377 | while (*vector) |
1378 | { | |
1379 | puts_filtered (*vector++); | |
1380 | puts_filtered ("\n"); | |
1381 | } | |
1382 | } | |
1383 | } | |
1384 | ||
1385 | static void | |
fba45db2 | 1386 | set_environment_command (char *arg, int from_tty) |
c906108c | 1387 | { |
52f0bd74 | 1388 | char *p, *val, *var; |
c906108c SS |
1389 | int nullset = 0; |
1390 | ||
1391 | if (arg == 0) | |
e2e0b3e5 | 1392 | error_no_arg (_("environment variable and value")); |
c906108c SS |
1393 | |
1394 | /* Find seperation between variable name and value */ | |
1395 | p = (char *) strchr (arg, '='); | |
1396 | val = (char *) strchr (arg, ' '); | |
1397 | ||
1398 | if (p != 0 && val != 0) | |
1399 | { | |
1400 | /* We have both a space and an equals. If the space is before the | |
c5aa993b JM |
1401 | equals, walk forward over the spaces til we see a nonspace |
1402 | (possibly the equals). */ | |
c906108c SS |
1403 | if (p > val) |
1404 | while (*val == ' ') | |
1405 | val++; | |
1406 | ||
1407 | /* Now if the = is after the char following the spaces, | |
c5aa993b | 1408 | take the char following the spaces. */ |
c906108c SS |
1409 | if (p > val) |
1410 | p = val - 1; | |
1411 | } | |
1412 | else if (val != 0 && p == 0) | |
1413 | p = val; | |
1414 | ||
1415 | if (p == arg) | |
e2e0b3e5 | 1416 | error_no_arg (_("environment variable to set")); |
c906108c SS |
1417 | |
1418 | if (p == 0 || p[1] == 0) | |
1419 | { | |
1420 | nullset = 1; | |
1421 | if (p == 0) | |
1422 | p = arg + strlen (arg); /* So that savestring below will work */ | |
1423 | } | |
1424 | else | |
1425 | { | |
1426 | /* Not setting variable value to null */ | |
1427 | val = p + 1; | |
1428 | while (*val == ' ' || *val == '\t') | |
1429 | val++; | |
1430 | } | |
1431 | ||
c5aa993b JM |
1432 | while (p != arg && (p[-1] == ' ' || p[-1] == '\t')) |
1433 | p--; | |
c906108c SS |
1434 | |
1435 | var = savestring (arg, p - arg); | |
1436 | if (nullset) | |
1437 | { | |
a3f17187 AC |
1438 | printf_filtered (_("\ |
1439 | Setting environment variable \"%s\" to null value.\n"), | |
1440 | var); | |
c906108c SS |
1441 | set_in_environ (inferior_environ, var, ""); |
1442 | } | |
1443 | else | |
1444 | set_in_environ (inferior_environ, var, val); | |
b8c9b27d | 1445 | xfree (var); |
c906108c SS |
1446 | } |
1447 | ||
1448 | static void | |
fba45db2 | 1449 | unset_environment_command (char *var, int from_tty) |
c906108c SS |
1450 | { |
1451 | if (var == 0) | |
1452 | { | |
1453 | /* If there is no argument, delete all environment variables. | |
c5aa993b | 1454 | Ask for confirmation if reading from the terminal. */ |
e2e0b3e5 | 1455 | if (!from_tty || query (_("Delete all environment variables? "))) |
c906108c SS |
1456 | { |
1457 | free_environ (inferior_environ); | |
1458 | inferior_environ = make_environ (); | |
1459 | } | |
1460 | } | |
1461 | else | |
1462 | unset_in_environ (inferior_environ, var); | |
1463 | } | |
1464 | ||
1465 | /* Handle the execution path (PATH variable) */ | |
1466 | ||
1467 | static const char path_var_name[] = "PATH"; | |
1468 | ||
c906108c | 1469 | static void |
fba45db2 | 1470 | path_info (char *args, int from_tty) |
c906108c SS |
1471 | { |
1472 | puts_filtered ("Executable and object file path: "); | |
1473 | puts_filtered (get_in_environ (inferior_environ, path_var_name)); | |
1474 | puts_filtered ("\n"); | |
1475 | } | |
1476 | ||
1477 | /* Add zero or more directories to the front of the execution path. */ | |
1478 | ||
1479 | static void | |
fba45db2 | 1480 | path_command (char *dirname, int from_tty) |
c906108c SS |
1481 | { |
1482 | char *exec_path; | |
1483 | char *env; | |
1484 | dont_repeat (); | |
1485 | env = get_in_environ (inferior_environ, path_var_name); | |
1486 | /* Can be null if path is not set */ | |
1487 | if (!env) | |
1488 | env = ""; | |
4fcf66da | 1489 | exec_path = xstrdup (env); |
c906108c SS |
1490 | mod_path (dirname, &exec_path); |
1491 | set_in_environ (inferior_environ, path_var_name, exec_path); | |
b8c9b27d | 1492 | xfree (exec_path); |
c906108c | 1493 | if (from_tty) |
c5aa993b | 1494 | path_info ((char *) NULL, from_tty); |
c906108c | 1495 | } |
c906108c | 1496 | \f |
c5aa993b | 1497 | |
4782dc19 | 1498 | /* Print out the machine register regnum. If regnum is -1, print all |
0ab7a791 AC |
1499 | registers (print_all == 1) or all non-float and non-vector |
1500 | registers (print_all == 0). | |
c906108c SS |
1501 | |
1502 | For most machines, having all_registers_info() print the | |
0ab7a791 AC |
1503 | register(s) one per line is good enough. If a different format is |
1504 | required, (eg, for MIPS or Pyramid 90x, which both have lots of | |
1505 | regs), or there is an existing convention for showing all the | |
1506 | registers, define the architecture method PRINT_REGISTERS_INFO to | |
1507 | provide that format. */ | |
c906108c | 1508 | |
666e11c5 | 1509 | void |
0ab7a791 AC |
1510 | default_print_registers_info (struct gdbarch *gdbarch, |
1511 | struct ui_file *file, | |
1512 | struct frame_info *frame, | |
1513 | int regnum, int print_all) | |
c906108c | 1514 | { |
0ab7a791 AC |
1515 | int i; |
1516 | const int numregs = NUM_REGS + NUM_PSEUDO_REGS; | |
9730f241 | 1517 | char buffer[MAX_REGISTER_SIZE]; |
0ab7a791 | 1518 | |
c906108c SS |
1519 | for (i = 0; i < numregs; i++) |
1520 | { | |
4782dc19 AC |
1521 | /* Decide between printing all regs, non-float / vector regs, or |
1522 | specific reg. */ | |
c5aa993b JM |
1523 | if (regnum == -1) |
1524 | { | |
f9418c0f | 1525 | if (print_all) |
4782dc19 | 1526 | { |
f9418c0f | 1527 | if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup)) |
4782dc19 | 1528 | continue; |
f9418c0f AC |
1529 | } |
1530 | else | |
1531 | { | |
1532 | if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup)) | |
4782dc19 AC |
1533 | continue; |
1534 | } | |
c5aa993b JM |
1535 | } |
1536 | else | |
1537 | { | |
1538 | if (i != regnum) | |
1539 | continue; | |
1540 | } | |
c906108c SS |
1541 | |
1542 | /* If the register name is empty, it is undefined for this | |
c5aa993b | 1543 | processor, so don't display anything. */ |
c906108c SS |
1544 | if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0') |
1545 | continue; | |
1546 | ||
0ab7a791 AC |
1547 | fputs_filtered (REGISTER_NAME (i), file); |
1548 | print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file); | |
c906108c SS |
1549 | |
1550 | /* Get the data in raw format. */ | |
9730f241 | 1551 | if (! frame_register_read (frame, i, buffer)) |
c906108c | 1552 | { |
0ab7a791 | 1553 | fprintf_filtered (file, "*value not available*\n"); |
c906108c SS |
1554 | continue; |
1555 | } | |
1556 | ||
0ab7a791 AC |
1557 | /* If virtual format is floating, print it that way, and in raw |
1558 | hex. */ | |
7b83296f | 1559 | if (TYPE_CODE (register_type (current_gdbarch, i)) == TYPE_CODE_FLT) |
c906108c | 1560 | { |
0ab7a791 | 1561 | int j; |
c906108c | 1562 | |
9730f241 | 1563 | val_print (register_type (current_gdbarch, i), buffer, 0, 0, |
0ab7a791 | 1564 | file, 0, 1, 0, Val_pretty_default); |
c906108c | 1565 | |
0ab7a791 | 1566 | fprintf_filtered (file, "\t(raw 0x"); |
3acba339 | 1567 | for (j = 0; j < register_size (current_gdbarch, i); j++) |
c906108c | 1568 | { |
0ab7a791 AC |
1569 | int idx; |
1570 | if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG) | |
1571 | idx = j; | |
1572 | else | |
3acba339 | 1573 | idx = register_size (current_gdbarch, i) - 1 - j; |
9730f241 | 1574 | fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]); |
c906108c | 1575 | } |
0ab7a791 | 1576 | fprintf_filtered (file, ")"); |
c906108c | 1577 | } |
c906108c SS |
1578 | else |
1579 | { | |
ab4327e0 | 1580 | /* Print the register in hex. */ |
9730f241 | 1581 | val_print (register_type (current_gdbarch, i), buffer, 0, 0, |
9d84ac84 | 1582 | file, 'x', 1, 0, Val_pretty_default); |
ab4327e0 EZ |
1583 | /* If not a vector register, print it also according to its |
1584 | natural format. */ | |
7b83296f | 1585 | if (TYPE_VECTOR (register_type (current_gdbarch, i)) == 0) |
ab4327e0 | 1586 | { |
9d84ac84 | 1587 | fprintf_filtered (file, "\t"); |
9730f241 | 1588 | val_print (register_type (current_gdbarch, i), buffer, 0, 0, |
9d84ac84 | 1589 | file, 0, 1, 0, Val_pretty_default); |
ab4327e0 | 1590 | } |
c906108c SS |
1591 | } |
1592 | ||
0ab7a791 | 1593 | fprintf_filtered (file, "\n"); |
c906108c SS |
1594 | } |
1595 | } | |
c906108c | 1596 | |
c906108c | 1597 | void |
fba45db2 | 1598 | registers_info (char *addr_exp, int fpregs) |
c906108c SS |
1599 | { |
1600 | int regnum, numregs; | |
52f0bd74 | 1601 | char *end; |
c906108c SS |
1602 | |
1603 | if (!target_has_registers) | |
8a3fe4f8 | 1604 | error (_("The program has no registers now.")); |
6e7f8b9c | 1605 | if (deprecated_selected_frame == NULL) |
8a3fe4f8 | 1606 | error (_("No selected frame.")); |
c906108c SS |
1607 | |
1608 | if (!addr_exp) | |
1609 | { | |
0ab7a791 | 1610 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, |
6e7f8b9c | 1611 | deprecated_selected_frame, -1, fpregs); |
c906108c SS |
1612 | return; |
1613 | } | |
1614 | ||
f9418c0f | 1615 | while (*addr_exp != '\0') |
c5aa993b | 1616 | { |
f9418c0f AC |
1617 | char *start; |
1618 | const char *end; | |
c906108c | 1619 | |
f9418c0f AC |
1620 | /* Keep skipping leading white space. */ |
1621 | if (isspace ((*addr_exp))) | |
1622 | { | |
1623 | addr_exp++; | |
1624 | continue; | |
1625 | } | |
c906108c | 1626 | |
f9418c0f AC |
1627 | /* Discard any leading ``$''. Check that there is something |
1628 | resembling a register following it. */ | |
1629 | if (addr_exp[0] == '$') | |
1630 | addr_exp++; | |
1631 | if (isspace ((*addr_exp)) || (*addr_exp) == '\0') | |
8a3fe4f8 | 1632 | error (_("Missing register name")); |
c906108c | 1633 | |
f9418c0f AC |
1634 | /* Find the start/end of this register name/num/group. */ |
1635 | start = addr_exp; | |
1636 | while ((*addr_exp) != '\0' && !isspace ((*addr_exp))) | |
1637 | addr_exp++; | |
1638 | end = addr_exp; | |
1639 | ||
1640 | /* Figure out what we've found and display it. */ | |
1641 | ||
1642 | /* A register name? */ | |
1643 | { | |
eb8bc282 AC |
1644 | int regnum = frame_map_name_to_regnum (deprecated_selected_frame, |
1645 | start, end - start); | |
f9418c0f AC |
1646 | if (regnum >= 0) |
1647 | { | |
1648 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, | |
6e7f8b9c | 1649 | deprecated_selected_frame, regnum, fpregs); |
f9418c0f AC |
1650 | continue; |
1651 | } | |
1652 | } | |
1653 | ||
1654 | /* A register number? (how portable is this one?). */ | |
1655 | { | |
1656 | char *endptr; | |
1657 | int regnum = strtol (start, &endptr, 0); | |
1658 | if (endptr == end | |
1659 | && regnum >= 0 | |
1660 | && regnum < NUM_REGS + NUM_PSEUDO_REGS) | |
1661 | { | |
1662 | gdbarch_print_registers_info (current_gdbarch, gdb_stdout, | |
6e7f8b9c | 1663 | deprecated_selected_frame, regnum, fpregs); |
f9418c0f AC |
1664 | continue; |
1665 | } | |
1666 | } | |
1667 | ||
1668 | /* A register group? */ | |
1669 | { | |
6c7d17ba AC |
1670 | struct reggroup *group; |
1671 | for (group = reggroup_next (current_gdbarch, NULL); | |
1672 | group != NULL; | |
1673 | group = reggroup_next (current_gdbarch, group)) | |
f9418c0f AC |
1674 | { |
1675 | /* Don't bother with a length check. Should the user | |
1676 | enter a short register group name, go with the first | |
1677 | group that matches. */ | |
6c7d17ba | 1678 | if (strncmp (start, reggroup_name (group), end - start) == 0) |
f9418c0f AC |
1679 | break; |
1680 | } | |
6c7d17ba | 1681 | if (group != NULL) |
f9418c0f AC |
1682 | { |
1683 | int regnum; | |
1684 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) | |
1685 | { | |
1686 | if (gdbarch_register_reggroup_p (current_gdbarch, regnum, | |
6c7d17ba | 1687 | group)) |
f9418c0f | 1688 | gdbarch_print_registers_info (current_gdbarch, |
6e7f8b9c | 1689 | gdb_stdout, deprecated_selected_frame, |
f9418c0f AC |
1690 | regnum, fpregs); |
1691 | } | |
1692 | continue; | |
1693 | } | |
1694 | } | |
c906108c | 1695 | |
f9418c0f | 1696 | /* Nothing matched. */ |
8a3fe4f8 | 1697 | error (_("Invalid register `%.*s'"), (int) (end - start), start); |
c5aa993b | 1698 | } |
c906108c SS |
1699 | } |
1700 | ||
1701 | void | |
fba45db2 | 1702 | all_registers_info (char *addr_exp, int from_tty) |
c906108c SS |
1703 | { |
1704 | registers_info (addr_exp, 1); | |
1705 | } | |
1706 | ||
a58dd373 | 1707 | static void |
fba45db2 | 1708 | nofp_registers_info (char *addr_exp, int from_tty) |
c906108c SS |
1709 | { |
1710 | registers_info (addr_exp, 0); | |
1711 | } | |
e76f1f2e AC |
1712 | |
1713 | static void | |
1714 | print_vector_info (struct gdbarch *gdbarch, struct ui_file *file, | |
1715 | struct frame_info *frame, const char *args) | |
1716 | { | |
e71ecd70 | 1717 | if (!target_has_registers) |
8a3fe4f8 | 1718 | error (_("The program has no registers now.")); |
6e7f8b9c | 1719 | if (deprecated_selected_frame == NULL) |
8a3fe4f8 | 1720 | error (_("No selected frame.")); |
e71ecd70 | 1721 | |
e76f1f2e AC |
1722 | if (gdbarch_print_vector_info_p (gdbarch)) |
1723 | gdbarch_print_vector_info (gdbarch, file, frame, args); | |
1724 | else | |
1725 | { | |
1726 | int regnum; | |
1727 | int printed_something = 0; | |
ab4327e0 | 1728 | |
e76f1f2e AC |
1729 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) |
1730 | { | |
f9418c0f | 1731 | if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup)) |
e76f1f2e AC |
1732 | { |
1733 | printed_something = 1; | |
e76f1f2e | 1734 | gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1); |
e76f1f2e AC |
1735 | } |
1736 | } | |
1737 | if (!printed_something) | |
1738 | fprintf_filtered (file, "No vector information\n"); | |
1739 | } | |
1740 | } | |
1741 | ||
1742 | static void | |
1743 | vector_info (char *args, int from_tty) | |
1744 | { | |
6e7f8b9c | 1745 | print_vector_info (current_gdbarch, gdb_stdout, deprecated_selected_frame, args); |
e76f1f2e | 1746 | } |
c906108c | 1747 | \f |
c5aa993b | 1748 | |
c906108c SS |
1749 | /* |
1750 | * TODO: | |
1751 | * Should save/restore the tty state since it might be that the | |
1752 | * program to be debugged was started on this tty and it wants | |
1753 | * the tty in some state other than what we want. If it's running | |
1754 | * on another terminal or without a terminal, then saving and | |
1755 | * restoring the tty state is a harmless no-op. | |
1756 | * This only needs to be done if we are attaching to a process. | |
1757 | */ | |
1758 | ||
1759 | /* | |
1760 | attach_command -- | |
1761 | takes a program started up outside of gdb and ``attaches'' to it. | |
1762 | This stops it cold in its tracks and allows us to start debugging it. | |
1763 | and wait for the trace-trap that results from attaching. */ | |
1764 | ||
1765 | void | |
fba45db2 | 1766 | attach_command (char *args, int from_tty) |
c906108c | 1767 | { |
c5aa993b JM |
1768 | char *exec_file; |
1769 | char *full_exec_path = NULL; | |
c906108c | 1770 | |
c5aa993b | 1771 | dont_repeat (); /* Not for the faint of heart */ |
c906108c SS |
1772 | |
1773 | if (target_has_execution) | |
1774 | { | |
1775 | if (query ("A program is being debugged already. Kill it? ")) | |
1776 | target_kill (); | |
1777 | else | |
8a3fe4f8 | 1778 | error (_("Not killed.")); |
c906108c SS |
1779 | } |
1780 | ||
4bcff7eb CV |
1781 | /* Clear out solib state. Otherwise the solib state of the previous |
1782 | inferior might have survived and is entirely wrong for the new | |
1783 | target. This has been observed on Linux using glibc 2.3. How to | |
1784 | reproduce: | |
1785 | ||
1786 | bash$ ./foo& | |
1787 | [1] 4711 | |
1788 | bash$ ./foo& | |
1789 | [1] 4712 | |
1790 | bash$ gdb ./foo | |
1791 | [...] | |
1792 | (gdb) attach 4711 | |
1793 | (gdb) detach | |
1794 | (gdb) attach 4712 | |
1795 | Cannot access memory at address 0xdeadbeef | |
1796 | */ | |
1797 | #ifdef CLEAR_SOLIB | |
1798 | CLEAR_SOLIB (); | |
1799 | #endif | |
1800 | ||
c906108c SS |
1801 | target_attach (args, from_tty); |
1802 | ||
1803 | /* Set up the "saved terminal modes" of the inferior | |
1804 | based on what modes we are starting it with. */ | |
1805 | target_terminal_init (); | |
1806 | ||
c906108c SS |
1807 | /* Set up execution context to know that we should return from |
1808 | wait_for_inferior as soon as the target reports a stop. */ | |
1809 | init_wait_for_inferior (); | |
1810 | clear_proceed_status (); | |
c906108c SS |
1811 | |
1812 | /* No traps are generated when attaching to inferior under Mach 3 | |
1813 | or GNU hurd. */ | |
1814 | #ifndef ATTACH_NO_WAIT | |
c54cfec8 EZ |
1815 | /* Careful here. See comments in inferior.h. Basically some OSes |
1816 | don't ignore SIGSTOPs on continue requests anymore. We need a | |
1817 | way for handle_inferior_event to reset the stop_signal variable | |
1818 | after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */ | |
c0236d92 | 1819 | stop_soon = STOP_QUIETLY_NO_SIGSTOP; |
c906108c | 1820 | wait_for_inferior (); |
c0236d92 | 1821 | stop_soon = NO_STOP_QUIETLY; |
c906108c SS |
1822 | #endif |
1823 | ||
1824 | /* | |
1825 | * If no exec file is yet known, try to determine it from the | |
1826 | * process itself. | |
1827 | */ | |
1828 | exec_file = (char *) get_exec_file (0); | |
c5aa993b JM |
1829 | if (!exec_file) |
1830 | { | |
39f77062 | 1831 | exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid)); |
c5aa993b JM |
1832 | if (exec_file) |
1833 | { | |
1834 | /* It's possible we don't have a full path, but rather just a | |
1835 | filename. Some targets, such as HP-UX, don't provide the | |
1836 | full path, sigh. | |
1837 | ||
1838 | Attempt to qualify the filename against the source path. | |
1839 | (If that fails, we'll just fall back on the original | |
1840 | filename. Not much more we can do...) | |
1841 | */ | |
1842 | if (!source_full_path_of (exec_file, &full_exec_path)) | |
1843 | full_exec_path = savestring (exec_file, strlen (exec_file)); | |
1844 | ||
1845 | exec_file_attach (full_exec_path, from_tty); | |
1adeb98a | 1846 | symbol_file_add_main (full_exec_path, from_tty); |
c5aa993b | 1847 | } |
c906108c | 1848 | } |
63ed89b4 DJ |
1849 | else |
1850 | { | |
1851 | reopen_exec_file (); | |
1852 | reread_symbols (); | |
1853 | } | |
c906108c SS |
1854 | |
1855 | #ifdef SOLIB_ADD | |
990f9fe3 FF |
1856 | /* Add shared library symbols from the newly attached process, if any. */ |
1857 | SOLIB_ADD ((char *) 0, from_tty, ¤t_target, auto_solib_add); | |
1858 | re_enable_breakpoints_in_shlibs (); | |
c906108c SS |
1859 | #endif |
1860 | ||
1861 | /* Take any necessary post-attaching actions for this platform. | |
c5aa993b | 1862 | */ |
39f77062 | 1863 | target_post_attach (PIDGET (inferior_ptid)); |
c906108c | 1864 | |
79acc9b3 CV |
1865 | /* Install inferior's terminal modes. */ |
1866 | target_terminal_inferior (); | |
1867 | ||
c906108c | 1868 | normal_stop (); |
6426a772 | 1869 | |
9a4105ab AC |
1870 | if (deprecated_attach_hook) |
1871 | deprecated_attach_hook (); | |
c906108c SS |
1872 | } |
1873 | ||
1874 | /* | |
1875 | * detach_command -- | |
1876 | * takes a program previously attached to and detaches it. | |
1877 | * The program resumes execution and will no longer stop | |
1878 | * on signals, etc. We better not have left any breakpoints | |
1879 | * in the program or it'll die when it hits one. For this | |
1880 | * to work, it may be necessary for the process to have been | |
1881 | * previously attached. It *might* work if the program was | |
1882 | * started via the normal ptrace (PTRACE_TRACEME). | |
1883 | */ | |
1884 | ||
1885 | static void | |
fba45db2 | 1886 | detach_command (char *args, int from_tty) |
c906108c | 1887 | { |
1f5d0fc9 | 1888 | dont_repeat (); /* Not for the faint of heart. */ |
c906108c SS |
1889 | target_detach (args, from_tty); |
1890 | #if defined(SOLIB_RESTART) | |
1891 | SOLIB_RESTART (); | |
1892 | #endif | |
9a4105ab AC |
1893 | if (deprecated_detach_hook) |
1894 | deprecated_detach_hook (); | |
c906108c SS |
1895 | } |
1896 | ||
6ad8ae5c DJ |
1897 | /* Disconnect from the current target without resuming it (leaving it |
1898 | waiting for a debugger). | |
1899 | ||
1900 | We'd better not have left any breakpoints in the program or the | |
1901 | next debugger will get confused. Currently only supported for some | |
1902 | remote targets, since the normal attach mechanisms don't work on | |
1903 | stopped processes on some native platforms (e.g. GNU/Linux). */ | |
1904 | ||
1905 | static void | |
1906 | disconnect_command (char *args, int from_tty) | |
1907 | { | |
1908 | dont_repeat (); /* Not for the faint of heart */ | |
1909 | target_disconnect (args, from_tty); | |
1910 | #if defined(SOLIB_RESTART) | |
1911 | SOLIB_RESTART (); | |
1912 | #endif | |
9a4105ab AC |
1913 | if (deprecated_detach_hook) |
1914 | deprecated_detach_hook (); | |
6ad8ae5c DJ |
1915 | } |
1916 | ||
43ff13b4 JM |
1917 | /* Stop the execution of the target while running in async mode, in |
1918 | the backgound. */ | |
8b93c638 | 1919 | void |
fba45db2 | 1920 | interrupt_target_command (char *args, int from_tty) |
43ff13b4 | 1921 | { |
362646f5 | 1922 | if (target_can_async_p ()) |
43ff13b4 | 1923 | { |
c5aa993b | 1924 | dont_repeat (); /* Not for the faint of heart */ |
43ff13b4 JM |
1925 | target_stop (); |
1926 | } | |
1927 | } | |
1928 | ||
c906108c | 1929 | static void |
23e3a7ac AC |
1930 | print_float_info (struct gdbarch *gdbarch, struct ui_file *file, |
1931 | struct frame_info *frame, const char *args) | |
c906108c | 1932 | { |
e71ecd70 | 1933 | if (!target_has_registers) |
8a3fe4f8 | 1934 | error (_("The program has no registers now.")); |
6e7f8b9c | 1935 | if (deprecated_selected_frame == NULL) |
8a3fe4f8 | 1936 | error (_("No selected frame.")); |
e71ecd70 | 1937 | |
23e3a7ac AC |
1938 | if (gdbarch_print_float_info_p (gdbarch)) |
1939 | gdbarch_print_float_info (gdbarch, file, frame, args); | |
1940 | else | |
1941 | { | |
23e3a7ac AC |
1942 | int regnum; |
1943 | int printed_something = 0; | |
ab4327e0 | 1944 | |
23e3a7ac AC |
1945 | for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++) |
1946 | { | |
f9418c0f | 1947 | if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup)) |
23e3a7ac AC |
1948 | { |
1949 | printed_something = 1; | |
23e3a7ac | 1950 | gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1); |
23e3a7ac AC |
1951 | } |
1952 | } | |
1953 | if (!printed_something) | |
1954 | fprintf_filtered (file, "\ | |
1955 | No floating-point info available for this processor.\n"); | |
23e3a7ac AC |
1956 | } |
1957 | } | |
1958 | ||
1959 | static void | |
1960 | float_info (char *args, int from_tty) | |
1961 | { | |
1f5d0fc9 MS |
1962 | print_float_info (current_gdbarch, gdb_stdout, |
1963 | deprecated_selected_frame, args); | |
c906108c SS |
1964 | } |
1965 | \f | |
c906108c | 1966 | static void |
fba45db2 | 1967 | unset_command (char *args, int from_tty) |
c906108c | 1968 | { |
a3f17187 AC |
1969 | printf_filtered (_("\ |
1970 | \"unset\" must be followed by the name of an unset subcommand.\n")); | |
c906108c SS |
1971 | help_list (unsetlist, "unset ", -1, gdb_stdout); |
1972 | } | |
1973 | ||
1974 | void | |
fba45db2 | 1975 | _initialize_infcmd (void) |
c906108c SS |
1976 | { |
1977 | struct cmd_list_element *c; | |
c5aa993b | 1978 | |
c94fdfd0 EZ |
1979 | c = add_com ("tty", class_run, tty_command, |
1980 | "Set terminal for future runs of program being debugged."); | |
5ba2abeb | 1981 | set_cmd_completer (c, filename_completer); |
c906108c | 1982 | |
fa58ee11 EZ |
1983 | c = add_set_cmd ("args", class_run, var_string_noescape, |
1984 | (char *) &inferior_args, | |
1985 | "Set argument list to give program being debugged when it is started.\n\ | |
c906108c | 1986 | Follow this command with any number of args, to be passed to the program.", |
fa58ee11 | 1987 | &setlist); |
5ba2abeb | 1988 | set_cmd_completer (c, filename_completer); |
9f60d481 | 1989 | set_cmd_sfunc (c, notice_args_set); |
cb1a6d5f | 1990 | c = deprecated_add_show_from_set (c, &showlist); |
9f60d481 | 1991 | set_cmd_sfunc (c, notice_args_read); |
c906108c SS |
1992 | |
1993 | c = add_cmd | |
1994 | ("environment", no_class, environment_info, | |
1995 | "The environment to give the program, or one variable's value.\n\ | |
1996 | With an argument VAR, prints the value of environment variable VAR to\n\ | |
1997 | give the program being debugged. With no arguments, prints the entire\n\ | |
1998 | environment to be given to the program.", &showlist); | |
5ba2abeb | 1999 | set_cmd_completer (c, noop_completer); |
c906108c SS |
2000 | |
2001 | add_prefix_cmd ("unset", no_class, unset_command, | |
d4654627 | 2002 | "Complement to certain \"set\" commands.", |
c906108c | 2003 | &unsetlist, "unset ", 0, &cmdlist); |
c5aa993b | 2004 | |
c906108c | 2005 | c = add_cmd ("environment", class_run, unset_environment_command, |
c5aa993b | 2006 | "Cancel environment variable VAR for the program.\n\ |
c906108c | 2007 | This does not affect the program until the next \"run\" command.", |
c5aa993b | 2008 | &unsetlist); |
5ba2abeb | 2009 | set_cmd_completer (c, noop_completer); |
c906108c SS |
2010 | |
2011 | c = add_cmd ("environment", class_run, set_environment_command, | |
2012 | "Set environment variable value to give the program.\n\ | |
2013 | Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\ | |
2014 | VALUES of environment variables are uninterpreted strings.\n\ | |
2015 | This does not affect the program until the next \"run\" command.", | |
c5aa993b | 2016 | &setlist); |
5ba2abeb | 2017 | set_cmd_completer (c, noop_completer); |
c5aa993b | 2018 | |
fa58ee11 EZ |
2019 | c = add_com ("path", class_files, path_command, |
2020 | "Add directory DIR(s) to beginning of search path for object files.\n\ | |
c906108c SS |
2021 | $cwd in the path means the current working directory.\n\ |
2022 | This path is equivalent to the $PATH shell variable. It is a list of\n\ | |
2023 | directories, separated by colons. These directories are searched to find\n\ | |
2024 | fully linked executable files and separately compiled object files as needed."); | |
5ba2abeb | 2025 | set_cmd_completer (c, filename_completer); |
c906108c SS |
2026 | |
2027 | c = add_cmd ("paths", no_class, path_info, | |
c5aa993b | 2028 | "Current search path for finding object files.\n\ |
c906108c SS |
2029 | $cwd in the path means the current working directory.\n\ |
2030 | This path is equivalent to the $PATH shell variable. It is a list of\n\ | |
2031 | directories, separated by colons. These directories are searched to find\n\ | |
2032 | fully linked executable files and separately compiled object files as needed.", | |
2033 | &showlist); | |
5ba2abeb | 2034 | set_cmd_completer (c, noop_completer); |
c906108c | 2035 | |
c5aa993b JM |
2036 | add_com ("attach", class_run, attach_command, |
2037 | "Attach to a process or file outside of GDB.\n\ | |
c906108c SS |
2038 | This command attaches to another target, of the same type as your last\n\ |
2039 | \"target\" command (\"info files\" will show your target stack).\n\ | |
2040 | The command may take as argument a process id or a device file.\n\ | |
2041 | For a process id, you must have permission to send the process a signal,\n\ | |
2042 | and it must have the same effective uid as the debugger.\n\ | |
2043 | When using \"attach\" with a process id, the debugger finds the\n\ | |
2044 | program running in the process, looking first in the current working\n\ | |
2045 | directory, or (if not found there) using the source file search path\n\ | |
2046 | (see the \"directory\" command). You can also use the \"file\" command\n\ | |
2047 | to specify the program, and to load its symbol table."); | |
2048 | ||
2049 | add_com ("detach", class_run, detach_command, | |
2050 | "Detach a process or file previously attached.\n\ | |
2051 | If a process, it is no longer traced, and it continues its execution. If\n\ | |
2052 | you were debugging a file, the file is closed and gdb no longer accesses it."); | |
2053 | ||
6ad8ae5c DJ |
2054 | add_com ("disconnect", class_run, disconnect_command, |
2055 | "Disconnect from a target.\n\ | |
2056 | The target will wait for another debugger to connect. Not available for\n\ | |
2057 | all targets."); | |
2058 | ||
c906108c SS |
2059 | add_com ("signal", class_run, signal_command, |
2060 | "Continue program giving it signal specified by the argument.\n\ | |
2061 | An argument of \"0\" means continue program without giving it a signal."); | |
2062 | ||
2063 | add_com ("stepi", class_run, stepi_command, | |
2064 | "Step one instruction exactly.\n\ | |
2065 | Argument N means do this N times (or till program stops for another reason)."); | |
2066 | add_com_alias ("si", "stepi", class_alias, 0); | |
2067 | ||
2068 | add_com ("nexti", class_run, nexti_command, | |
2069 | "Step one instruction, but proceed through subroutine calls.\n\ | |
2070 | Argument N means do this N times (or till program stops for another reason)."); | |
2071 | add_com_alias ("ni", "nexti", class_alias, 0); | |
2072 | ||
2073 | add_com ("finish", class_run, finish_command, | |
2074 | "Execute until selected stack frame returns.\n\ | |
2075 | Upon return, the value returned is printed and put in the value history."); | |
2076 | ||
2077 | add_com ("next", class_run, next_command, | |
2078 | "Step program, proceeding through subroutine calls.\n\ | |
2079 | Like the \"step\" command as long as subroutine calls do not happen;\n\ | |
2080 | when they do, the call is treated as one instruction.\n\ | |
2081 | Argument N means do this N times (or till program stops for another reason)."); | |
2082 | add_com_alias ("n", "next", class_run, 1); | |
2083 | if (xdb_commands) | |
c5aa993b | 2084 | add_com_alias ("S", "next", class_run, 1); |
c906108c SS |
2085 | |
2086 | add_com ("step", class_run, step_command, | |
2087 | "Step program until it reaches a different source line.\n\ | |
2088 | Argument N means do this N times (or till program stops for another reason)."); | |
2089 | add_com_alias ("s", "step", class_run, 1); | |
2090 | ||
c94fdfd0 EZ |
2091 | c = add_com ("until", class_run, until_command, |
2092 | "Execute until the program reaches a source line greater than the current\n\ | |
ae66c1fc | 2093 | or a specified location (same args as break command) within the current frame."); |
5ba2abeb | 2094 | set_cmd_completer (c, location_completer); |
c906108c | 2095 | add_com_alias ("u", "until", class_run, 1); |
c5aa993b | 2096 | |
ae66c1fc EZ |
2097 | c = add_com ("advance", class_run, advance_command, |
2098 | "Continue the program up to the given location (same form as args for break command).\n\ | |
2099 | Execution will also stop upon exit from the current stack frame."); | |
2100 | set_cmd_completer (c, location_completer); | |
2101 | ||
c94fdfd0 EZ |
2102 | c = add_com ("jump", class_run, jump_command, |
2103 | "Continue program being debugged at specified line or address.\n\ | |
c906108c SS |
2104 | Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\ |
2105 | for an address to start at."); | |
5ba2abeb | 2106 | set_cmd_completer (c, location_completer); |
c906108c | 2107 | |
b83266a0 | 2108 | if (xdb_commands) |
c94fdfd0 EZ |
2109 | { |
2110 | c = add_com ("go", class_run, go_command, | |
2111 | "Usage: go <location>\n\ | |
c906108c SS |
2112 | Continue program being debugged, stopping at specified line or \n\ |
2113 | address.\n\ | |
2114 | Give as argument either LINENUM or *ADDR, where ADDR is an \n\ | |
2115 | expression for an address to start at.\n\ | |
2116 | This command is a combination of tbreak and jump."); | |
5ba2abeb | 2117 | set_cmd_completer (c, location_completer); |
c94fdfd0 | 2118 | } |
b83266a0 | 2119 | |
c906108c | 2120 | if (xdb_commands) |
c5aa993b | 2121 | add_com_alias ("g", "go", class_run, 1); |
c906108c SS |
2122 | |
2123 | add_com ("continue", class_run, continue_command, | |
2124 | "Continue program being debugged, after signal or breakpoint.\n\ | |
2125 | If proceeding from breakpoint, a number N may be used as an argument,\n\ | |
2126 | which means to set the ignore count of that breakpoint to N - 1 (so that\n\ | |
2127 | the breakpoint won't break until the Nth time it is reached)."); | |
2128 | add_com_alias ("c", "cont", class_run, 1); | |
2129 | add_com_alias ("fg", "cont", class_run, 1); | |
2130 | ||
fa58ee11 | 2131 | c = add_com ("run", class_run, run_command, |
c906108c SS |
2132 | "Start debugged program. You may specify arguments to give it.\n\ |
2133 | Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\ | |
2134 | Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\ | |
2135 | With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\ | |
2136 | To cancel previous arguments and run with no arguments,\n\ | |
2137 | use \"set args\" without arguments."); | |
5ba2abeb | 2138 | set_cmd_completer (c, filename_completer); |
c906108c SS |
2139 | add_com_alias ("r", "run", class_run, 1); |
2140 | if (xdb_commands) | |
2141 | add_com ("R", class_run, run_no_args_command, | |
c5aa993b | 2142 | "Start debugged program with no arguments."); |
c906108c | 2143 | |
a4d5f2e0 JB |
2144 | c = add_com ("start", class_run, start_command, |
2145 | "\ | |
2146 | Run the debugged program until the beginning of the main procedure.\n\ | |
2147 | You may specify arguments to give to your program, just as with the\n\ | |
2148 | \"run\" command."); | |
2149 | set_cmd_completer (c, filename_completer); | |
2150 | ||
43ff13b4 JM |
2151 | add_com ("interrupt", class_run, interrupt_target_command, |
2152 | "Interrupt the execution of the debugged program."); | |
2153 | ||
c906108c | 2154 | add_info ("registers", nofp_registers_info, |
c5aa993b | 2155 | "List of integer registers and their contents, for selected stack frame.\n\ |
c906108c | 2156 | Register name as argument means describe only that register."); |
7194c49b | 2157 | add_info_alias ("r", "registers", 1); |
c906108c SS |
2158 | |
2159 | if (xdb_commands) | |
c5aa993b JM |
2160 | add_com ("lr", class_info, nofp_registers_info, |
2161 | "List of integer registers and their contents, for selected stack frame.\n\ | |
c906108c SS |
2162 | Register name as argument means describe only that register."); |
2163 | add_info ("all-registers", all_registers_info, | |
c5aa993b | 2164 | "List of all registers and their contents, for selected stack frame.\n\ |
c906108c SS |
2165 | Register name as argument means describe only that register."); |
2166 | ||
2167 | add_info ("program", program_info, | |
2168 | "Execution status of the program."); | |
2169 | ||
2170 | add_info ("float", float_info, | |
2171 | "Print the status of the floating point unit\n"); | |
2172 | ||
e76f1f2e AC |
2173 | add_info ("vector", vector_info, |
2174 | "Print the status of the vector unit\n"); | |
2175 | ||
c906108c SS |
2176 | inferior_environ = make_environ (); |
2177 | init_environ (inferior_environ); | |
2178 | } |