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