-
Notifications
You must be signed in to change notification settings - Fork 2
/
runtime.h
452 lines (363 loc) · 11.7 KB
/
runtime.h
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
443
444
445
446
447
448
449
450
451
452
#pragma once
#ifndef RUNTIME_H
#define RUNTIME_H
#include <ciso646>
#include "llvm.h"
#include "ast.h"
#pragma warning(disable : 4267 4297 4018)
/** Value: forward declaration
*/
struct RVal;
#include "gc.h"
#define HEAP_OBJECTS(O) \
O(RVal) \
O(Environment)
/** Character vector: strings of variable size. They are null
terminated. Size excludes the trailing terminator.
*/
struct CharacterVector {
char * data;
unsigned size;
/** Creates a CV from given data and size. Takes ownership of the data.
*/
CharacterVector(int size):
data(new char[size + 1]),
size(size) {
data[size] = 0;
}
/** Creates the character vector from existing null terminated string.
Creates a copy of the string internally.
*/
CharacterVector(char const * from) {
size = strlen(from);
data = new char[size + 1];
memcpy(data, from, size + 1);
}
/** Deletes data. */
~CharacterVector() {
delete [] data;
}
/** Prints to given stream. */
void print(std::ostream & s) {
s << data;
}
};
/** A Double vector consists of an array of doubles and a size.
*/
struct DoubleVector {
double * data;
unsigned size;
/** Creates vector of length one.
*/
DoubleVector(double value):
data(new double[1]),
size(1) {
data[0] = value;
}
/** Creates vector from array. The array is owned by the vector.
*/
DoubleVector(double * data, unsigned size):
data(data),
size(size) {
}
/** Creates vector from doubles.
*/
DoubleVector(std::initializer_list<double> d) {
size = d.size();
data = new double[size];
unsigned i = 0;
for (double dd : d)
data[i++] = dd;
}
/** Deletes data.
*/
~DoubleVector() {
delete [] data;
}
/** Prints to given stream.
*/
void print(std::ostream & s) {
for (unsigned i = 0; i < size; ++i)
s << data[i] << " ";
}
};
/** Binding for the environment.
Binding is a pair of symbol and corresponding Value.
*/
struct Binding {
rift::Symbol symbol;
RVal * value;
};
/** Rift Environment.
Environment represents function's local variables as well as a pointer to the parent environment, i.e. the environment in which the function was declared.
*/
struct Environment : public HeapObject<Environment> {
/** Parent environment.
Nullptr if top environment.
*/
Environment * parent;
/** Array of active bindings.
*/
Binding * bindings;
/** Size of the bindings array.
*/
int size;
/** Creates new environment with the given parent.
*/
Environment(Environment * parent):
parent(parent),
bindings(nullptr),
size(0) {
}
/** Returns the value corresponding to given Symbol.
If the symbol is not found in current bindings, recursively searches parent environments as well.
*/
RVal * get(rift::Symbol symbol) {
for (int i = 0; i < size; ++i)
if (bindings[i].symbol == symbol)
return bindings[i].value;
if (parent != nullptr)
return parent->get(symbol);
else
throw "Variable not found";
}
/** Assigns given value to symbol.
If the symbol already exists it the environment, updates its value, otherwise creates new binding for the symbol and attaches it to the value.
*/
void set(rift::Symbol symbol, RVal * value) {
for (int i = 0; i < size; ++i)
if (bindings[i].symbol == symbol) {
bindings[i].value = value;
return;
}
Binding * n = new Binding[size + 1];
memcpy(n, bindings, size * sizeof(Binding));
delete [] bindings;
bindings = n;
bindings[size].symbol = symbol;
bindings[size].value = value;
++size;
}
};
/** Pointer to Rift function. These functions all takes Environment* and
return an RVal*.
*/
typedef RVal * (*FunPtr)(Environment *);
/** Rift Function. Each function contains an environment, compiled code,
bitcode, an argument list, and an arity. The bitcode and argument names
are there for debugging purposes.
*/
struct RFun {
Environment * env;
FunPtr code;
llvm::Function * bitcode;
rift::Symbol * args;
unsigned argsSize;
/** Create a Rift function. A new argument list is needed, everything
else is shared.
*/
RFun(rift::ast::Fun * fun, llvm::Function * bitcode):
env(nullptr),
code(nullptr),
bitcode(bitcode),
args(fun->args.size()==0 ? nullptr : new int[fun->args.size()]),
argsSize(fun->args.size()) {
unsigned i = 0;
for (rift::ast::Var * arg : fun->args)
args[i++] = arg->symbol;
}
/** Create a closure by copying function f and binding it to environment
e. Arguments are shared.
*/
RFun(RFun * f, Environment * e):
env(e),
code(f->code),
bitcode(f->bitcode),
args(f->args),
argsSize(f->argsSize) {
}
/* Args and env are shared, they are not deleted. */
~RFun() { }
/** Prints bitcode to given stream. */
void print(std::ostream & s) {
llvm::raw_os_ostream ss(s);
bitcode->print(ss);
}
};
/** A Rift Value. All values have a type tage and can point either of a
vector of doubles or chararcters, or a function.
*/
struct RVal : public HeapObject<RVal> {
enum class Type {
Double,
Character,
Function,
};
Type type;
union {
DoubleVector * d;
CharacterVector * c;
RFun * f;
};
/** Creates a boxed double vector from given numbers. */
RVal(std::initializer_list<double> d) :
type(Type::Double),
d(new DoubleVector(d)) {
}
/** Creates a boxed character vector from given string. */
RVal(char const * c) :
type(Type::Character),
c(new CharacterVector(c)) {
}
/** Boxes given DoubleVector. Takes ownership of the vector. */
RVal(DoubleVector * d):
type(Type::Double),
d(d) {
}
/** Boxes given CharacterVector. Takes ownership of the vector. */
RVal(CharacterVector * c):
type(Type::Character),
c(c) {
}
/** Boxes given Function. Takes ownership of the vector. */
RVal(RFun * f):
type(Type::Function),
f(f) {
}
/** Deletes the boxed value. */
~RVal() {
switch (type) {
case Type::Double:
delete d;
break;
case Type::Character:
delete c;
break;
case Type::Function:
delete f;
break;
}
}
/** Prints to given stream. */
void print(std::ostream & s) const {
switch (type) {
case Type::Double: d->print(s); break;
case Type::Character: c->print(s); break;
case Type::Function: f->print(s); break;
}
}
/** Compares values for equality. Only use in tests. */
bool operator == (RVal const & other) {
if (type != other.type) return false;
switch (type) {
case Type::Double: {
if (d->size != other.d->size) return false;
for (unsigned i = 0; i < d->size; ++i)
if (d->data[i] != other.d->data[i]) return false;
return true;
}
case Type::Character: {
if (c->size != other.c->size) return false;
for (unsigned i = 0; i < c->size; ++i)
if (c->data[i] != other.c->data[i]) return false;
return true;
}
default: // For functions...
return f == other.f;
}
}
/** Compares values for inequality. Only used in tests. */
bool operator != (RVal const & other) {
if (type != other.type) return true;
switch (type) {
case Type::Double: {
if (d->size != other.d->size) return true;
for (unsigned i = 0; i < d->size; ++i)
if (d->data[i] != other.d->data[i]) return true;
return false;
}
case Type::Character: {
if (c->size != other.c->size) return true;
for (unsigned i = 0; i < c->size; ++i)
if (c->data[i] != other.c->data[i]) return true;
return false;
}
default: // Functions
return f != other.f;
}
}
};
/** Standard C++ printing support. */
inline std::ostream & operator << (std::ostream & s, RVal const & value) {
value.print(s);
return s;
}
/** Functions are defined "extern C" to avoid exposing C++ name mangling to
LLVM. Dealing with C++ would make the compiler less readable.
For better performance, one could obtain the bitcode of these functions
and inline that at code generation time.
*/
extern "C" {
/** Creates new environment from parent. */
Environment * envCreate(Environment * parent);
/** Get value of symbol in env or its parent. Throw if not found. */
RVal * envGet(Environment * env, int symbol);
/** Binds symbol to the value in env. */
void envSet(Environment * env, int symbol, RVal * value);
/** Creates a double vector from the literal. */
DoubleVector * doubleVectorLiteral(double value);
/** Creates a CV from the literal at cpIndex in the constant pool */
CharacterVector * characterVectorLiteral(int cpIndex);
/** Boxes double vector. */
RVal * fromDoubleVector(DoubleVector * from);
/** Boxes character vector. */
RVal * fromCharacterVector(CharacterVector * from);
/** Boxes function. */
RVal * fromFunction(RFun * from);
/** Returns the value at index. */
RVal * genericGetElement(RVal * from, RVal * index);
/** Sets the value at index. */
void genericSetElement(RVal * target, RVal * index, RVal * value);
/** Adds doubles and concatenates strings. */
RVal * genericAdd(RVal * lhs, RVal * rhs);
/** Subtracts doubles, or raises an error. */
RVal * genericSub(RVal * lhs, RVal * rhs);
/** Multiplies doubles, or raises an error. */
RVal * genericMul(RVal * lhs, RVal * rhs);
/** Divides doubles, or raises an error. */
RVal * genericDiv(RVal * lhs, RVal * rhs);
/** Compares values for equality. */
RVal * genericEq(RVal * lhs, RVal * rhs);
/** Compares values for inequality */
RVal * genericNeq(RVal * lhs, RVal * rhs);
/** Compares doubles using '<', or raises an error. */
RVal * genericLt(RVal * lhs, RVal * rhs);
/** Compares doubles using '>', or raises an errror. */
RVal * genericGt(RVal * lhs, RVal * rhs);
/** Creates a function and binds it to env. Functions are identified by an
index assigned at compile time.
*/
RFun * createFunction(int index, Environment * env);
/** Given a value, converts it to a boolean. Used in branches. */
bool toBoolean(RVal * value);
/** Calls function with argc arguments. argc must match the arity of the
function. A new env is create for the callee and populated by the
arguments.
*/
RVal * call(RVal * callee, unsigned argc, ...);
/** Returns the length of a vector. */
double length(RVal * value);
/** Returns the type of a value as a character vector: 'double',
'character', or 'function'.
*/
CharacterVector * type(RVal * value);
/** Evaluates character vector in env. */
RVal * eval(Environment * env, char const * value);
/** Evaluates value, raising an error if it is not a characer vector. */
RVal * genericEval(Environment * env, RVal * value);
/** Creates a vector, raising an error if they are not of the same type, or
if there is a function among them.
*/
RVal * c(int size, ...);
}
#endif // RUNTIME_H