-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler.c
268 lines (210 loc) · 7.26 KB
/
compiler.c
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
#include <stdio.h>
#include <stdlib.h>
#include "object.h"
#include "common.h"
#include "compiler.h"
#include "scanner.h"
#ifdef DEBUG_PRINT_CODE
#include "debug.h"
#endif
// forward declarations to handle the fact that some functions call each other
static void expression();
static parse_rule_t* get_rule(token_type_t type);
static void parse_precedence(precedence_t precedence);
parser_t parser;
chunk_t* compiling_chunk;
static chunk_t* current_chunk() {
return compiling_chunk;
}
static void error_at(token_t* token, const char* message) {
// already found in error.
if (parser.panic_mode) return;
parser.panic_mode = true;
fprintf(stderr, "[line %d] Error", token->line);
if (token->type == TOKEN_EOF) {
fprintf(stderr, " at end");
} else if (token->type == TOKEN_ERROR) {
// Nothing
} else {
fprintf(stderr, " at '%.*s'", token->length, token->start);
}
fprintf(stderr, ": %s\n", message);
parser.had_error = true;
}
static void error(const char* message) {
error_at(&parser.previous, message);
}
static void error_at_current(const char* message) {
error_at(&parser.current, message);
}
static void advance() {
// Grabs the new `parser.current` value and breaks.
parser.previous = parser.current;
for (;;) {
parser.current = scan_token();
if (parser.current.type != TOKEN_ERROR) break;
error_at_current(parser.current.start);
}
}
static void consume(token_type_t type, const char* message) {
if (parser.current.type == type) {
advance();
return;
}
error_at_current(message);
}
static void emit_byte(uint8_t byte) {
write_chunk(current_chunk(), byte, parser.previous.line);
}
static void emit_bytes(uint8_t byte1, uint8_t byte2) {
emit_byte(byte1);
emit_byte(byte2);
}
static void emit_return() {
emit_byte(OP_RETURN);
}
static uint8_t make_constant(value_t value) {
int constant = add_constant(current_chunk(), value);
// remove this constant now that our constants array is dynamic.
if (constant > UINT8_MAX) {
error("Too many constants in one chunk.");
return 0;
}
return (uint8_t)constant;
}
static void emit_constant(value_t value) {
emit_bytes(OP_CONSTANT, make_constant(value));
}
static void end_compiler() {
emit_return();
#ifdef DEBUG_PRINT_CODE
if (!parser.had_error) {
disassemble_chunk(current_chunk(), "code");
}
#endif
}
static void parse_precedence(precedence_t precedence) {
advance();
parse_fn_t prefix_rule = get_rule(parser.previous.type)->prefix;
if (prefix_rule == NULL) {
error("Expect expression.");
return;
}
prefix_rule();
while (precedence <= get_rule(parser.current.type)->precedence) {
advance();
parse_fn_t infix_rule = get_rule(parser.previous.type)->infix;
infix_rule();
}
}
static void expression() {
parse_precedence(PREC_ASSIGNMENT);
}
static void binary() {
token_type_t operator_type = parser.previous.type;
parse_rule_t* rule = get_rule(operator_type);
parse_precedence((precedence_t)(rule->precedence + 1));
switch (operator_type) {
case TOKEN_BANG_EQUAL: emit_bytes(OP_EQUAL, OP_NOT); break;
case TOKEN_EQUAL_EQUAL: emit_byte(OP_EQUAL); break;
case TOKEN_GREATER: emit_byte(OP_GREATER); break;
case TOKEN_GREATER_EQUAL: emit_bytes(OP_LESS, OP_NOT); break;
case TOKEN_LESS: emit_byte(OP_LESS); break;
case TOKEN_LESS_EQUAL: emit_bytes(OP_GREATER, OP_NOT); break;
case TOKEN_PLUS: emit_byte(OP_ADD); break;
case TOKEN_MINUS: emit_byte(OP_SUBTRACT); break;
case TOKEN_STAR: emit_byte(OP_MULTIPLY); break;
case TOKEN_SLASH: emit_byte(OP_DIVIDE); break;
default: return; // Unreachable.
}
}
static void literal() {
switch (parser.previous.type) {
case TOKEN_FALSE: emit_byte(OP_FALSE); break;
case TOKEN_NULL: emit_byte(OP_NULL); break;
case TOKEN_TRUE: emit_byte(OP_TRUE); break;
default: return; // unreachable.
}
}
static void number() {
double value = strtod(parser.previous.start, NULL);
emit_constant(NUMBER_VAL(value));
}
static void string() {
emit_constant(OBJ_VAL(copy_string(
// +1 and -2 parts trim the leading and trailing quotation marks.
// -2 because " and the EOL character.
parser.previous.start + 1, parser.previous.length - 2
)));
}
static void grouping() {
expression();
consume(TOKEN_RIGHT_PAREN, "Expect ')' after expression.");
}
static void unary() {
token_type_t operator_type = parser.previous.type;
// compile the operand
parse_precedence(PREC_UNARY);
// emit the operator instruction
switch (operator_type) {
case TOKEN_BANG: emit_byte(OP_NOT); break;
case TOKEN_MINUS: emit_byte(OP_NEGATE); break;
default: return;
}
}
parse_rule_t rules[] = {
[TOKEN_LEFT_PAREN] = {grouping, NULL, PREC_NONE},
[TOKEN_RIGHT_PAREN] = {NULL, NULL, PREC_NONE},
[TOKEN_LEFT_BRACE] = {NULL, NULL, PREC_NONE},
[TOKEN_RIGHT_BRACE] = {NULL, NULL, PREC_NONE},
[TOKEN_COMMA] = {NULL, NULL, PREC_NONE},
[TOKEN_DOT] = {NULL, NULL, PREC_NONE},
[TOKEN_MINUS] = {unary, binary, PREC_TERM},
[TOKEN_PLUS] = {NULL, binary, PREC_TERM},
[TOKEN_SEMICOLON] = {NULL, NULL, PREC_NONE},
[TOKEN_SLASH] = {NULL, binary, PREC_FACTOR},
[TOKEN_STAR] = {NULL, binary, PREC_FACTOR},
[TOKEN_BANG] = {unary, NULL, PREC_NONE},
[TOKEN_BANG_EQUAL] = {NULL, binary, PREC_EQUALITY},
[TOKEN_EQUAL] = {NULL, NULL, PREC_NONE},
[TOKEN_EQUAL_EQUAL] = {NULL, binary, PREC_EQUALITY},
[TOKEN_GREATER] = {NULL, binary, PREC_COMPARISON},
[TOKEN_GREATER_EQUAL] = {NULL, binary, PREC_COMPARISON},
[TOKEN_LESS] = {NULL, binary, PREC_COMPARISON},
[TOKEN_LESS_EQUAL] = {NULL, binary, PREC_COMPARISON},
[TOKEN_IDENTIFIER] = {NULL, NULL, PREC_NONE},
[TOKEN_STRING] = {string, NULL, PREC_NONE},
[TOKEN_NUMBER] = {number, NULL, PREC_NONE},
[TOKEN_AND] = {NULL, NULL, PREC_NONE},
[TOKEN_CLASS] = {NULL, NULL, PREC_NONE},
[TOKEN_ELSE] = {NULL, NULL, PREC_NONE},
[TOKEN_FALSE] = {literal, NULL, PREC_NONE},
[TOKEN_FOR] = {NULL, NULL, PREC_NONE},
[TOKEN_FUNCTION] = {NULL, NULL, PREC_NONE},
[TOKEN_IF] = {NULL, NULL, PREC_NONE},
[TOKEN_NULL] = {literal, NULL, PREC_NONE},
[TOKEN_OR] = {NULL, NULL, PREC_NONE},
[TOKEN_PRINT] = {NULL, NULL, PREC_NONE},
[TOKEN_RETURN] = {NULL, NULL, PREC_NONE},
[TOKEN_SUPER] = {NULL, NULL, PREC_NONE},
[TOKEN_THIS] = {NULL, NULL, PREC_NONE},
[TOKEN_TRUE] = {literal, NULL, PREC_NONE},
[TOKEN_VAR] = {NULL, NULL, PREC_NONE},
[TOKEN_WHILE] = {NULL, NULL, PREC_NONE},
[TOKEN_ERROR] = {NULL, NULL, PREC_NONE},
[TOKEN_EOF] = {NULL, NULL, PREC_NONE},
};
static parse_rule_t* get_rule(token_type_t type) {
return &rules[type];
}
bool compile(const char* source, chunk_t* chunk) {
init_scanner(source);
compiling_chunk = chunk;
parser.had_error = false;
parser.panic_mode = false;
advance();
expression();
consume(TOKEN_EOF, "Expect end of expression.");
end_compiler();
return !parser.had_error;
}