-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInterpreter.cpp
442 lines (369 loc) · 9.13 KB
/
Interpreter.cpp
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
#include "Callable.h"
#include "Interpreter.h"
#include "RuntimeError.h"
#include "Lox.h"
#include <iostream>
#include "LoxCallable.h"
void Interpreter::Interpret(std::vector<StmtPtr> statements)
{
try
{
for (auto& statement : statements)
{
Execute(statement);
}
} catch (RuntimeError error)
{
Lox::RuntimeErr(error);
}
}
std::any Interpreter::VisitLiteralExpr(const Literal& expr)
{
return expr.GetLiteral();
}
std::any Interpreter::VisitGroupingExpr(const Grouping& expr)
{
return Evaluate(expr.GetExpr());
}
std::any Interpreter::VisitCallExpr(const Call& expr)
{
std::any callee = Evaluate(expr.GetCallee());
auto arguments = std::vector<std::any>();
for (auto& a : expr.GetArguments())
{
arguments.push_back(Evaluate(a));
}
if (callee.type() != typeid(Ref<Callable>))
{
throw RuntimeError(expr.GetParen(), "Can only call functions and classes.");
}
auto function = std::any_cast<Ref<Callable>>(callee);
if (arguments.size() != function->GetArity())
{
size_t arity = function->GetArity();
size_t argsCount = arguments.size();
std::string message = "Expected " + std::to_string(arity);
message += " arguments, but got " + std::to_string(argsCount) + ".";
throw RuntimeError(expr.GetParen(), message);
}
return function->Call(*this, arguments);
}
std::any Interpreter::VisitUnaryExpr(const Unary& expr)
{
std::any right = Evaluate(expr.GetRight());
switch (expr.GetOperator().GetType())
{
case TokenType::BANG:
{
return !IsTruthy(right);
}
case TokenType::MINUS:
{
CheckNumberOperand(expr.GetOperator(), right);
return -std::any_cast<double>(right);
}
}
// Unreachable.
return nullptr;
}
std::any Interpreter::VisitBinaryExpr(const Binary& expr)
{
std::any left = Evaluate(expr.GetLeftExpr());
std::any right = Evaluate(expr.GetRightExpr());
switch (expr.GetOp().GetType())
{
case TokenType::BANG_EQUAL:
{
return !IsEqual(left, right);
}
case TokenType::EQUAL_EQUAL:
{
return IsEqual(left, right);
}
case TokenType::GREATER:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) > std::any_cast<double>(right);
}
case TokenType::GREATER_EQUAL:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) >= std::any_cast<double>(right);
}
case TokenType::LESS:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) < std::any_cast<double>(right);
}
case TokenType::LESS_EQUAL:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) <= std::any_cast<double>(right);
}
case TokenType::MINUS:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) - std::any_cast<double>(right);
}
case TokenType::PLUS:
{
if (left.type() == typeid(double) && right.type() == typeid(double))
{
return std::any_cast<double>(left) + std::any_cast<double>(right);
}
bool leftIsString = left.type() == typeid(std::string);
bool rightIsString = right.type() == typeid(std::string);
if (leftIsString && rightIsString)
{
return std::any_cast<std::string>(left) + std::any_cast<std::string>(right);
}
else
{
std::string leftString = leftIsString ? std::any_cast<std::string>(left) : Stringify(left);
std::string rightString = rightIsString ? std::any_cast<std::string>(right) : Stringify(right);
return leftString + rightString;
}
throw RuntimeError(expr.GetOp(), "Operands must be two numbers or two strings.");
}
case TokenType::SLASH:
{
CheckNumberOperands(expr.GetOp(), left, right);
double denomiator = std::any_cast<double>(right);
if (denomiator == 0.0)
{
throw RuntimeError(expr.GetOp(), "Division by 0.");
}
return std::any_cast<double>(left) / std::any_cast<double>(right);
}
case TokenType::STAR:
{
CheckNumberOperands(expr.GetOp(), left, right);
return std::any_cast<double>(left) * std::any_cast<double>(right);
}
}
return nullptr;
}
std::any Interpreter::VisitVariableExpr(const Var& expr)
{
return _environment->Get(expr.GetName());
//return LookUpVariable(expr.GetName(), expr);
}
std::any Interpreter::LookUpVariable(Token name, const Expr& expr)
{
//if (_locals.find(expr) != _locals.end())
//{
// return _globals->Get(name);
//}
//
//return _environment->GetAt(distance, name.GetLexeme())
}
std::any Interpreter::VisitLogicalExpr(const Logical& expr)
{
std::any left = Evaluate(expr.GetLeft());
if (expr.GetOperator().GetType() == TokenType::OR)
{
if (IsTruthy(left)) return left;
}
else
{
if (!IsTruthy(left)) return left;
}
return Evaluate(expr.GetRight());
}
std::any Interpreter::VisitAssignExpr(const Assign& expr)
{
std::any value = Evaluate(expr.GetValue());
_environment->Assign(expr.GetName(), value);
return value;
}
std::any Interpreter::VisitBlockStmt(const BlockStmt& expr)
{
ExecuteBlock(expr.GetStatements(), _environment);
return nullptr;
}
std::any Interpreter::VisitIfStmt(const If& expr)
{
if (IsTruthy(Evaluate(expr.GetCondition())))
{
Execute(expr.GetThenBranch());
}
else if (expr.HasElseBranch())
{
Execute(expr.GetElseBranch());
}
return nullptr;
}
std::any Interpreter::VisitWhileStmt(const While& stmt)
{
while (IsTruthy(Evaluate(stmt.GetCondition())))
{
Execute(stmt.GetBody());
}
return nullptr;
}
std::any Interpreter::VisitExpressionStmt(const ExpressionStmt& stmt)
{
Evaluate(stmt.GetExpression());
return nullptr;
}
std::any Interpreter::VisitFunctionStmt(const Function& stmt)
{
auto function = CreateRef<LoxFunction>((Function*)&stmt, _environment);
_environment->Define(stmt.GetName().GetLexeme(), static_cast<Ref<Callable>>(function));
return nullptr;
}
std::any Interpreter::VisitPrintStmt(const PrintStmt& stmt)
{
std::any value = Evaluate(stmt.GetExpression());
std::cout << Stringify(value) << std::endl;
return nullptr;
}
std::any Interpreter::VisitReturnStmt(const ReturnStmt& stmt)
{
std::any value = nullptr;
if (stmt.GetValue() != nullptr)
{
value = Evaluate(stmt.GetValue());
}
throw Return(value);
}
std::any Interpreter::VisitVarStmt(const VarStmt& stmt)
{
std::any value = nullptr;
if (stmt.GetInitializer() != nullptr)
{
value = Evaluate(stmt.GetInitializer());
}
_environment->Define(stmt.GetName().GetLexeme(), value);
return nullptr;
}
void Interpreter::ExecuteBlock(std::vector<StmtPtr> statements, Ref<Environment> env)
{
auto& previous = env;
try
{
this->_environment = env;
for (auto& s : statements)
{
Execute(s);
}
}
catch (RuntimeError error)
{
}
_environment = previous;
}
void Interpreter::Resolve(const Expr& expr, int depth)
{
//_locals[expr, depth];
}
void Interpreter::Execute(StmtPtr stmt)
{
stmt->Accept(*this);
}
std::string Interpreter::Stringify(std::any object)
{
if (!object.has_value())
{
return "nil";
}
if (object.type() == typeid(bool))
{
return std::any_cast<bool>(object) ? "true" : "false";
}
if (object.type() == typeid(Token))
{
return Stringify(std::any_cast<Token>(object).GetLiteral());
}
if (object.type() == typeid(double))
{
double number = std::any_cast<double>(object);
if (std::trunc(number) == number)
{
return std::to_string((int)number);
}
return std::to_string(number);
}
if (object.type() == typeid(std::string))
{
return std::any_cast<std::string>(object);
}
return "";
}
std::any Interpreter::Evaluate(ExprPtr expr)
{
return expr->Accept(reinterpret_cast<ExprVisitor<std::any>&>(*this));
}
bool Interpreter::IsEqual(std::any left, std::any right)
{
if (!left.has_value() && !right.has_value())
{
return true;
}
if (!left.has_value())
{
return false;
}
bool leftIsBool = left.type() == typeid(bool);
bool leftIsDouble = left.type() == typeid(double);
if (left.type() != right.type())
{
bool rightIsBool = right.type() == typeid(bool);
bool rightIsDouble = right.type() == typeid(double);
if (leftIsBool && rightIsDouble)
{
bool leftB = std::any_cast<bool>(left);
double leftDouble = leftB ? 1.0 : 0.0;
return leftDouble == std::any_cast<double>(right);
}
if (leftIsDouble && rightIsBool)
{
bool rightb = std::any_cast<bool>(right);
double rightDouble = rightb ? 1.0 : 0.0;
return rightDouble == std::any_cast<double>(left);
}
return false;
}
if (leftIsBool)
{
return std::any_cast<bool>(left) == std::any_cast<bool>(right);
}
if (left.type() == typeid(double))
{
return std::any_cast<double>(left) == std::any_cast<double>(right);
}
// bool and doubles
if (left.type() == typeid(std::string))
{
return std::any_cast<std::string>(left) == std::any_cast<std::string>(right);
}
return false;
}
void Interpreter::CheckNumberOperand(Token op, std::any operand)
{
if (operand.type() == typeid(double))
{
return;
}
throw RuntimeError(op, "Operand must be a number.");
}
void Interpreter::CheckNumberOperands(Token op, std::any left, std::any right)
{
if (left.type() == typeid(double) && right.type() == typeid(double))
{
return;
}
throw RuntimeError(op, "Operands must be a numbers.");
}
bool Interpreter::IsTruthy(std::any object)
{
if (!object.has_value())
{
return false;
}
if (object.type() == typeid(false))
{
return std::any_cast<bool>(object);
}
return true;
}