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
|
/* Copyright (C) 2023 Aryadev Chavali
* You may distribute and modify this code under the terms of the
* GPLv2 license. You should have received a copy of the GPLv2
* license with this file. If not, please write to:
* aryadev@aryadevchavali.com.
* Created: 2023-10-24
* Author: Aryadev Chavali
* Description: Parser for assembly language
*/
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <string.h>
#include "./parser.h"
#define OPCODE_ON_TYPE(BASE_CODE, TYPE)
const char *perr_as_cstr(perr_t perr)
{
switch (perr)
{
case PERR_OK:
return "OK";
case PERR_INTEGER_OVERFLOW:
return "INTEGER_OVERFLOW";
case PERR_NOT_A_NUMBER:
return "NOT_A_NUMBER";
case PERR_EXPECTED_TYPE:
return "EXPECTED_TYPE";
case PERR_EXPECTED_SYMBOL:
return "EXPECTED_SYMBOL";
case PERR_EXPECTED_OPERAND:
return "EXPECTED_OPERAND";
case PERR_UNKNOWN_OPERATOR:
return "UNKNOWN_OPERATOR";
default:
return "";
}
}
opcode_t get_typed_opcode(opcode_t base_code, data_type_t type)
{
switch (type)
{
case DATA_TYPE_BYTE:
return base_code;
case DATA_TYPE_HWORD:
return base_code + 1;
case DATA_TYPE_WORD:
return base_code + 2;
case DATA_TYPE_NIL:
default:
return 0;
}
}
data_type_t parse_data_type(const char *cstr, size_t length)
{
if (length >= 4 && strncmp(cstr, "BYTE", 4) == 0)
return DATA_TYPE_BYTE;
else if (length >= 5 && strncmp(cstr, "HWORD", 5) == 0)
return DATA_TYPE_HWORD;
else if (length >= 4 && strncmp(cstr, "WORD", 4) == 0)
return DATA_TYPE_WORD;
else
return DATA_TYPE_NIL;
}
perr_t parse_word(token_t token, word *ret)
{
if (token.type == TOKEN_LITERAL_NUMBER)
{
bool is_negative = token.str_size > 1 && token.str[0] == '-';
word w = 0;
if (is_negative)
{
char *end = NULL;
// TODO: Make a standardised type of the same size as word in
// base.h
int64_t i = strtoll(token.str, &end, 0);
if (!(end && end[0] == '\0'))
return PERR_NOT_A_NUMBER;
else if (errno == ERANGE)
{
errno = 0;
return PERR_INTEGER_OVERFLOW;
}
// Copy bits, do not cast
memcpy(&w, &i, sizeof(w));
}
else
{
char *end = NULL;
w = strtoull(token.str, &end, 0);
if (!(end && end[0] == '\0'))
return PERR_NOT_A_NUMBER;
else if (errno == ERANGE)
{
errno = 0;
return PERR_INTEGER_OVERFLOW;
}
}
*ret = w;
return PERR_OK;
}
else if (token.type == TOKEN_LITERAL_CHAR)
{
*ret = token.str[0];
return PERR_OK;
}
else
return PERR_NOT_A_NUMBER;
}
perr_t parse_inst_with_type(token_stream_t *stream, inst_t *ret,
size_t oplength)
{
// Assume the base type OP_*_BYTE is in ret->opcode
token_t token = TOKEN_STREAM_AT(stream->data, stream->used);
char *opcode = token.str;
data_type_t type = parse_data_type(opcode + oplength,
WORD_SAFE_SUB(token.str_size, oplength));
if (type == DATA_TYPE_NIL)
return PERR_EXPECTED_TYPE;
++stream->used;
ret->opcode = get_typed_opcode(ret->opcode, type);
return PERR_OK;
}
perr_t parse_inst_with_operand(token_stream_t *stream, inst_t *ret)
{
// Parse operand
perr_t word_parse_error = parse_word(
TOKEN_STREAM_AT(stream->data, stream->used), &ret->operand.as_word);
if (word_parse_error)
return word_parse_error;
++stream->used;
return PERR_OK;
}
perr_t parse_inst_with_typed_operand(token_stream_t *stream, inst_t *ret,
size_t oplength)
{
perr_t type_parse_error = parse_inst_with_type(stream, ret, oplength);
if (type_parse_error)
return type_parse_error;
// Parse operand
perr_t word_parse_error = parse_word(
TOKEN_STREAM_AT(stream->data, stream->used), &ret->operand.as_word);
if (word_parse_error)
return word_parse_error;
++stream->used;
return PERR_OK;
}
perr_t parse_next_inst(token_stream_t *stream, inst_t *ret)
{
const token_t token = TOKEN_STREAM_AT(stream->data, stream->used);
if (token.type != TOKEN_SYMBOL)
return PERR_EXPECTED_SYMBOL;
inst_t inst = {0};
char *opcode = token.str;
if (token.str_size == 4 && strncmp(opcode, "NOOP", 4) == 0)
{
inst = INST_NOOP;
++stream->used;
}
else if (token.str_size == 4 && strncmp(opcode, "HALT", 4) == 0)
{
inst = INST_HALT;
++stream->used;
}
else if (token.str_size >= 4 && strncmp(opcode, "PUSH", 4) == 0)
{
size_t oplen = 5;
if (token.str_size >= 8 && strncmp(opcode, "PUSH.REG", 8) == 0)
{
oplen = 9;
ret->opcode = OP_PUSH_REGISTER_BYTE;
}
else
ret->opcode = OP_PUSH_BYTE;
return parse_inst_with_typed_operand(stream, ret, oplen);
}
else if (token.str_size >= 3 && strncmp(opcode, "POP", 3) == 0)
{
ret->opcode = OP_POP_BYTE;
return parse_inst_with_type(stream, ret, 4);
}
else if (token.str_size >= 3 && strncmp(opcode, "MOV", 3) == 0)
{
ret->opcode = OP_MOV_BYTE;
return parse_inst_with_typed_operand(stream, ret, 4);
}
else if (token.str_size >= 3 && strncmp(opcode, "DUP", 3) == 0)
{
ret->opcode = OP_DUP_BYTE;
return parse_inst_with_typed_operand(stream, ret, 4);
}
else if (token.str_size >= 3 && strncmp(opcode, "NOT", 3) == 0)
{
ret->opcode = OP_NOT_BYTE;
return parse_inst_with_type(stream, ret, 4);
}
else if (token.str_size >= 2 && strncmp(opcode, "OR", 2) == 0)
{
ret->opcode = OP_OR_BYTE;
return parse_inst_with_type(stream, ret, 3);
}
else if (token.str_size >= 3 && strncmp(opcode, "AND", 3) == 0)
{
ret->opcode = OP_AND_BYTE;
return parse_inst_with_type(stream, ret, 4);
}
else if (token.str_size >= 3 && strncmp(opcode, "XOR", 3) == 0)
{
ret->opcode = OP_XOR_BYTE;
return parse_inst_with_type(stream, ret, 4);
}
else if (token.str_size >= 2 && strncmp(opcode, "EQ", 2) == 0)
{
ret->opcode = OP_EQ_BYTE;
return parse_inst_with_type(stream, ret, 3);
}
else if (token.str_size >= 4 && strncmp(opcode, "PLUS", 4) == 0)
{
ret->opcode = OP_PLUS_BYTE;
return parse_inst_with_type(stream, ret, 5);
}
else if (token.str_size >= 6 && strncmp(opcode, "PRINT.", 6) == 0)
{
const char *type = opcode + 6;
const size_t type_size = WORD_SAFE_SUB(token.str_size, 6);
if (type_size == 4 && strncmp(type, "CHAR", 4) == 0)
inst.opcode = OP_PRINT_CHAR;
else if (type_size == 4 && strncmp(type, "BYTE", 4) == 0)
inst.opcode = OP_PRINT_BYTE;
else if (type_size == 3 && strncmp(type, "INT", 3) == 0)
inst.opcode = OP_PRINT_INT;
else if (type_size == 5 && strncmp(type, "HWORD", 5) == 0)
inst.opcode = OP_PRINT_HWORD;
else if (type_size == 4 && strncmp(type, "LONG", 4) == 0)
inst.opcode = OP_PRINT_LONG;
else if (type_size == 4 && strncmp(type, "WORD", 4) == 0)
inst.opcode = OP_PRINT_WORD;
else
return PERR_UNKNOWN_OPERATOR;
++stream->used;
}
else if (token.str_size >= 5 && strncmp(opcode, "JUMP.", 5) == 0)
{
const char *type = opcode + 5;
const size_t type_size = WORD_SAFE_SUB(token.str_size, 5);
if (type_size == 3 && strncmp(type, "ABS", 3) == 0)
{
ret->opcode = OP_JUMP_ABS;
++stream->used;
return parse_inst_with_operand(stream, ret);
}
else if (type_size == 5 && strncmp(type, "STACK", 5) == 0)
inst.opcode = OP_JUMP_STACK;
else if (type_size == 8 && strncmp(type, "REGISTER", 8) == 0)
{
ret->opcode = OP_JUMP_REGISTER;
++stream->used;
return parse_inst_with_operand(stream, ret);
}
else if (type_size >= 2 && strncmp(type, "IF", 2) == 0)
{
// Parse a typed operand JUMP.IF.<TYPE>
token_t prev = TOKEN_STREAM_AT(stream->data, stream->used);
size_t prev_ptr = stream->used;
TOKEN_STREAM_AT(stream->data, stream->used).str = (char *)type;
TOKEN_STREAM_AT(stream->data, stream->used).str_size = type_size;
ret->opcode = OP_JUMP_IF_BYTE;
perr_t perr = parse_inst_with_typed_operand(stream, ret, 3);
TOKEN_STREAM_AT(stream->data, prev_ptr) = prev;
return perr;
}
else
return PERR_UNKNOWN_OPERATOR;
++stream->used;
}
else
return PERR_UNKNOWN_OPERATOR;
*ret = inst;
return PERR_OK;
}
perr_t parse_stream(token_stream_t *stream, inst_t **ret, size_t *size)
{
darr_t instructions = {0};
darr_init(&instructions, sizeof(inst_t));
while (stream->used < stream->available)
{
inst_t inst = INST_NOOP;
perr_t err = parse_next_inst(stream, &inst);
if (err)
{
free(instructions.data);
return err;
}
darr_append_bytes(&instructions, (byte *)&inst, sizeof(inst_t));
}
*size = instructions.used / sizeof(inst_t);
*ret = (inst_t *)instructions.data;
return PERR_OK;
}
|