Mercurial > hg > octave-lyh
annotate src/pt-loop.cc @ 14470:aad7ad0e15c1
maint: Remove redundant private function from the package manager.
* pkg/private/isautoload.m: remove file.
* pkg/private/install.m: remove calls to isautoload.
author | Carlo de Falco <kingcrimson@tiscali.it> |
---|---|
date | Fri, 16 Mar 2012 18:54:34 +0100 |
parents | 72c96de7a403 |
children | 3f81e8b42955 |
rev | line source |
---|---|
2982 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
13970
diff
changeset
|
3 Copyright (C) 1996-2012 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" | |
2985 | 38 #include "pt-jump.h" |
2982 | 39 #include "pt-loop.h" |
40 #include "pt-stmt.h" | |
41 #include "pt-walk.h" | |
3877 | 42 #include "unwind-prot.h" |
43 | |
2982 | 44 // While. |
45 | |
46 tree_while_command::~tree_while_command (void) | |
47 { | |
48 delete expr; | |
49 delete list; | |
3665 | 50 delete lead_comm; |
51 delete trail_comm; | |
2982 | 52 } |
53 | |
5861 | 54 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
55 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
|
56 symbol_table::context_id context) const |
5861 | 57 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
58 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
|
59 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
60 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
61 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
62 line (), column ()); |
5861 | 63 } |
64 | |
2982 | 65 void |
66 tree_while_command::accept (tree_walker& tw) | |
67 { | |
68 tw.visit_while_command (*this); | |
69 } | |
70 | |
3484 | 71 // Do-Until |
72 | |
5861 | 73 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
74 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
|
75 symbol_table::context_id context) const |
5861 | 76 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
77 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
|
78 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
79 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
80 trail_comm ? trail_comm->dup (): 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
81 line (), column ()); |
5861 | 82 } |
83 | |
3484 | 84 void |
85 tree_do_until_command::accept (tree_walker& tw) | |
86 { | |
87 tw.visit_do_until_command (*this); | |
88 } | |
89 | |
2982 | 90 // For. |
91 | |
92 tree_simple_for_command::~tree_simple_for_command (void) | |
93 { | |
13970 | 94 delete lhs; |
2982 | 95 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
|
96 delete maxproc; |
2982 | 97 delete list; |
3665 | 98 delete lead_comm; |
99 delete trail_comm; | |
2982 | 100 } |
101 | |
5861 | 102 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
103 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
|
104 symbol_table::context_id context) const |
5861 | 105 { |
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
|
106 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
|
107 (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
|
108 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
|
109 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
|
110 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
|
111 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
|
112 trail_comm ? trail_comm->dup () : 0, line (), column ()); |
5861 | 113 } |
114 | |
2982 | 115 void |
116 tree_simple_for_command::accept (tree_walker& tw) | |
117 { | |
118 tw.visit_simple_for_command (*this); | |
119 } | |
120 | |
121 tree_complex_for_command::~tree_complex_for_command (void) | |
122 { | |
13970 | 123 delete lhs; |
2982 | 124 delete expr; |
125 delete list; | |
3665 | 126 delete lead_comm; |
127 delete trail_comm; | |
2982 | 128 } |
129 | |
5861 | 130 tree_command * |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
131 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
|
132 symbol_table::context_id context) const |
5861 | 133 { |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7469
diff
changeset
|
134 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
|
135 expr ? expr->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
136 list ? list->dup (scope, context) : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
137 lead_comm ? lead_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
138 trail_comm ? trail_comm->dup () : 0, |
57a59eae83cc
untabify src C++ source files
John W. Eaton <jwe@octave.org>
parents:
10160
diff
changeset
|
139 line (), column ()); |
5861 | 140 } |
141 | |
2982 | 142 void |
143 tree_complex_for_command::accept (tree_walker& tw) | |
144 { | |
145 tw.visit_complex_for_command (*this); | |
146 } |