-
Notifications
You must be signed in to change notification settings - Fork 0
/
lexer.c
298 lines (255 loc) · 5.24 KB
/
lexer.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
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
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
#include <stdbool.h>
#include <string.h>
#include "headers/lexer.h"
#include "headers/symbol.h"
// For error messages
// Lines up with Token_t enum
char *tokens[] = {
"unknown",
"EOF",
"new line",
"number",
"+",
"-",
"*",
"/",
"%",
"^",
"(",
")",
"variable name",
"built in function",
"undefined symbol",
"=",
"!",
">",
">=",
"<",
"<=",
"==",
"!=",
"AND",
"OR",
"IF",
"ELSE",
"{",
"}",
"WHILE",
"BREAK",
"CONTINUE",
"PRINT",
",",
"string",
"PRINTLN",
"FUNC",
"FUNCTION",
"RETNR"
};
Lexer *newLexer(FILE *f) {
// Multiple lexers can be going at once
Lexer *newLex = (Lexer *) malloc(sizeof(Lexer));
if (newLex == NULL) {
fprintf(stderr, "%s\n", "Could not allocate new lexer");
abort();
}
newLex->inpFile = f;
newLex->line = 1;
newLex->buff = NULL;
return newLex;
}
void freeLexer(Lexer *l) {
free(l);
}
void advance(Lexer *l) {
l->currentChar = fgetc(l->inpFile);
}
Token_t getNextToken(Lexer *l, Lexval *val) {
// BUFFERED TOKEN
if (l->buff != NULL) {
*val = l->buff->lVal; // Copy stored value to provided address
Token_t typ = l->buff->type;
TokenBuff *tok = l->buff;
l->buff = l->buff->next;
free(tok);
return typ;
}
// NORMAL LEXING
skipWhitespace(l); // Space and tab
advance(l);
// NUMBER (unary minus is handled in parsing stage)
if (l->currentChar == '.' || isdigit(l->currentChar)) {
ungetc(l->currentChar, l->inpFile);
fscanf(l->inpFile, "%lf", &val->value);
return NUMBER;
}
if (isalpha(l->currentChar) || l->currentChar == '_') {
Symbol *s;
char sbuff[MAXVAR], *p = sbuff;
do {
*p++ = l->currentChar;
advance(l);
} while (isalnum(l->currentChar) || l->currentChar == '_');
ungetc(l->currentChar, l->inpFile);
*p = '\0';
if ((s=lookup(sbuff)) == 0) { // Not a symbol
s = install(sbuff, UNDEF, 0, false); // type set to var later
}
val->sym = s;
return s->type == UNDEF ? VAR : s->type;
}
if (l->currentChar == '"') {
char *p = val->str;
advance(l);
int cnt = 0;
for (; l->currentChar != '"'; p++, cnt++) {
if (l->currentChar == '\n' || l->currentChar == EOF) {
fprintf(stderr, "Missing close quote\n");
abort();
}
if (cnt > MAXSTR - 1) {
*p = '\0';
fprintf(stderr, "String too long\n");
abort();
}
*p = backslash(l, l->currentChar);
advance(l);
}
*p = '\0';
return STRING;
}
switch (l->currentChar) {
case '\n':
l->line++;
return NL;
case EOF:
return END;
case '+':
advance(l);
if (l->currentChar == '=') {
val->value = (double) PLUS;
return ASIGN;
} else
ungetc(l->currentChar, l->inpFile);
return PLUS;
case '-':
advance(l);
if (l->currentChar == '=') {
val->value = (double) MINUS;
return ASIGN;
} else
ungetc(l->currentChar, l->inpFile);
return MINUS;
case '*':
advance(l);
if (l->currentChar == '=') {
val->value = (double) MUL;
return ASIGN;
} else
ungetc(l->currentChar, l->inpFile);
return MUL;
case '/':
// Comments
advance(l);
if (l->currentChar == '/') {
while (l->currentChar != '\n') // Throw away comment until we find the end of the line
advance(l);
return NL;
} else if (l->currentChar == '=') {
val->value = (double) DIV;
return ASIGN;
} else // Otherwise it's divide
ungetc(l->currentChar, l->inpFile);
return DIV;
case '%':
advance(l);
if (l->currentChar == '=') {
val->value = (double) MOD;
return ASIGN;
} else
ungetc(l->currentChar, l->inpFile);
return MOD;
case '^':
advance(l);
if (l->currentChar == '=') {
val->value = (double) EXP;
return ASIGN;
} else
ungetc(l->currentChar, l->inpFile);
return EXP;
case ';':
return NL;
case '(':
return LPAREN;
case ')':
return RPAREN;
case '{':
return LBRACE;
case '}':
return RBRACE;
case ',':
return COMMA;
case '=':
advance(l);
if (l->currentChar == '=')
return EQ;
else
ungetc(l->currentChar, l->inpFile);
return ASIGN;
case '!':
advance(l);
if (l->currentChar == '=')
return NEQ;
else
ungetc(l->currentChar, l->inpFile);
return NOT;
case '>':
advance(l);
if (l->currentChar == '=')
return GE;
else
ungetc(l->currentChar, l->inpFile);
return GT;
case '<':
advance(l);
if (l->currentChar == '=')
return LE;
else
ungetc(l->currentChar, l->inpFile);
return LT;
default:
return UNKNOWN;
}
return UNKNOWN;
}
char backslash(Lexer *l, int c) {
static char transtab[] = "b\bf\fn\nr\rt\t";
if (c != '\\')
return c;
advance(l);
c = l->currentChar;
if (islower(c) && strchr(transtab, c)) {
return strchr(transtab, c)[1];
}
return c;
}
void unGetToken(Lexer *l, Lexval *val, Token_t tok) {
// Token buffering to allow for lookahead
TokenBuff *newBuff = (TokenBuff *) malloc(sizeof(TokenBuff));
if (newBuff == NULL) {
fprintf(stderr, "Failed to allocate memory for token buffer\n");
abort();
}
newBuff->type = tok;
newBuff->lVal = *val;
newBuff->next = l->buff;
l->buff = newBuff;
}
void skipWhitespace(Lexer *l) {
advance(l);
while (l->currentChar == ' ' || l->currentChar == '\t')
advance(l);
ungetc(l->currentChar, l->inpFile); // Went too far, don't need that
}