Mercurial > hg > octave-nkf
annotate libinterp/parse-tree/pt-loop.cc @ 19898:4197fc428c7d
maint: Update copyright notices for 2015.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 11 Feb 2015 14:19:08 -0500 |
parents | d63878346099 |
children | 7077b494c8d2 |
rev | line source |
---|---|
2982 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17744
diff
changeset
|
3 Copyright (C) 1996-2015 John W. Eaton |
2982 | 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. | |
2982 | 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/>. | |
2982 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
4153 | 27 #include "quit.h" |
28 | |
2982 | 29 #include "error.h" |
30 #include "gripes.h" | |
31 #include "oct-map.h" | |
32 #include "oct-lvalue.h" | |
33 #include "ov.h" | |
34 #include "pt-arg-list.h" | |
3770 | 35 #include "pt-bp.h" |
2982 | 36 #include "pt-cmd.h" |
37 #include "pt-exp.h" | |
14906 | 38 #include "pt-jit.h" |
2985 | 39 #include "pt-jump.h" |
2982 | 40 #include "pt-loop.h" |
41 #include "pt-stmt.h" | |
42 #include "pt-walk.h" | |
3877 | 43 #include "unwind-prot.h" |
44 | |
2982 | 45 // While. |
46 | |
47 tree_while_command::~tree_while_command (void) | |
48 { | |
49 delete expr; | |
50 delete list; | |
3665 | 51 delete lead_comm; |
52 delete trail_comm; | |
15023
75d1bc2fd6d2
Compile top level while loops in JIT.
Max Brister <max@2bass.com>
parents:
14920
diff
changeset
|
53 #ifdef HAVE_LLVM |
75d1bc2fd6d2
Compile top level while loops in JIT.
Max Brister <max@2bass.com>
parents:
14920
diff
changeset
|
54 delete compiled; |
75d1bc2fd6d2
Compile top level while loops in JIT.
Max Brister <max@2bass.com>
parents:
14920
diff
changeset
|
55 #endif |
2982 | 56 } |
57 | |
5861 | 58 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
59 tree_while_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
60 symbol_table::context_id context) const |
5861 | 61 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
62 return new tree_while_command (expr ? expr->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
63 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
64 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
65 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
66 line (), column ()); |
5861 | 67 } |
68 | |
2982 | 69 void |
70 tree_while_command::accept (tree_walker& tw) | |
71 { | |
72 tw.visit_while_command (*this); | |
73 } | |
74 | |
3484 | 75 // Do-Until |
76 | |
5861 | 77 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
78 tree_do_until_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
79 symbol_table::context_id context) const |
5861 | 80 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
81 return new tree_do_until_command (expr ? expr->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
82 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
83 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
84 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
85 line (), column ()); |
5861 | 86 } |
87 | |
3484 | 88 void |
89 tree_do_until_command::accept (tree_walker& tw) | |
90 { | |
91 tw.visit_do_until_command (*this); | |
92 } | |
93 | |
2982 | 94 // For. |
95 | |
96 tree_simple_for_command::~tree_simple_for_command (void) | |
97 { | |
13970 | 98 delete lhs; |
2982 | 99 delete expr; |
13245
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
100 delete maxproc; |
2982 | 101 delete list; |
3665 | 102 delete lead_comm; |
103 delete trail_comm; | |
15023
75d1bc2fd6d2
Compile top level while loops in JIT.
Max Brister <max@2bass.com>
parents:
14920
diff
changeset
|
104 #ifdef HAVE_LLVM |
14920
51d4b1018efb
For loops compile with new IR
Max Brister <max@2bass.com>
parents:
14906
diff
changeset
|
105 delete compiled; |
15023
75d1bc2fd6d2
Compile top level while loops in JIT.
Max Brister <max@2bass.com>
parents:
14920
diff
changeset
|
106 #endif |
2982 | 107 } |
108 | |
5861 | 109 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
110 tree_simple_for_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
111 symbol_table::context_id context) const |
5861 | 112 { |
13245
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
113 return new tree_simple_for_command |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
114 (parallel, lhs ? lhs->dup (scope, context) : 0, |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
115 expr ? expr->dup (scope, context) : 0, |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
116 maxproc ? maxproc->dup (scope, context) : 0, |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
117 list ? list->dup (scope, context) : 0, |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
118 lead_comm ? lead_comm->dup () : 0, |
027a2186cd90
parfor keyword and infrastructure, but handle parfor as normal for loop for now
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
119 trail_comm ? trail_comm->dup () : 0, line (), column ()); |
5861 | 120 } |
121 | |
2982 | 122 void |
123 tree_simple_for_command::accept (tree_walker& tw) | |
124 { | |
125 tw.visit_simple_for_command (*this); | |
126 } | |
127 | |
128 tree_complex_for_command::~tree_complex_for_command (void) | |
129 { | |
13970 | 130 delete lhs; |
2982 | 131 delete expr; |
132 delete list; | |
3665 | 133 delete lead_comm; |
134 delete trail_comm; | |
2982 | 135 } |
136 | |
5861 | 137 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
138 tree_complex_for_command::dup (symbol_table::scope_id scope, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
139 symbol_table::context_id context) const |
5861 | 140 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
141 return new tree_complex_for_command (lhs ? lhs->dup (scope, context) : 0, |
10315
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
142 expr ? expr->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
143 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
144 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
145 trail_comm ? trail_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
146 line (), column ()); |
5861 | 147 } |
148 | |
2982 | 149 void |
150 tree_complex_for_command::accept (tree_walker& tw) | |
151 { | |
152 tw.visit_complex_for_command (*this); | |
153 } |