* infrun.c (normal_stop): Don't call
[deliverable/binutils-gdb.git] / gdb / reverse.c
CommitLineData
b2175913
MS
1/* Reverse execution and reverse debugging.
2
0fb0cc75 3 Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
b2175913
MS
4
5 This file is part of GDB.
6
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 2 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22#include "defs.h"
23#include "gdb_string.h"
24#include "target.h"
25#include "top.h"
26#include "cli/cli-cmds.h"
27#include "cli/cli-decode.h"
28#include "inferior.h"
29
30/* User interface:
31 reverse-step, reverse-next etc. */
32
b4f899bb
MS
33static void
34exec_direction_default (void *notused)
b2175913
MS
35{
36 /* Return execution direction to default state. */
37 execution_direction = EXEC_FORWARD;
38}
39
40/* exec_reverse_once -- accepts an arbitrary gdb command (string),
41 and executes it with exec-direction set to 'reverse'.
42
43 Used to implement reverse-next etc. commands. */
44
45static void
46exec_reverse_once (char *cmd, char *args, int from_tty)
47{
48 char *reverse_command;
49 enum exec_direction_kind dir = execution_direction;
50 struct cleanup *old_chain;
51
52 if (dir == EXEC_ERROR)
53 error (_("Target %s does not support this command."), target_shortname);
54
55 if (dir == EXEC_REVERSE)
56 error (_("Already in reverse mode. Use '%s' or 'set exec-dir forward'."),
57 cmd);
58
59 if (!target_can_execute_reverse)
60 error (_("Target %s does not support this command."), target_shortname);
61
62 reverse_command = xstrprintf ("%s %s", cmd, args ? args : "");
63 old_chain = make_cleanup (exec_direction_default, NULL);
64 make_cleanup (xfree, reverse_command);
65 execution_direction = EXEC_REVERSE;
66 execute_command (reverse_command, from_tty);
67 do_cleanups (old_chain);
68}
69
70static void
71reverse_step (char *args, int from_tty)
72{
73 exec_reverse_once ("step", args, from_tty);
74}
75
76static void
77reverse_stepi (char *args, int from_tty)
78{
79 exec_reverse_once ("stepi", args, from_tty);
80}
81
82static void
83reverse_next (char *args, int from_tty)
84{
85 exec_reverse_once ("next", args, from_tty);
86}
87
88static void
89reverse_nexti (char *args, int from_tty)
90{
91 exec_reverse_once ("nexti", args, from_tty);
92}
93
94static void
95reverse_continue (char *args, int from_tty)
96{
97 exec_reverse_once ("continue", args, from_tty);
98}
99
100static void
101reverse_finish (char *args, int from_tty)
102{
103 exec_reverse_once ("finish", args, from_tty);
104}
105
106void
107_initialize_reverse (void)
108{
109 add_com ("reverse-step", class_run, reverse_step, _("\
110Step program backward until it reaches the beginning of another source line.\n\
111Argument N means do this N times (or till program stops for another reason).")
112 );
113 add_com_alias ("rs", "reverse-step", class_alias, 1);
114
115 add_com ("reverse-next", class_run, reverse_next, _("\
116Step program backward, proceeding through subroutine calls.\n\
117Like the \"reverse-step\" command as long as subroutine calls do not happen;\n\
118when they do, the call is treated as one instruction.\n\
119Argument N means do this N times (or till program stops for another reason).")
120 );
121 add_com_alias ("rn", "reverse-next", class_alias, 1);
122
123 add_com ("reverse-stepi", class_run, reverse_stepi, _("\
124Step backward exactly one instruction.\n\
125Argument N means do this N times (or till program stops for another reason).")
126 );
127 add_com_alias ("rsi", "reverse-stepi", class_alias, 0);
128
129 add_com ("reverse-nexti", class_run, reverse_nexti, _("\
130Step backward one instruction, but proceed through called subroutines.\n\
131Argument N means do this N times (or till program stops for another reason).")
132 );
133 add_com_alias ("rni", "reverse-nexti", class_alias, 0);
134
135 add_com ("reverse-continue", class_run, reverse_continue, _("\
136Continue program being debugged but run it in reverse.\n\
137If proceeding from breakpoint, a number N may be used as an argument,\n\
138which means to set the ignore count of that breakpoint to N - 1 (so that\n\
139the breakpoint won't break until the Nth time it is reached)."));
140 add_com_alias ("rc", "reverse-continue", class_alias, 0);
141
142 add_com ("reverse-finish", class_run, reverse_finish, _("\
143Execute backward until just before selected stack frame is called."));
144}
This page took 0.046673 seconds and 4 git commands to generate.