Mercurial > hg > octave-nkf
annotate src/ov-usr-fcn.cc @ 7761:5adeea5de26c
symbol table reporting functions
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 06 May 2008 05:51:17 -0400 |
parents | 40c428ea3408 |
children | 3e4c9b69069d |
rev | line source |
---|---|
2974 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, |
4 2006, 2007 John W. Eaton | |
2974 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2974 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2974 | 21 |
22 */ | |
23 | |
24 #ifdef HAVE_CONFIG_H | |
25 #include <config.h> | |
26 #endif | |
27 | |
28 #include "str-vec.h" | |
29 | |
30 #include <defaults.h> | |
3974 | 31 #include "Cell.h" |
2974 | 32 #include "defun.h" |
33 #include "error.h" | |
34 #include "input.h" | |
35 #include "oct-obj.h" | |
36 #include "ov-usr-fcn.h" | |
37 #include "ov.h" | |
38 #include "pager.h" | |
2985 | 39 #include "pt-jump.h" |
2974 | 40 #include "pt-misc.h" |
41 #include "pt-pr-code.h" | |
2982 | 42 #include "pt-stmt.h" |
2974 | 43 #include "pt-walk.h" |
44 #include "symtab.h" | |
45 #include "toplev.h" | |
46 #include "unwind-prot.h" | |
47 #include "utils.h" | |
3489 | 48 #include "parse.h" |
2974 | 49 #include "variables.h" |
50 | |
3131 | 51 // Maximum nesting level for functions called recursively. |
5794 | 52 static int Vmax_recursion_depth = 256; |
3131 | 53 |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
54 // User defined scripts. |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
55 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
56 DEFINE_OCTAVE_ALLOCATOR (octave_user_script); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
57 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
58 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_user_script, |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
59 "user-defined script", |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
60 "user-defined script"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
61 |
7731
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
62 octave_user_script::octave_user_script (void) |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
63 : octave_user_code (), cmd_list (0), file_name (), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
64 t_parsed (static_cast<time_t> (0)), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
65 t_checked (static_cast<time_t> (0)), |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
66 call_depth (-1) |
7731
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
67 { } |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
68 |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
69 octave_user_script::octave_user_script (const std::string& fnm, |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
70 const std::string& nm, |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
71 tree_statement_list *cmds, |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
72 const std::string& ds) |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
73 : octave_user_code (nm, ds), cmd_list (cmds), file_name (fnm), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
74 t_parsed (static_cast<time_t> (0)), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
75 t_checked (static_cast<time_t> (0)), |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
76 call_depth (-1) |
7736 | 77 { |
78 if (cmd_list) | |
79 cmd_list->mark_as_script_body (); | |
80 } | |
7731
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
81 |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
82 octave_user_script::octave_user_script (const std::string& fnm, |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
83 const std::string& nm, |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
84 const std::string& ds) |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
85 : octave_user_code (nm, ds), cmd_list (0), file_name (fnm), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
86 t_parsed (static_cast<time_t> (0)), |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
87 t_checked (static_cast<time_t> (0)), |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
88 call_depth (-1) |
7731
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
89 { } |
2d2a969c731c
fix max_recursion_limit exceeded at startup with Intel C++
Jaroslav Hajek <highegg@gmail.com>
parents:
7719
diff
changeset
|
90 |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
91 octave_user_script::~octave_user_script (void) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
92 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
93 delete cmd_list; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
94 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
95 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
96 octave_value_list |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
97 octave_user_script::subsref (const std::string&, |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
98 const std::list<octave_value_list>&, int) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
99 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
100 octave_value_list retval; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
101 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
102 ::error ("invalid use of script in index expression"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
103 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
104 return retval; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
105 } |
7336 | 106 |
107 octave_value_list | |
108 octave_user_script::do_multi_index_op (int nargout, | |
109 const octave_value_list& args) | |
110 { | |
111 octave_value_list retval; | |
112 | |
113 if (! error_state) | |
114 { | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
115 if (args.length () == 0 && nargout == 0) |
7336 | 116 { |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
117 if (cmd_list) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
118 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
119 unwind_protect::begin_frame ("user_script_eval"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
120 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
121 unwind_protect_int (call_depth); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
122 call_depth++; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
123 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
124 if (call_depth < Vmax_recursion_depth) |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
125 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
126 octave_call_stack::push (this); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
127 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
128 unwind_protect::add (octave_call_stack::unwind_pop, 0); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
129 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
130 cmd_list->eval (); |
7336 | 131 |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
132 if (tree_return_command::returning) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
133 tree_return_command::returning = 0; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
134 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
135 if (tree_break_command::breaking) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
136 tree_break_command::breaking--; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
137 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
138 if (error_state) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
139 traceback_error (); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
140 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
141 else |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
142 ::error ("max_recursion_limit exceeded"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
143 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
144 unwind_protect::run_frame ("user_script_eval"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
145 } |
7336 | 146 } |
147 else | |
148 error ("invalid call to script"); | |
149 } | |
150 | |
151 return retval; | |
152 } | |
153 | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
154 void |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
155 octave_user_script::accept (tree_walker& tw) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
156 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
157 tw.visit_octave_user_script (*this); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
158 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
159 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
160 // FIXME -- this function is exactly the same as |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
161 // octave_user_function::traceback_error. |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
162 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
163 void |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
164 octave_user_script::traceback_error (void) const |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
165 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
166 if (error_state >= 0) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
167 error_state = -1; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
168 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
169 if (my_name.empty ()) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
170 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
171 if (file_name.empty ()) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
172 ::error ("called from `?unknown?'"); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
173 else |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
174 ::error ("called from file `%s'", file_name.c_str ()); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
175 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
176 else |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
177 { |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
178 if (file_name.empty ()) |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
179 ::error ("called from `%s'", my_name.c_str ()); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
180 else |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
181 ::error ("called from `%s' in file `%s'", |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
182 my_name.c_str (), file_name.c_str ()); |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
183 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
184 } |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7589
diff
changeset
|
185 |
2974 | 186 // User defined functions. |
187 | |
3219 | 188 DEFINE_OCTAVE_ALLOCATOR (octave_user_function); |
2974 | 189 |
3219 | 190 DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA (octave_user_function, |
4612 | 191 "user-defined function", |
3219 | 192 "user-defined function"); |
2974 | 193 |
194 // Ugh. This really needs to be simplified (code/data? | |
195 // extrinsic/intrinsic state?). | |
196 | |
197 octave_user_function::octave_user_function | |
7336 | 198 (symbol_table::scope_id sid, tree_parameter_list *pl, |
199 tree_parameter_list *rl, tree_statement_list *cl) | |
7719
87eda1f8faaa
octave_user_code: new base class for octave_user_script and octave_user_function
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
200 : octave_user_code (std::string (), std::string ()), |
2974 | 201 param_list (pl), ret_list (rl), cmd_list (cl), |
7336 | 202 lead_comm (), trail_comm (), file_name (), |
6323 | 203 parent_name (), t_parsed (static_cast<time_t> (0)), |
3255 | 204 t_checked (static_cast<time_t> (0)), |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
205 system_fcn_file (false), call_depth (-1), |
7589
90fb25a5a3fa
minor cleanup in octave_user_function constructor
John W. Eaton <jwe@octave.org>
parents:
7552
diff
changeset
|
206 num_named_args (param_list ? param_list->length () : 0), |
7336 | 207 nested_function (false), inline_function (false), |
208 class_constructor (false), class_method (false), xdispatch_class (), | |
209 args_passed (), num_args_passed (0), local_scope (sid) | |
7736 | 210 { |
211 if (cmd_list) | |
212 cmd_list->mark_as_function_body (); | |
213 } | |
2974 | 214 |
215 octave_user_function::~octave_user_function (void) | |
216 { | |
217 delete param_list; | |
218 delete ret_list; | |
219 delete cmd_list; | |
3665 | 220 delete lead_comm; |
221 delete trail_comm; | |
7336 | 222 |
223 symbol_table::erase_scope (local_scope); | |
2974 | 224 } |
225 | |
226 octave_user_function * | |
227 octave_user_function::define_ret_list (tree_parameter_list *t) | |
228 { | |
229 ret_list = t; | |
230 | |
231 return this; | |
232 } | |
233 | |
234 void | |
4343 | 235 octave_user_function::stash_fcn_file_name (const std::string& nm) |
2974 | 236 { |
4343 | 237 file_name = nm; |
2974 | 238 } |
239 | |
240 void | |
241 octave_user_function::mark_as_system_fcn_file (void) | |
242 { | |
243 if (! file_name.empty ()) | |
244 { | |
245 // We really should stash the whole path to the file we found, | |
246 // when we looked it up, to avoid possible race conditions... | |
5775 | 247 // FIXME |
2974 | 248 // |
249 // We probably also don't need to get the library directory | |
250 // every time, but since this function is only called when the | |
251 // function file is parsed, it probably doesn't matter that | |
252 // much. | |
253 | |
3523 | 254 std::string ff_name = fcn_file_in_path (file_name); |
2974 | 255 |
3565 | 256 if (Vfcn_file_dir == ff_name.substr (0, Vfcn_file_dir.length ())) |
2974 | 257 system_fcn_file = 1; |
258 } | |
259 else | |
260 system_fcn_file = 0; | |
261 } | |
262 | |
263 bool | |
264 octave_user_function::takes_varargs (void) const | |
265 { | |
266 return (param_list && param_list->takes_varargs ()); | |
267 } | |
268 | |
5848 | 269 bool |
270 octave_user_function::takes_var_return (void) const | |
2974 | 271 { |
5848 | 272 return (ret_list && ret_list->takes_varargs ()); |
2974 | 273 } |
274 | |
7761
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
275 void |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
276 octave_user_function::lock_subfunctions (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
277 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
278 symbol_table::lock_subfunctions (local_scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
279 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
280 |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
281 void |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
282 octave_user_function::unlock_subfunctions (void) |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
283 { |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
284 symbol_table::unlock_subfunctions (local_scope); |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
285 } |
5adeea5de26c
symbol table reporting functions
John W. Eaton <jwe@octave.org>
parents:
7752
diff
changeset
|
286 |
2974 | 287 octave_value_list |
288 octave_user_function::octave_all_va_args (void) | |
289 { | |
290 octave_value_list retval; | |
291 | |
3178 | 292 int n = num_args_passed - num_named_args; |
2974 | 293 |
3178 | 294 if (n > 0) |
295 { | |
296 retval.resize (n); | |
297 | |
298 int k = 0; | |
299 for (int i = num_named_args; i < num_args_passed; i++) | |
300 retval(k++) = args_passed(i); | |
301 } | |
2974 | 302 |
303 return retval; | |
304 } | |
305 | |
306 static void | |
3239 | 307 clear_param_list (void *lst) |
308 { | |
309 tree_parameter_list *tmp = static_cast<tree_parameter_list *> (lst); | |
310 | |
311 if (tmp) | |
4219 | 312 tmp->undefine (); |
3239 | 313 } |
314 | |
315 static void | |
3875 | 316 restore_args_passed (void *fcn) |
3239 | 317 { |
318 octave_user_function *tmp = static_cast<octave_user_function *> (fcn); | |
319 | |
320 if (tmp) | |
3875 | 321 tmp->restore_args_passed (); |
3239 | 322 } |
323 | |
2974 | 324 octave_value_list |
4247 | 325 octave_user_function::subsref (const std::string& type, |
4219 | 326 const std::list<octave_value_list>& idx, |
3933 | 327 int nargout) |
328 { | |
329 octave_value_list retval; | |
330 | |
331 switch (type[0]) | |
332 { | |
333 case '(': | |
5154 | 334 { |
5155 | 335 int tmp_nargout = (type.length () > 1 && nargout == 0) ? 1 : nargout; |
5154 | 336 |
337 retval = do_multi_index_op (tmp_nargout, idx.front ()); | |
338 } | |
3933 | 339 break; |
340 | |
341 case '{': | |
342 case '.': | |
343 { | |
344 std::string nm = type_name (); | |
345 error ("%s cannot be indexed with %c", nm.c_str (), type[0]); | |
346 } | |
347 break; | |
348 | |
349 default: | |
350 panic_impossible (); | |
351 } | |
352 | |
5775 | 353 // FIXME -- perhaps there should be an |
4059 | 354 // octave_value_list::next_subsref member function? See also |
355 // octave_builtin::subsref. | |
3933 | 356 |
4219 | 357 if (idx.size () > 1) |
4994 | 358 retval = retval(0).next_subsref (nargout, type, idx); |
4059 | 359 |
360 return retval; | |
3933 | 361 } |
362 | |
363 octave_value_list | |
3544 | 364 octave_user_function::do_multi_index_op (int nargout, |
365 const octave_value_list& args) | |
2974 | 366 { |
367 octave_value_list retval; | |
368 | |
369 if (error_state) | |
370 return retval; | |
371 | |
372 if (! cmd_list) | |
373 return retval; | |
374 | |
375 int nargin = args.length (); | |
376 | |
4987 | 377 unwind_protect::begin_frame ("user_func_eval"); |
2974 | 378 |
379 unwind_protect_int (call_depth); | |
380 call_depth++; | |
381 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
382 if (call_depth >= Vmax_recursion_depth) |
3131 | 383 { |
384 ::error ("max_recursion_limit exceeded"); | |
4987 | 385 unwind_protect::run_frame ("user_func_eval"); |
3131 | 386 return retval; |
387 } | |
388 | |
7336 | 389 // Save old and set current symbol table context, for |
390 // eval_undefined_error(). | |
391 | |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
392 octave_call_stack::push (this, local_scope, call_depth); |
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
393 |
7336 | 394 symbol_table::push_scope (local_scope); |
395 unwind_protect::add (symbol_table::pop_scope); | |
2974 | 396 |
7752
40c428ea3408
initial implementation of dbup and dbdown
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
397 if (call_depth > 0) |
2974 | 398 { |
7336 | 399 symbol_table::push_context (); |
2974 | 400 |
7336 | 401 unwind_protect::add (symbol_table::pop_context); |
402 } | |
403 else | |
404 { | |
405 // Force symbols to be undefined again when this function exits. | |
406 unwind_protect::add (symbol_table::clear_variables); | |
407 } | |
2974 | 408 |
5743 | 409 unwind_protect::add (octave_call_stack::unwind_pop, 0); |
2974 | 410 |
6149 | 411 if (! (is_nested_function () || is_inline_function ())) |
4238 | 412 { |
413 unwind_protect_ptr (curr_parent_function); | |
414 curr_parent_function = this; | |
415 } | |
416 | |
3875 | 417 // Save and restore args passed for recursive calls. |
2974 | 418 |
3875 | 419 save_args_passed (args); |
3239 | 420 |
3875 | 421 unwind_protect::add (::restore_args_passed, this); |
3239 | 422 |
2974 | 423 string_vector arg_names = args.name_tags (); |
424 | |
425 unwind_protect_int (num_args_passed); | |
426 num_args_passed = nargin; | |
427 | |
428 if (param_list && ! param_list->varargs_only ()) | |
429 { | |
430 param_list->define_from_arg_vector (args); | |
431 if (error_state) | |
432 goto abort; | |
433 } | |
434 | |
3239 | 435 // Force parameter list to be undefined when this function exits. |
436 // Doing so decrements the reference counts on the values of local | |
437 // variables that are also named function parameters. | |
438 | |
439 unwind_protect::add (clear_param_list, param_list); | |
440 | |
441 // Force return list to be undefined when this function exits. | |
442 // Doing so decrements the reference counts on the values of local | |
443 // variables that are also named values returned by this function. | |
444 | |
445 unwind_protect::add (clear_param_list, ret_list); | |
446 | |
2974 | 447 // The following code is in a separate scope to avoid warnings from |
448 // G++ about `goto abort' crossing the initialization of some | |
449 // variables. | |
450 | |
451 { | |
3974 | 452 bind_automatic_vars (arg_names, nargin, nargout, octave_all_va_args ()); |
2974 | 453 |
454 bool echo_commands = (Vecho_executing_commands & ECHO_FUNCTIONS); | |
455 | |
456 if (echo_commands) | |
457 print_code_function_header (); | |
458 | |
459 // Evaluate the commands that make up the function. | |
460 | |
3489 | 461 unwind_protect_bool (evaluating_function_body); |
462 evaluating_function_body = true; | |
463 | |
6657 | 464 if (is_inline_function ()) |
465 { | |
466 assert (cmd_list->length () == 1); | |
467 | |
468 retval = cmd_list->eval (false, nargout); | |
469 } | |
470 else | |
471 cmd_list->eval (); | |
2974 | 472 |
473 if (echo_commands) | |
474 print_code_function_trailer (); | |
475 | |
4207 | 476 if (tree_return_command::returning) |
477 tree_return_command::returning = 0; | |
2974 | 478 |
4207 | 479 if (tree_break_command::breaking) |
480 tree_break_command::breaking--; | |
2974 | 481 |
482 if (error_state) | |
483 { | |
484 traceback_error (); | |
485 goto abort; | |
486 } | |
487 | |
488 // Copy return values out. | |
489 | |
6657 | 490 if (ret_list && ! is_inline_function ()) |
3871 | 491 { |
4748 | 492 ret_list->initialize_undefined_elements (my_name, nargout, Matrix ()); |
3871 | 493 |
5848 | 494 Cell varargout; |
495 | |
6591 | 496 if (ret_list->takes_varargs ()) |
5848 | 497 { |
7336 | 498 octave_value varargout_varval = symbol_table::varval ("varargout"); |
6591 | 499 |
7336 | 500 if (varargout_varval.is_defined ()) |
6591 | 501 { |
7336 | 502 varargout = varargout_varval.cell_value (); |
5848 | 503 |
6591 | 504 if (error_state) |
505 error ("expecting varargout to be a cell array object"); | |
506 } | |
5848 | 507 } |
508 | |
509 if (! error_state) | |
510 retval = ret_list->convert_to_const_vector (varargout); | |
3871 | 511 } |
2974 | 512 } |
513 | |
514 abort: | |
4987 | 515 unwind_protect::run_frame ("user_func_eval"); |
2974 | 516 |
517 return retval; | |
518 } | |
519 | |
520 void | |
4346 | 521 octave_user_function::traceback_error (void) const |
2974 | 522 { |
523 if (error_state >= 0) | |
524 error_state = -1; | |
525 | |
4748 | 526 if (my_name.empty ()) |
2974 | 527 { |
528 if (file_name.empty ()) | |
529 ::error ("called from `?unknown?'"); | |
530 else | |
531 ::error ("called from file `%s'", file_name.c_str ()); | |
532 } | |
533 else | |
534 { | |
535 if (file_name.empty ()) | |
4748 | 536 ::error ("called from `%s'", my_name.c_str ()); |
2974 | 537 else |
538 ::error ("called from `%s' in file `%s'", | |
4748 | 539 my_name.c_str (), file_name.c_str ()); |
2974 | 540 } |
541 } | |
542 | |
543 void | |
544 octave_user_function::accept (tree_walker& tw) | |
545 { | |
546 tw.visit_octave_user_function (*this); | |
547 } | |
548 | |
7336 | 549 #if 0 |
2974 | 550 void |
3933 | 551 octave_user_function::print_symtab_info (std::ostream& os) const |
552 { | |
7336 | 553 symbol_table::print_info (os, local_scope); |
3933 | 554 } |
7336 | 555 #endif |
3933 | 556 |
557 void | |
2974 | 558 octave_user_function::print_code_function_header (void) |
559 { | |
5794 | 560 tree_print_code tpc (octave_stdout, VPS4); |
2974 | 561 |
562 tpc.visit_octave_user_function_header (*this); | |
563 } | |
564 | |
565 void | |
566 octave_user_function::print_code_function_trailer (void) | |
567 { | |
5794 | 568 tree_print_code tpc (octave_stdout, VPS4); |
2974 | 569 |
570 tpc.visit_octave_user_function_trailer (*this); | |
571 } | |
572 | |
573 void | |
574 octave_user_function::bind_automatic_vars | |
3974 | 575 (const string_vector& arg_names, int nargin, int nargout, |
576 const octave_value_list& va_args) | |
2974 | 577 { |
578 if (! arg_names.empty ()) | |
7336 | 579 symbol_table::varref ("argn") = arg_names; |
2974 | 580 |
7336 | 581 symbol_table::varref (".nargin.") = nargin; |
582 symbol_table::varref (".nargout.") = nargout; | |
583 | |
584 symbol_table::mark_hidden (".nargin."); | |
585 symbol_table::mark_hidden (".nargout."); | |
3974 | 586 |
587 if (takes_varargs ()) | |
588 { | |
589 int n = va_args.length (); | |
590 | |
591 Cell varargin (1, n); | |
592 | |
593 for (int i = 0; i < n; i++) | |
594 varargin(0,i) = va_args(i); | |
595 | |
7336 | 596 symbol_table::varref ("varargin") = varargin; |
3974 | 597 } |
2974 | 598 } |
599 | |
4700 | 600 DEFUN (nargin, args, , |
601 "-*- texinfo -*-\n\ | |
602 @deftypefn {Built-in Function} {} nargin ()\n\ | |
603 @deftypefnx {Built-in Function} {} nargin (@var{fcn_name})\n\ | |
604 Within a function, return the number of arguments passed to the function.\n\ | |
605 At the top level, return the number of command line arguments passed to\n\ | |
606 Octave. If called with the optional argument @var{fcn_name}, return the\n\ | |
607 maximum number of arguments the named function can accept, or -1 if the\n\ | |
608 function accepts a variable number of arguments.\n\ | |
5642 | 609 @seealso{nargout, varargin, varargout}\n\ |
4700 | 610 @end deftypefn") |
611 { | |
612 octave_value retval; | |
613 | |
614 int nargin = args.length (); | |
615 | |
616 if (nargin == 1) | |
617 { | |
618 std::string fname = args(0).string_value (); | |
619 | |
620 if (! error_state) | |
621 { | |
7336 | 622 octave_value fcn_val = symbol_table::find_user_function (fname); |
4930 | 623 |
624 octave_user_function *fcn = fcn_val.user_function_value (true); | |
4700 | 625 |
626 if (fcn) | |
627 { | |
628 if (fcn->takes_varargs ()) | |
629 retval = -1; | |
630 else | |
631 { | |
632 tree_parameter_list *param_list = fcn->parameter_list (); | |
633 | |
634 retval = param_list ? param_list->length () : 0; | |
635 } | |
636 } | |
637 else | |
638 error ("nargin: invalid function"); | |
639 } | |
640 else | |
641 error ("nargin: expecting string as first argument"); | |
642 } | |
643 else if (nargin == 0) | |
644 { | |
7336 | 645 retval = symbol_table::varval (".nargin."); |
4700 | 646 |
7336 | 647 if (retval.is_undefined ()) |
648 retval = 0; | |
4700 | 649 } |
650 else | |
5823 | 651 print_usage (); |
4700 | 652 |
653 return retval; | |
654 } | |
655 | |
656 DEFUN (nargout, args, , | |
657 "-*- texinfo -*-\n\ | |
658 @deftypefn {Built-in Function} {} nargout ()\n\ | |
659 @deftypefnx {Built-in Function} {} nargout (@var{fcn_name})\n\ | |
660 Within a function, return the number of values the caller expects to\n\ | |
661 receive. If called with the optional argument @var{fcn_name}, return the\n\ | |
662 maximum number of values the named function can produce, or -1 if the\n\ | |
663 function can produce a variable number of values.\n\ | |
664 \n\ | |
665 For example,\n\ | |
666 \n\ | |
667 @example\n\ | |
668 f ()\n\ | |
669 @end example\n\ | |
670 \n\ | |
671 @noindent\n\ | |
4704 | 672 will cause @code{nargout} to return 0 inside the function @code{f} and\n\ |
4700 | 673 \n\ |
674 @example\n\ | |
675 [s, t] = f ()\n\ | |
676 @end example\n\ | |
677 \n\ | |
678 @noindent\n\ | |
679 will cause @code{nargout} to return 2 inside the function\n\ | |
680 @code{f}.\n\ | |
681 \n\ | |
682 At the top level, @code{nargout} is undefined.\n\ | |
5642 | 683 @seealso{nargin, varargin, varargout}\n\ |
4700 | 684 @end deftypefn") |
685 { | |
686 octave_value retval; | |
687 | |
688 int nargin = args.length (); | |
689 | |
690 if (nargin == 1) | |
691 { | |
692 std::string fname = args(0).string_value (); | |
693 | |
694 if (! error_state) | |
695 { | |
7336 | 696 octave_value fcn_val = symbol_table::find_user_function (fname); |
4930 | 697 |
698 octave_user_function *fcn = fcn_val.user_function_value (true); | |
4700 | 699 |
700 if (fcn) | |
701 { | |
702 if (fcn->takes_var_return ()) | |
703 retval = -1; | |
704 else | |
705 { | |
706 tree_parameter_list *ret_list = fcn->return_list (); | |
707 | |
708 retval = ret_list ? ret_list->length () : 0; | |
709 } | |
710 } | |
711 else | |
712 error ("nargout: invalid function"); | |
713 } | |
714 else | |
715 error ("nargout: expecting string as first argument"); | |
716 } | |
717 else if (nargin == 0) | |
718 { | |
7336 | 719 if (! symbol_table::at_top_level ()) |
4700 | 720 { |
7336 | 721 retval = symbol_table::varval (".nargout."); |
4700 | 722 |
7336 | 723 if (retval.is_undefined ()) |
724 retval = 0; | |
4700 | 725 } |
726 else | |
727 error ("nargout: invalid call at top level"); | |
728 } | |
729 else | |
5823 | 730 print_usage (); |
4700 | 731 |
732 return retval; | |
733 } | |
734 | |
5794 | 735 DEFUN (max_recursion_depth, args, nargout, |
736 "-*- texinfo -*-\n\ | |
737 @deftypefn {Built-in Function} {@var{val} =} max_recursion_depth ()\n\ | |
738 @deftypefnx {Built-in Function} {@var{old_val} =} max_recursion_depth (@var{new_val})\n\ | |
739 Query or set the internal limit on the number of times a function may\n\ | |
740 be called recursively. If the limit is exceeded, an error message is\n\ | |
741 printed and control returns to the top level.\n\ | |
742 @end deftypefn") | |
3131 | 743 { |
5794 | 744 return SET_INTERNAL_VARIABLE (max_recursion_depth); |
2974 | 745 } |
746 | |
747 /* | |
748 ;;; Local Variables: *** | |
749 ;;; mode: C++ *** | |
750 ;;; End: *** | |
751 */ |