Mercurial > hg > octave-nkf
annotate src/pt-bp.h @ 7715:5b4d278ec828
parse scripts completely before executing
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 16 Apr 2008 15:09:56 -0400 |
parents | a1dbe9d80eee |
children | 6b521b1e3631 |
rev | line source |
---|---|
3771 | 1 /* |
2 | |
7017 | 3 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Ben Sapp |
3771 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
3771 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
3771 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_tree_bp_h) | |
24 #define octave_tree_bp_h 1 | |
25 | |
26 #include "input.h" | |
3805 | 27 #include "ov-usr-fcn.h" |
3771 | 28 #include "pt-walk.h" |
3805 | 29 #include "pt-pr-code.h" |
30 #include "toplev.h" | |
3771 | 31 |
32 class tree; | |
33 | |
34 class | |
35 tree_breakpoint : public tree_walker | |
36 { | |
37 public: | |
38 | |
39 enum action { set = 1, clear = 2, list = 3 }; | |
40 | |
41 tree_breakpoint (int l, action a) | |
3805 | 42 : line (l), act (a), found (false), bp_list () { } |
3771 | 43 |
44 ~tree_breakpoint (void) { } | |
45 | |
46 bool success (void) const { return found; } | |
47 | |
48 void visit_argument_list (tree_argument_list&); | |
49 | |
50 void visit_binary_expression (tree_binary_expression&); | |
51 | |
4207 | 52 void visit_break_command (tree_break_command&); |
3771 | 53 |
54 void visit_colon_expression (tree_colon_expression&); | |
55 | |
4207 | 56 void visit_continue_command (tree_continue_command&); |
3771 | 57 |
58 void visit_decl_command (tree_decl_command&); | |
59 | |
60 void visit_decl_elt (tree_decl_elt&); | |
61 | |
62 void visit_decl_init_list (tree_decl_init_list&); | |
63 | |
64 void visit_while_command (tree_while_command&); | |
65 | |
66 void visit_do_until_command (tree_do_until_command&); | |
67 | |
68 void visit_simple_for_command (tree_simple_for_command&); | |
69 | |
70 void visit_complex_for_command (tree_complex_for_command&); | |
71 | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
72 void visit_octave_user_script (octave_user_script&); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
73 |
3771 | 74 void visit_octave_user_function (octave_user_function&); |
75 | |
76 void visit_octave_user_function_header (octave_user_function&); | |
77 | |
78 void visit_octave_user_function_trailer (octave_user_function&); | |
79 | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
80 void visit_function_def (tree_function_def&); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
81 |
3771 | 82 void visit_identifier (tree_identifier&); |
83 | |
84 void visit_if_clause (tree_if_clause&); | |
85 | |
86 void visit_if_command (tree_if_command&); | |
87 | |
88 void visit_if_command_list (tree_if_command_list&); | |
89 | |
90 void visit_index_expression (tree_index_expression&); | |
91 | |
92 void visit_matrix (tree_matrix&); | |
93 | |
94 void visit_cell (tree_cell&); | |
95 | |
96 void visit_multi_assignment (tree_multi_assignment&); | |
97 | |
98 void visit_no_op_command (tree_no_op_command&); | |
99 | |
5861 | 100 void visit_anon_fcn_handle (tree_anon_fcn_handle&); |
101 | |
3771 | 102 void visit_constant (tree_constant&); |
103 | |
4342 | 104 void visit_fcn_handle (tree_fcn_handle&); |
105 | |
3771 | 106 void visit_parameter_list (tree_parameter_list&); |
107 | |
108 void visit_postfix_expression (tree_postfix_expression&); | |
109 | |
110 void visit_prefix_expression (tree_prefix_expression&); | |
111 | |
4207 | 112 void visit_return_command (tree_return_command&); |
3771 | 113 |
114 void visit_return_list (tree_return_list&); | |
115 | |
116 void visit_simple_assignment (tree_simple_assignment&); | |
117 | |
118 void visit_statement (tree_statement&); | |
119 | |
120 void visit_statement_list (tree_statement_list&); | |
121 | |
122 void visit_switch_case (tree_switch_case&); | |
123 | |
124 void visit_switch_case_list (tree_switch_case_list&); | |
125 | |
126 void visit_switch_command (tree_switch_command&); | |
127 | |
128 void visit_try_catch_command (tree_try_catch_command&); | |
129 | |
130 void visit_unwind_protect_command (tree_unwind_protect_command&); | |
131 | |
3805 | 132 octave_value_list get_list (void) { return bp_list; } |
3771 | 133 |
134 int get_line (void) { return line; } | |
135 | |
136 private: | |
137 | |
138 void take_action (tree &tr); | |
139 | |
3805 | 140 // Statement line number we are looking for. |
3771 | 141 int line; |
142 | |
3805 | 143 // What to do. |
3771 | 144 action act; |
3805 | 145 |
146 // Have we already found the line? | |
3771 | 147 bool found; |
148 | |
3805 | 149 // List of breakpoint line numbers. |
150 octave_value_list bp_list; | |
3771 | 151 |
152 // No copying! | |
153 | |
154 tree_breakpoint (const tree_breakpoint&); | |
155 | |
156 tree_breakpoint& operator = (const tree_breakpoint&); | |
157 }; | |
158 | |
4185 | 159 // TRUE means SIGINT should put us in the debugger at the next |
160 // available breakpoint. | |
161 extern bool octave_debug_on_interrupt_state; | |
162 | |
3771 | 163 #define MAYBE_DO_BREAKPOINT \ |
164 do \ | |
165 { \ | |
6802 | 166 octave_function *xfcn = octave_call_stack::current (); \ |
5743 | 167 \ |
4185 | 168 if (octave_debug_on_interrupt_state \ |
169 || (tree::break_next && tree::last_line == 0) \ | |
3805 | 170 || (tree::break_next \ |
6802 | 171 && xfcn == tree::break_function \ |
3805 | 172 && tree::last_line != line ()) \ |
173 || is_breakpoint ()) \ | |
3771 | 174 { \ |
4185 | 175 octave_debug_on_interrupt_state = false; \ |
176 \ | |
3772 | 177 tree::break_next = false; \ |
3805 | 178 \ |
6802 | 179 if (xfcn) \ |
180 octave_stdout << xfcn->name () << ": "; \ | |
3805 | 181 \ |
182 octave_stdout << "line " << line () << ", " \ | |
183 << "column " << column () \ | |
184 << std::endl; \ | |
185 \ | |
186 tree_print_code tpc (octave_stdout); \ | |
187 this->accept (tpc); \ | |
188 \ | |
189 octave_stdout << std::endl; \ | |
190 \ | |
191 tree::break_statement = this; \ | |
192 \ | |
3771 | 193 do_keyboard (); \ |
194 } \ | |
195 } \ | |
196 while (0) | |
197 | |
198 #endif | |
199 | |
200 /* | |
201 ;;; Local Variables: *** | |
202 ;;; mode: C++ *** | |
203 ;;; End: *** | |
204 */ |