-
Notifications
You must be signed in to change notification settings - Fork 0
/
interpreter.d
228 lines (171 loc) · 4.46 KB
/
interpreter.d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
module interpreter;
import utils, common, ast, remarks, exceptions, operators;
@safe nothrow:
final class Interpreter : AsiVisitorThrowing!Asi
{
private EvalStrategy es;
private Thrower thrower;
Exp[dstring] vars;
nothrow this (Thrower thrower) { this.thrower = thrower; }
nothrow Asi run (Asi[] asis, EvalStrategy es)
{
if (!asis.length)
return null;
this.es = es;
thrower.evalStrategy = es;
try
{
foreach (a; asis[0 .. $ - 1])
a.accept(this);
return asis[$ - 1].accept(this);
}
catch (InterpreterException ex)
{
return null;
}
catch (Exception ex)
{
assert (false, ex.msg);
}
}
private Exp eval (Exp e)
{
auto res = e.accept(this);
return sureCast!Exp(res);
}
Var visit (Var v)
{
auto ass = cast(Assign)v.exp;
if (ass)
{
vars[ass.ident.name] = new Missing;
ass.accept(this);
}
else
{
auto ident = cast(Ident)v.exp;
vars[ident.name] = new Missing;
}
return null;
}
Missing visit (Missing m)
{
if (es == EvalStrategy.throwing)
thrower.cannotEvalMissing();
return m;
}
Asi visit (Err er)
{
final switch (es) with (EvalStrategy)
{
case throwing:
thrower.cannotEvalError();
assert(false);
case strict:
return er;
case lax:
return er.asi ? er.asi : er;
}
}
Exp visit (Ident i)
{
auto var = i.name in vars;
if (var)
return eval(*var);
thrower.undefinedVariable(i.name);
return new Missing;
}
Exp visit (Assign a)
{
auto val = eval(a.value);
auto var = a.ident.name in vars;
if (var)
*var = val;
else
{
thrower.undefinedVariable(a.ident.name);
vars[a.ident.name] = val;
}
return val;
}
Int visit (Int i) { return i; }
Exp visit (OpApply opa)
{
auto o1 = eval(opa.op1);
auto o2 = eval(opa.op2);
Exp firstGood;
if (es == EvalStrategy.throwing)
{
Asi x = cast(Missing)o1;
if (!x)
x = cast(Missing)o2;
if (x)
{
thrower.cannotEvalMissing();
return null;
}
x = cast(Err)o1;
if (!x)
x = cast(Err)o2;
if (x)
{
thrower.cannotEvalError();
return null;
}
}
else if (es == EvalStrategy.strict)
{
Asi x = cast(Missing)o1;
if (x)
return new Err(opa);
x = cast(Err)o1;
if (x)
return new Err(opa);
x = cast(Missing)o2;
if (x)
return new Err(opa);
x = cast(Err)o2;
if (x)
return new Err(opa);
}
else
{
Asi x = cast(Missing)o1;
if (x)
o1 = new Int(0);
else
{
x = cast(Err)o1;
if (x)
o1 = new Int(0);
else
firstGood = o1;
}
x = cast(Missing)o2;
if (x)
o2 = new Int(0);
else
{
x = cast(Err)o2;
if (x)
o2 = new Int(0);
else if (!firstGood)
firstGood = o2;
}
}
auto opfn = opa.op in ops;
if (opfn)
return (*opfn)(es, thrower, o1, o2);
thrower.opeatorIsUndefined (opa.op);
final switch (es) with (EvalStrategy)
{
case throwing:
return null;
case strict:
return new Err(opa);
case lax:
assert (firstGood);
return firstGood;
}
}
}