1 /* Reverse execution and reverse debugging.
3 Copyright (C) 2006-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "cli/cli-cmds.h"
24 #include "cli/cli-decode.h"
25 #include "cli/cli-utils.h"
31 reverse-step, reverse-next etc. */
33 /* exec_reverse_once -- accepts an arbitrary gdb command (string),
34 and executes it with exec-direction set to 'reverse'.
36 Used to implement reverse-next etc. commands. */
39 exec_reverse_once (const char *cmd
, const char *args
, int from_tty
)
41 enum exec_direction_kind dir
= execution_direction
;
43 if (dir
== EXEC_REVERSE
)
44 error (_("Already in reverse mode. Use '%s' or 'set exec-dir forward'."),
47 if (!target_can_execute_reverse
)
48 error (_("Target %s does not support this command."), target_shortname
);
50 std::string reverse_command
= string_printf ("%s %s", cmd
, args
? args
: "");
51 scoped_restore restore_exec_dir
52 = make_scoped_restore (&execution_direction
, EXEC_REVERSE
);
53 execute_command (reverse_command
.c_str (), from_tty
);
57 reverse_step (const char *args
, int from_tty
)
59 exec_reverse_once ("step", args
, from_tty
);
63 reverse_stepi (const char *args
, int from_tty
)
65 exec_reverse_once ("stepi", args
, from_tty
);
69 reverse_next (const char *args
, int from_tty
)
71 exec_reverse_once ("next", args
, from_tty
);
75 reverse_nexti (const char *args
, int from_tty
)
77 exec_reverse_once ("nexti", args
, from_tty
);
81 reverse_continue (const char *args
, int from_tty
)
83 exec_reverse_once ("continue", args
, from_tty
);
87 reverse_finish (const char *args
, int from_tty
)
89 exec_reverse_once ("finish", args
, from_tty
);
92 /* Data structures for a bookmark list. */
95 struct bookmark
*next
;
98 struct symtab_and_line sal
;
99 gdb_byte
*opaque_data
;
102 static struct bookmark
*bookmark_chain
;
103 static int bookmark_count
;
105 #define ALL_BOOKMARKS(B) for ((B) = bookmark_chain; (B); (B) = (B)->next)
107 #define ALL_BOOKMARKS_SAFE(B,TMP) \
108 for ((B) = bookmark_chain; \
109 (B) ? ((TMP) = (B)->next, 1) : 0; \
112 /* save_bookmark_command -- implement "bookmark" command.
113 Call target method to get a bookmark identifier.
114 Insert bookmark identifier into list.
116 Identifier will be a malloc string (gdb_byte *).
117 Up to us to free it as required. */
120 save_bookmark_command (const char *args
, int from_tty
)
122 /* Get target's idea of a bookmark. */
123 gdb_byte
*bookmark_id
= target_get_bookmark (args
, from_tty
);
124 struct gdbarch
*gdbarch
= get_current_regcache ()->arch ();
126 /* CR should not cause another identical bookmark. */
129 if (bookmark_id
== NULL
)
130 error (_("target_get_bookmark failed."));
132 /* Set up a bookmark struct. */
133 bookmark
*b
= new bookmark ();
134 b
->number
= ++bookmark_count
;
135 b
->pc
= regcache_read_pc (get_current_regcache ());
136 b
->sal
= find_pc_line (b
->pc
, 0);
137 b
->sal
.pspace
= get_frame_program_space (get_current_frame ());
138 b
->opaque_data
= bookmark_id
;
141 /* Add this bookmark to the end of the chain, so that a list
142 of bookmarks will come out in order of increasing numbers. */
144 bookmark
*b1
= bookmark_chain
;
153 printf_filtered (_("Saved bookmark %d at %s\n"), b
->number
,
154 paddress (gdbarch
, b
->sal
.pc
));
157 /* Implement "delete bookmark" command. */
160 delete_one_bookmark (int num
)
162 struct bookmark
*b1
, *b
;
164 /* Find bookmark with corresponding number. */
166 if (b
->number
== num
)
169 /* Special case, first item in list. */
170 if (b
== bookmark_chain
)
171 bookmark_chain
= b
->next
;
173 /* Find bookmark preceding "marked" one, so we can unlink. */
179 /* Found designated bookmark. Unlink and delete. */
183 xfree (b
->opaque_data
);
185 return 1; /* success */
187 return 0; /* failure */
191 delete_all_bookmarks (void)
193 struct bookmark
*b
, *b1
;
195 ALL_BOOKMARKS_SAFE (b
, b1
)
197 xfree (b
->opaque_data
);
200 bookmark_chain
= NULL
;
204 delete_bookmark_command (const char *args
, int from_tty
)
206 if (bookmark_chain
== NULL
)
208 warning (_("No bookmarks."));
212 if (args
== NULL
|| args
[0] == '\0')
214 if (from_tty
&& !query (_("Delete all bookmarks? ")))
216 delete_all_bookmarks ();
220 number_or_range_parser
parser (args
);
221 while (!parser
.finished ())
223 int num
= parser
.get_number ();
224 if (!delete_one_bookmark (num
))
226 warning (_("No bookmark #%d."), num
);
230 /* Implement "goto-bookmark" command. */
233 goto_bookmark_command (const char *args
, int from_tty
)
237 const char *p
= args
;
239 if (args
== NULL
|| args
[0] == '\0')
240 error (_("Command requires an argument."));
242 if (startswith (args
, "start")
243 || startswith (args
, "begin")
244 || startswith (args
, "end"))
246 /* Special case. Give target opportunity to handle. */
247 target_goto_bookmark ((gdb_byte
*) args
, from_tty
);
251 if (args
[0] == '\'' || args
[0] == '\"')
253 /* Special case -- quoted string. Pass on to target. */
254 if (args
[strlen (args
) - 1] != args
[0])
255 error (_("Unbalanced quotes: %s"), args
);
256 target_goto_bookmark ((gdb_byte
*) args
, from_tty
);
260 /* General case. Bookmark identified by bookmark number. */
261 num
= get_number (&args
);
264 error (_("goto-bookmark: invalid bookmark number '%s'."), p
);
267 if (b
->number
== num
)
272 /* Found. Send to target method. */
273 target_goto_bookmark (b
->opaque_data
, from_tty
);
277 error (_("goto-bookmark: no bookmark found for '%s'."), p
);
281 bookmark_1 (int bnum
)
283 struct gdbarch
*gdbarch
= get_current_regcache ()->arch ();
289 if (bnum
== -1 || bnum
== b
->number
)
291 printf_filtered (" %d %s '%s'\n",
293 paddress (gdbarch
, b
->pc
),
299 if (bnum
> 0 && matched
== 0)
300 printf_filtered ("No bookmark #%d\n", bnum
);
305 /* Implement "info bookmarks" command. */
308 info_bookmarks_command (const char *args
, int from_tty
)
311 printf_filtered (_("No bookmarks.\n"));
312 else if (args
== NULL
|| *args
== '\0')
316 number_or_range_parser
parser (args
);
317 while (!parser
.finished ())
319 int bnum
= parser
.get_number ();
326 _initialize_reverse (void)
328 add_com ("reverse-step", class_run
, reverse_step
, _("\
329 Step program backward until it reaches the beginning of another source line.\n\
330 Argument N means do this N times (or till program stops for another reason).")
332 add_com_alias ("rs", "reverse-step", class_alias
, 1);
334 add_com ("reverse-next", class_run
, reverse_next
, _("\
335 Step program backward, proceeding through subroutine calls.\n\
336 Like the \"reverse-step\" command as long as subroutine calls do not happen;\n\
337 when they do, the call is treated as one instruction.\n\
338 Argument N means do this N times (or till program stops for another reason).")
340 add_com_alias ("rn", "reverse-next", class_alias
, 1);
342 add_com ("reverse-stepi", class_run
, reverse_stepi
, _("\
343 Step backward exactly one instruction.\n\
344 Argument N means do this N times (or till program stops for another reason).")
346 add_com_alias ("rsi", "reverse-stepi", class_alias
, 0);
348 add_com ("reverse-nexti", class_run
, reverse_nexti
, _("\
349 Step backward one instruction, but proceed through called subroutines.\n\
350 Argument N means do this N times (or till program stops for another reason).")
352 add_com_alias ("rni", "reverse-nexti", class_alias
, 0);
354 add_com ("reverse-continue", class_run
, reverse_continue
, _("\
355 Continue program being debugged but run it in reverse.\n\
356 If proceeding from breakpoint, a number N may be used as an argument,\n\
357 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
358 the breakpoint won't break until the Nth time it is reached)."));
359 add_com_alias ("rc", "reverse-continue", class_alias
, 0);
361 add_com ("reverse-finish", class_run
, reverse_finish
, _("\
362 Execute backward until just before selected stack frame is called."));
364 add_com ("bookmark", class_bookmark
, save_bookmark_command
, _("\
365 Set a bookmark in the program's execution history.\n\
366 A bookmark represents a point in the execution history \n\
367 that can be returned to at a later point in the debug session."));
368 add_info ("bookmarks", info_bookmarks_command
, _("\
369 Status of user-settable bookmarks.\n\
370 Bookmarks are user-settable markers representing a point in the \n\
371 execution history that can be returned to later in the same debug \n\
373 add_cmd ("bookmark", class_bookmark
, delete_bookmark_command
, _("\
374 Delete a bookmark from the bookmark list.\n\
375 Argument is a bookmark number or numbers,\n\
376 or no argument to delete all bookmarks."),
378 add_com ("goto-bookmark", class_bookmark
, goto_bookmark_command
, _("\
379 Go to an earlier-bookmarked point in the program's execution history.\n\
380 Argument is the bookmark number of a bookmark saved earlier by using \n\
381 the 'bookmark' command, or the special arguments:\n\
382 start (beginning of recording)\n\
383 end (end of recording)"));