-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvm.c
More file actions
224 lines (199 loc) · 6.46 KB
/
Copy pathvm.c
File metadata and controls
224 lines (199 loc) · 6.46 KB
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
#include "vm.h"
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include "chunk.h"
#include "common.h"
#include "compiler.h"
#include "debug.h"
#include "memory.h"
#include "object.h"
#include "table.h"
#include "value.h"
VM vm;
static void reset_stack() { vm.stack_top = vm.stack; }
void init_vm() {
reset_stack();
vm.objects = NULL;
init_table(&vm.globals);
init_table(&vm.strings);
}
void free_vm() {
free_table(&vm.globals);
free_table(&vm.strings);
free_objects();
}
Value pop() {
vm.stack_top--;
return *vm.stack_top;
}
static Value peek(int distance) { return vm.stack_top[-1 - distance]; }
static bool is_falsy(Value value) {
return IS_NULL(value) || (IS_BOOL(value) && !AS_BOOL(value));
}
static void make_runtime_error(const char *format, ...) {
va_list args;
va_start(args, format);
vfprintf(stderr, format, args);
va_end(args);
fputs("\n", stderr);
size_t instruction = vm.ip - vm.chunk->code - 1;
int line = vm.chunk->lines[instruction];
fprintf(stderr, "[Line %d] in script\n", line);
reset_stack();
}
void concatenate() {
ObjString *b = AS_STRING(pop());
ObjString *a = AS_STRING(pop());
const size_t new_length = a->length + b->length;
char *new_chars = ALLOCATE(char, new_length + 1);
memcpy(new_chars, a->chars, a->length);
memcpy(new_chars + a->length, b->chars, b->length);
new_chars[new_length] = '\0';
ObjString *result = take_string(new_chars, new_length);
push(OBJECT_VAL(result));
}
InterpretResult run() {
#define READ_BYTE() (*vm.ip++) // return uint8_t
#define READ_CONSTANT() (vm.chunk->pool.values[READ_BYTE()])
#define READ_STRING() AS_STRING(READ_CONSTANT())
#define BINARY_OP(value_type, op) \
do { \
if (!IS_NUMBER(peek(0)) || !IS_NUMBER(peek(1))) { \
make_runtime_error("Operands must be numbers"); \
return INTERPRETER_RUNTIME_ERROR; \
} \
double b = AS_NUMBER(pop()); \
double a = AS_NUMBER(pop()); \
push(value_type(a op b)); \
} while (false)
while (true) {
#ifdef DEBUG_TRACE_EXECUTION
// pointer arithmetic
// 0 1 2 3
// |======|======|======|======|
// ^ ^
// code ip
// => ip - code = offset (e.g: 2 - 0 = 2)
printf("\n");
for (Value *slot = vm.stack; slot < vm.stack_top; slot++) {
printf("[");
print_value(*slot);
printf("]");
}
disassemble_instruction(vm.chunk, (int)(vm.ip - vm.chunk->code));
#endif
uint8_t instruction;
switch (instruction = READ_BYTE()) { // instruction = OP_CODE
case OP_CONSTANT:
Value constant = READ_CONSTANT();
push(constant);
break;
case OP_NEGATE:
if (!IS_NUMBER(peek(0))) {
make_runtime_error("Operand must be a number");
return INTERPRETER_RUNTIME_ERROR;
}
push(NUMBER_VAL(-AS_NUMBER(pop())));
break;
case OP_PRINT:
print_value(pop());
printf("\n");
break;
case OP_RETURN:
return INTERPRETER_OK;
case OP_ADD:
if (IS_STRING(peek(0)) && IS_STRING(peek(1))) {
concatenate();
} else if (IS_NUMBER(peek(0)) && IS_NUMBER(peek(1))) {
double b = AS_NUMBER(pop());
double a = AS_NUMBER(pop());
push(NUMBER_VAL(a + b));
} else {
make_runtime_error("Operands must be strings or numbers");
return INTERPRETER_RUNTIME_ERROR;
}
break;
case OP_SUBSTRACT:
BINARY_OP(NUMBER_VAL, -);
break;
case OP_MULTIPLY:
BINARY_OP(NUMBER_VAL, *);
break;
case OP_DIVIDE:
BINARY_OP(NUMBER_VAL, /);
break;
case OP_NULL:
push(NULL_VAL);
break;
case OP_TRUE:
push(BOOL_VAL(true));
break;
case OP_FALSE:
push(BOOL_VAL(false));
break;
case OP_POP:
pop();
break;
case OP_NOT:
push(BOOL_VAL(is_falsy(pop())));
break;
case OP_EQUAL:
Value b = pop();
Value a = pop();
push(BOOL_VAL(check_equality(a, b)));
break;
case OP_GREATER:
BINARY_OP(BOOL_VAL, >);
break;
case OP_LESS:
BINARY_OP(BOOL_VAL, <);
break;
case OP_DEFINE_GLOBAL:
ObjString *name = READ_STRING();
set_entry(&vm.globals, name, peek(0));
pop();
break;
case OP_GET_GLOBAL:
ObjString *var_name = READ_STRING();
Value value;
if (!get_entry(&vm.globals, var_name, &value)) {
make_runtime_error(
"Undefined variable '%s'", var_name->chars
);
return INTERPRETER_RUNTIME_ERROR;
}
push(value);
break;
case OP_SET_GLOBAL:
ObjString *cur_name = READ_STRING();
if (set_entry(&vm.globals, cur_name, peek(0))) {
delete_entry(&vm.globals, name);
make_runtime_error("Undefined variable '%s'", name->chars);
return INTERPRETER_RUNTIME_ERROR;
}
}
}
#undef READ_BYTE
#undef READ_CONSTANT
#undef READ_STRING
#undef BINARY_OP
}
InterpretResult interpret(const char *source) {
Chunk chunk;
new_chunk(&chunk);
if (!compile(source, &chunk)) {
free_chunk(&chunk);
return INTERPRETER_COMPILE_ERROR;
}
vm.chunk = &chunk;
vm.ip = vm.chunk->code;
InterpretResult result = run();
free_chunk(&chunk);
return result;
}
void push(Value value) {
*vm.stack_top = value;
vm.stack_top++;
}