annotate dmd/ForeachRangeStatement.d @ 187:b0d41ff5e0df

Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
author Abscissa
date Tue, 07 Jun 2011 23:37:34 -0400
parents e3afd1303184
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.ForeachRangeStatement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
114
e28b18c23469 added a module dmd.common for commonly used stuff
Trass3r
parents: 93
diff changeset
3 import dmd.common;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 import dmd.Statement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 import dmd.TOK;
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
6 import dmd.Token;
130
60bb0fe4563e dmdfe 2.037 first main iteration
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 122
diff changeset
7 import dmd.Parameter;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 import dmd.Expression;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 import dmd.Statement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 import dmd.VarDeclaration;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 import dmd.Scope;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 import dmd.ExpInitializer;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 import dmd.Identifier;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 import dmd.Lexer;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 import dmd.ArrayTypes;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16 import dmd.DeclarationStatement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17 import dmd.CompoundDeclarationStatement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18 import dmd.DeclarationExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
19 import dmd.PostExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
20 import dmd.VarExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
21 import dmd.ForStatement;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
22 import dmd.IntegerExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
23 import dmd.AddAssignExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
24 import dmd.CmpExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
25 import dmd.IRState;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
26 import dmd.InterState;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
27 import dmd.OutBuffer;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
28 import dmd.AddExp;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
29 import dmd.WANT;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
30 import dmd.ScopeDsymbol;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
31 import dmd.HdrGenState;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
32 import dmd.InlineScanState;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
33 import dmd.Loc;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
34 import dmd.BE;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
35
187
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
36 import dmd.DDMDExtensions;
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
37
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
38 version(DMDV2)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
39 class ForeachRangeStatement : Statement
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
40 {
187
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
41 mixin insertMemberExtension!(typeof(this));
b0d41ff5e0df Added expandability scheme outlined in http://www.dsource.org/forums/viewtopic.php?t=5659&sid=6f2150ff5b0bffcd47512a6a7608d218
Abscissa
parents: 178
diff changeset
42
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
43 TOK op; // TOK.TOKforeach or TOK.TOKforeach_reverse
130
60bb0fe4563e dmdfe 2.037 first main iteration
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 122
diff changeset
44 Parameter arg; // loop index variable
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
45 Expression lwr;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
46 Expression upr;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
47 Statement body_;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
48
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
49 VarDeclaration key = null;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
50
130
60bb0fe4563e dmdfe 2.037 first main iteration
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 122
diff changeset
51 this(Loc loc, TOK op, Parameter arg, Expression lwr, Expression upr, Statement body_)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
52 {
178
e3afd1303184 Many small bugs fixed
korDen
parents: 130
diff changeset
53 register();
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
54 super(loc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
55 this.op = op;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
56 this.arg = arg;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
57 this.lwr = lwr;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
58 this.upr = upr;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
59 this.body_ = body_;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
60 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
61
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 63
diff changeset
62 override Statement syntaxCopy()
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
63 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
64 ForeachRangeStatement s = new ForeachRangeStatement(loc, op,
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
65 arg.syntaxCopy(),
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
66 lwr.syntaxCopy(),
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
67 upr.syntaxCopy(),
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
68 body_ ? body_.syntaxCopy() : null);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
69
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
70 return s;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
71 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
72
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 63
diff changeset
73 override Statement semantic(Scope sc)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
74 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
75 //printf("ForeachRangeStatement.semantic() %p\n", this);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
76 ScopeDsymbol sym;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
77 Statement s = this;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
78
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
79 lwr = lwr.semantic(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
80 lwr = resolveProperties(sc, lwr);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
81 lwr = lwr.optimize(WANTvalue);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
82 if (!lwr.type)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
83 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
84 error("invalid range lower bound %s", lwr.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
85 return this;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
86 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
87
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
88 upr = upr.semantic(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
89 upr = resolveProperties(sc, upr);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
90 upr = upr.optimize(WANTvalue);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
91 if (!upr.type)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
92 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
93 error("invalid range upper bound %s", upr.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
94 return this;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
95 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
96
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
97 if (arg.type)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
98 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
99 arg.type = arg.type.semantic(loc, sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
100 lwr = lwr.implicitCastTo(sc, arg.type);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
101 upr = upr.implicitCastTo(sc, arg.type);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
102 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
103 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
104 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
105 /* Must infer types from lwr and upr
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
106 */
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
107 scope AddExp ea = new AddExp(loc, lwr, upr);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
108 ea.typeCombine(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
109 arg.type = ea.type.mutableOf();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
110 lwr = ea.e1;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
111 upr = ea.e2;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
112 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
113 static if (true) {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
114 /* Convert to a for loop:
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
115 * foreach (key; lwr .. upr) =>
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
116 * for (auto key = lwr, auto tmp = upr; key < tmp; ++key)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
117 *
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
118 * foreach_reverse (key; lwr .. upr) =>
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
119 * for (auto tmp = lwr, auto key = upr; key-- > tmp;)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
120 */
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
121
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
122 ExpInitializer ie = new ExpInitializer(loc, (op == TOKforeach) ? lwr : upr);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
123 key = new VarDeclaration(loc, arg.type, arg.ident, ie);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
124
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
125 Identifier id = Lexer.uniqueId("__limit");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
126 ie = new ExpInitializer(loc, (op == TOKforeach) ? upr : lwr);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
127 VarDeclaration tmp = new VarDeclaration(loc, arg.type, id, ie);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
128
122
c77e9f4f1793 Statements -> Vector
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 114
diff changeset
129 auto cs = new Statements();
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
130 // Keep order of evaluation as lwr, then upr
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
131 if (op == TOKforeach)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
132 {
122
c77e9f4f1793 Statements -> Vector
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 114
diff changeset
133 cs.push(new DeclarationStatement(loc, new DeclarationExp(loc, key)));
c77e9f4f1793 Statements -> Vector
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 114
diff changeset
134 cs.push(new DeclarationStatement(loc, new DeclarationExp(loc, tmp)));
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
135 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
136 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
137 {
122
c77e9f4f1793 Statements -> Vector
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 114
diff changeset
138 cs.push(new DeclarationStatement(loc, new DeclarationExp(loc, tmp)));
c77e9f4f1793 Statements -> Vector
Eldar Insafutdinov <e.insafutdinov@gmail.com>
parents: 114
diff changeset
139 cs.push(new DeclarationStatement(loc, new DeclarationExp(loc, key)));
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
140 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
141 Statement forinit = new CompoundDeclarationStatement(loc, cs);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
142
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
143 Expression cond;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
144 if (op == TOKforeach_reverse)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
145 { // key-- > tmp
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
146 cond = new PostExp(TOKminusminus, loc, new VarExp(loc, key));
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
147 cond = new CmpExp(TOKgt, loc, cond, new VarExp(loc, tmp));
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
148 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
149 else
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
150 // key < tmp
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
151 cond = new CmpExp(TOKlt, loc, new VarExp(loc, key), new VarExp(loc, tmp));
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
152
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
153 Expression increment = null;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
154 if (op == TOKforeach)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
155 // key += 1
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
156 increment = new AddAssignExp(loc, new VarExp(loc, key), new IntegerExp(1));
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
157
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
158 ForStatement fs = new ForStatement(loc, forinit, cond, increment, body_);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
159 s = fs.semantic(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
160 return s;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
161 } else {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
162 if (!arg.type.isscalar())
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
163 error("%s is not a scalar type", arg.type.toChars());
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
164
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
165 sym = new ScopeDsymbol();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
166 sym.parent = sc.scopesym;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
167 sc = sc.push(sym);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
168
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
169 sc.noctor++;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
170
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
171 key = new VarDeclaration(loc, arg.type, arg.ident, null);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
172 DeclarationExp de = new DeclarationExp(loc, key);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
173 de.semantic(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
174
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
175 if (key.storage_class)
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
176 error("foreach range: key cannot have storage class");
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
177
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
178 sc.sbreak = this;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
179 sc.scontinue = this;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
180 body_ = body_.semantic(sc);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
181
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
182 sc.noctor--;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
183 sc.pop();
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
184 return s;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
185 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
186 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
187
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
188 override bool hasBreak()
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
189 {
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
190 return true;
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
191 }
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
192
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
193 override bool hasContinue()
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
194 {
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
195 return true;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
196 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
197
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
198 override bool usesEH()
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
199 {
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
200 assert(false); // from dmd
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
201 return body_.usesEH();
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
202 }
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
203
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
204 override BE blockExit()
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
205 {
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
206 assert(false); // from dmd
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
207 BE result = BE.BEfallthru;
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
208
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
209 if (lwr && lwr.canThrow())
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
210 result |= BE.BEthrow;
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
211 else if (upr && upr.canThrow())
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
212 result |= BE.BEthrow;
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
213
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
214 if (body_)
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
215 {
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
216 result |= body_.blockExit() & ~(BE.BEbreak | BE.BEcontinue);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
217 }
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
218 return result;
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
219 }
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
220
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
221 override bool comeFrom()
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
222 {
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
223 assert(false); // from dmd
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
224 if (body_)
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
225 return body_.comeFrom();
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
226 return false;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
227 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
228
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
229 override Expression interpret(InterState istate)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
230 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
231 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
232 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
233
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
234 override void toCBuffer(OutBuffer buf, HdrGenState* hgs)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
235 {
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
236 buf.writestring(Token.toChars(op));
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
237 buf.writestring(" (");
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
238
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
239 if (arg.type)
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
240 arg.type.toCBuffer(buf, arg.ident, hgs);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
241 else
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
242 buf.writestring(arg.ident.toChars());
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
243
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
244 buf.writestring("; ");
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
245 lwr.toCBuffer(buf, hgs);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
246 buf.writestring(" .. ");
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
247 upr.toCBuffer(buf, hgs);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
248 buf.writebyte(')');
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
249 buf.writenl();
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
250 buf.writebyte('{');
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
251 buf.writenl();
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
252 if (body_)
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
253 body_.toCBuffer(buf, hgs);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
254 buf.writebyte('}');
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
255 buf.writenl();
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
256 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
257
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
258 override Statement inlineScan(InlineScanState* iss)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
259 {
93
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
260 lwr = lwr.inlineScan(iss);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
261 upr = upr.inlineScan(iss);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
262 if (body_)
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
263 body_ = body_.inlineScan(iss);
df6d0f967680 implemented a whole bunch of methods to make phobos 2.035 compile
Trass3r
parents: 72
diff changeset
264 return this;
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
265 }
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
266
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 63
diff changeset
267 override void toIR(IRState* irs)
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
268 {
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
269 assert(false);
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
270 }
72
2e2a5c3f943a reduced warnings by adding override to the methods
Trass3r
parents: 63
diff changeset
271 }