annotate libinterp/parse-tree/pt-funcall.cc @ 23083:e9a0469dedd9 stable

maint: strip extra trailing newlines from files.
author John W. Eaton <jwe@octave.org>
date Fri, 20 Jan 2017 12:19:08 -0500
parents 34ce5be04942
children ef4d915df748 3ac9f9ecfae5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 /*
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
22323
bac0d6f07a3e maint: Update copyright notices for 2016.
John W. Eaton <jwe@octave.org>
parents: 21751
diff changeset
3 Copyright (C) 2012-2016 John W. Eaton
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 This file is part of Octave.
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 Octave is free software; you can redistribute it and/or modify it
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 under the terms of the GNU General Public License as published by the
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 Free Software Foundation; either version 3 of the License, or (at your
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 option) any later version.
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 Octave is distributed in the hope that it will be useful, but WITHOUT
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 for more details.
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 along with Octave; see the file COPYING. If not, see
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 <http://www.gnu.org/licenses/>.
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 */
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22
21724
aba2e6293dd8 use "#if ..." consistently instead of "#ifdef" and "#ifndef"
John W. Eaton <jwe@octave.org>
parents: 21301
diff changeset
23 #if defined (HAVE_CONFIG_H)
21301
40de9f8f23a6 Use '#include "config.h"' rather than <config.h>.
Rik <rik@octave.org>
parents: 21200
diff changeset
24 # include "config.h"
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 #endif
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 #include "ov-fcn.h"
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 #include "pt-funcall.h"
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 #include "pt-walk.h"
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 // Function call objects.
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33 void
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 tree_funcall::print (std::ostream& os, bool pr_as_read_syntax,
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35 bool pr_orig_text)
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 print_raw (os, pr_as_read_syntax, pr_orig_text);
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 void
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 tree_funcall::print_raw (std::ostream& os, bool pr_as_read_syntax,
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 bool pr_orig_text)
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 if (pr_orig_text)
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 os << original_text ();
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 else
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 octave_function *fp = fcn.function_value ();
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 std::string nm = fp ? fp->name () : std::string ("<invalid-function>");
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 os << nm << " (";
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54
20897
9aad16a799c9 maint: Replace argc variable name with nargin in C++ code.
Rik <rik@octave.org>
parents: 19697
diff changeset
55 octave_idx_type n = args.length ();
9aad16a799c9 maint: Replace argc variable name with nargin in C++ code.
Rik <rik@octave.org>
parents: 19697
diff changeset
56 for (octave_idx_type i = 0; i < n; i++)
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 args(i).print_raw (os, pr_as_read_syntax);
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59
20897
9aad16a799c9 maint: Replace argc variable name with nargin in C++ code.
Rik <rik@octave.org>
parents: 19697
diff changeset
60 if (i < n - 1)
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61 os << ", ";
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 os << ")";
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 tree_funcall *
18522
bae00174787c avoid GCC warnings
Lasse Schuirmann <lasse@schuirmann.net> and Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 18355
diff changeset
69 tree_funcall::dup (symbol_table::scope_id, symbol_table::context_id) const
15035
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71 tree_funcall *new_fc = new tree_funcall (fcn, args, line (), column ());
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
72
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 new_fc->copy_base (*new_fc);
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 return new_fc;
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 }
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 void
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 tree_funcall::accept (tree_walker& tw)
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 {
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 tw.visit_funcall (*this);
a820a990968e new tree_funcall class
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 }
18355
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
83
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
84 octave_value_list
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
85 tree_funcall::rvalue (int nargout)
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
86 {
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
87 octave_value_list retval;
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
88
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
89 retval = feval (fcn.function_value (), args, nargout);
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
90
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
91 if (retval.length () == 1 && retval(0).is_function ())
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
92 {
21751
b571fc85953f maint: Use two spaces after period to indicate sentence break.
Rik <rik@octave.org>
parents: 21724
diff changeset
93 // The return object is a function. We may need to re-index it using the
b571fc85953f maint: Use two spaces after period to indicate sentence break.
Rik <rik@octave.org>
parents: 21724
diff changeset
94 // same logic as for identifier. This is primarily used for superclass
18355
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
95 // references in classdef.
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
96
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
97 octave_value val = retval(0);
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
98 octave_function *f = val.function_value (true);
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
99
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
100 if (f && ! (is_postfix_indexed ()
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
101 && f->is_postfix_index_handled (postfix_index ())))
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
102 {
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
103 octave_value_list tmp_args;
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
104
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
105 retval = val.do_multi_index_op (nargout, tmp_args);
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
106 }
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
107 }
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
108
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
109 return retval;
9ca314e79956 Allow to call superclass constructor without arguments.
Michael Goffioul <michael.goffioul@gmail.com>
parents: 17746
diff changeset
110 }