GNU Octave  8.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
pt-bp.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 2001-2023 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING. If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if ! defined (octave_pt_bp_h)
27 #define octave_pt_bp_h 1
28 
29 #include "octave-config.h"
30 
31 #include "input.h"
32 #include "ov-usr-fcn.h"
33 #include "pt-walk.h"
34 #include "pt-pr-code.h"
35 #include "interpreter.h"
36 
38 
39 class tree;
40 class tree_decl_command;
41 
43 {
44 public:
45 
46  enum action { set = 1, clear = 2, list = 3 };
47 
48  tree_breakpoint (int l, action a, const std::string& c = "")
49  : m_line (l), m_action (a), m_condition (c), m_found (false),
51  { }
52 
53  // No copying!
54 
55  tree_breakpoint (const tree_breakpoint&) = delete;
56 
58 
59  ~tree_breakpoint (void) = default;
60 
61  bool success (void) const { return m_found; }
62 
64 
66 
68 
70 
72 
74 
76 
78 
80 
82 
84 
86 
88 
90 
92 
94 
96 
98 
100 
102 
103 
105 
107 
109 
111 
112  void visit_matrix (tree_matrix&);
113 
114  void visit_cell (tree_cell&);
115 
117 
119 
121 
123 
125 
127 
129 
131 
133 
135 
137 
139 
141 
143 
145 
147 
149 
151 
153 
154  int get_line (void) { return m_found ? m_line : 0; }
155 
156 private:
157 
158  void take_action (tree& tr);
159 
160  void take_action (tree_statement& stmt);
161 
162  // Statement line number we are looking for.
163  int m_line;
164 
165  // What to do.
167 
168  // Expression which must be true to break
169  std::string m_condition;
170 
171  // Have we already found the line?
172  bool m_found;
173 
174  // List of breakpoint line numbers.
176 
177  // List of breakpoint conditions.
179 };
180 
182 
183 #endif
OCTAVE_END_NAMESPACE(octave)
void visit_decl_init_list(tree_decl_init_list &)
Definition: pt-bp.cc:145
tree_breakpoint(const tree_breakpoint &)=delete
action m_action
Definition: pt-bp.h:166
void visit_switch_command(tree_switch_command &)
Definition: pt-bp.cc:373
void visit_while_command(tree_while_command &)
Definition: pt-bp.cc:37
void visit_statement(tree_statement &)
Definition: pt-bp.cc:312
void visit_complex_for_command(tree_complex_for_command &)
Definition: pt-bp.cc:172
void visit_arg_validation(tree_arg_validation &)
Definition: pt-bp.cc:94
void visit_argument_list(tree_argument_list &)
Definition: pt-bp.cc:70
bool m_found
Definition: pt-bp.h:172
void visit_octave_user_function_header(octave_user_function &)
Definition: pt-bp.cc:187
void visit_constant(tree_constant &)
Definition: pt-bp.cc:269
void visit_no_op_command(tree_no_op_command &)
Definition: pt-bp.cc:256
void take_action(tree &tr)
Definition: pt-bp.cc:422
void visit_arguments_block(tree_arguments_block &)
Definition: pt-bp.cc:76
void visit_cell(tree_cell &)
Definition: pt-bp.cc:244
void visit_parameter_list(tree_parameter_list &)
Definition: pt-bp.cc:281
void visit_binary_expression(tree_binary_expression &)
Definition: pt-bp.cc:112
void visit_args_block_validation_list(tree_args_block_validation_list &)
Definition: pt-bp.cc:88
~tree_breakpoint(void)=default
void visit_statement_list(tree_statement_list &)
Definition: pt-bp.cc:331
void visit_matrix(tree_matrix &)
Definition: pt-bp.cc:238
void visit_do_until_command(tree_do_until_command &)
Definition: pt-bp.cc:52
octave_value_list get_list(void)
Definition: pt-bp.h:150
void visit_continue_command(tree_continue_command &)
Definition: pt-bp.cc:131
void visit_decl_elt(tree_decl_elt &)
Definition: pt-bp.cc:151
void visit_fcn_handle(tree_fcn_handle &)
Definition: pt-bp.cc:275
void visit_try_catch_command(tree_try_catch_command &)
Definition: pt-bp.cc:388
void visit_if_clause(tree_if_clause &)
Definition: pt-bp.cc:205
void visit_simple_assignment(tree_simple_assignment &)
Definition: pt-bp.cc:306
void visit_simple_for_command(tree_simple_for_command &)
Definition: pt-bp.cc:157
void visit_identifier(tree_identifier &)
Definition: pt-bp.cc:199
void visit_if_command_list(tree_if_command_list &)
Definition: pt-bp.cc:211
void visit_index_expression(tree_index_expression &)
Definition: pt-bp.cc:232
void visit_postfix_expression(tree_postfix_expression &)
Definition: pt-bp.cc:287
int get_line(void)
Definition: pt-bp.h:154
void visit_prefix_expression(tree_prefix_expression &)
Definition: pt-bp.cc:293
void visit_anon_fcn_handle(tree_anon_fcn_handle &)
Definition: pt-bp.cc:263
void visit_break_command(tree_break_command &)
Definition: pt-bp.cc:118
void visit_unwind_protect_command(tree_unwind_protect_command &)
Definition: pt-bp.cc:405
octave_value_list m_bp_list
Definition: pt-bp.h:175
void visit_arg_validation_fcns(tree_arg_validation_fcns &)
Definition: pt-bp.cc:106
void visit_switch_case(tree_switch_case &)
Definition: pt-bp.cc:346
void visit_return_command(tree_return_command &)
Definition: pt-bp.cc:299
tree_breakpoint(int l, action a, const std::string &c="")
Definition: pt-bp.h:48
std::string m_condition
Definition: pt-bp.h:169
void visit_arg_size_spec(tree_arg_size_spec &)
Definition: pt-bp.cc:100
octave_value_list get_cond_list(void)
Definition: pt-bp.h:152
void visit_decl_command(tree_decl_command &)
Definition: pt-bp.cc:138
void visit_colon_expression(tree_colon_expression &)
Definition: pt-bp.cc:125
void visit_switch_case_list(tree_switch_case_list &)
Definition: pt-bp.cc:352
bool success(void) const
Definition: pt-bp.h:61
octave_value_list m_bp_cond_list
Definition: pt-bp.h:178
void visit_octave_user_function_trailer(octave_user_function &)
Definition: pt-bp.cc:193
tree_breakpoint & operator=(const tree_breakpoint &)=delete
void visit_multi_assignment(tree_multi_assignment &)
Definition: pt-bp.cc:250
void visit_args_block_attribute_list(tree_args_block_attribute_list &)
Definition: pt-bp.cc:82
Definition: pt.h:45
OCTAVE_BEGIN_NAMESPACE(octave) static octave_value daspk_fcn