-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvm.c
281 lines (247 loc) · 5.74 KB
/
vm.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
/**
* @file vm.c
* @author Tavish Naruka ([email protected])
* @brief This is a simple stack based VM
*
* @copyright Copyright (c) 2024
*
*/
#include "vm.h"
#include "builtins.h"
#include "helper.h"
#include <bits/pthreadtypes.h>
#include <string.h>
#include <errno.h>
#include <ctype.h>
#include <stdbool.h>
#include <stdlib.h>
enum tok_e {
T_NUM,
T_WORD,
T_NEWLINE,
};
/**
* @brief checks if token is a valid number.
*
* @param tok
* @return true token is a number
* @return false token is not a number
*/
static inline bool vm_token_isnum(char *tok, unsigned int len)
{
for (unsigned int i = 0; i < len; i++) {
if (!isdigit(tok[i])) {
return false;
}
}
return true;
}
/**
* @brief parses tokens
*
* @param ctx
* @param input - input character
* @param token - buffer to fill with token (up to MAX_INPUT_LEN bytes)
* @return length of token if it has been read, 0 if not read yet
*/
static inline int vm_token_read(struct forth_ctx *ctx, const char input, char *token)
{
unsigned int temp;
/* early exit for \r, because we handle only \n */
if (input == '\r') {
return 0;
}
if (ctx->input_len > (MAX_INPUT_LEN - 1)) {
ctx->input_len = 0;
}
/**
* XXX: change to isspace()?
*/
if ((input == ' ') || (input == '\t') || (input == '\n')) {
if (ctx->input_len > 0) {
temp = ctx->input_len;
memcpy(token, ctx->input_buf, temp);
token[temp] = 0;
ctx->input_len = 0;
return temp;
} else {
return 0;
}
}
ctx->input_buf[ctx->input_len++] = input;
return 0;
}
u32 vm_c_func_append(struct forth_ctx *ctx, builtin_func func)
{
unsigned int ret;
if (ctx->c_func_list_idx < (MAX_C_FUNC_LIST_LEN - 1)) {
ctx->c_func_list[ctx->c_func_list_idx] = func;
ret = ctx->c_func_list_idx++;
return ret;
} else {
return DICT_NULL;
}
}
int vm_stack_push_wordname(struct forth_ctx *ctx, char *s, int len)
{
/* maximum 32 len */
len &= (WORD_NAME_MAX_LEN-1);
/* round up to 4 byte boundary */
u32 r_len = ROUND_UP_4(len);
/* clear the to-be-written-to area */
memset(&ctx->stack[ctx->sp], 0, r_len);
/* copy to stack and adjust stack */
memcpy(&ctx->stack[ctx->sp], s, len);
STACK_ADD(r_len/4);
STACK_PUSH(len);
return len;
}
void vm_inner_interpreter(struct forth_ctx *ctx, char *tok)
{
u32 word_ptr;
word_t *next_code_field;
/* find word */
word_ptr = _do_find(ctx, strlen(tok), tok);
if (word_ptr == DICT_NULL) {
/**
* Word not found
* TODO: add some error state in ctx for error handling
*/
TELL("ERROR: word not found (");
TELL(tok);
TELL(")\n");
ctx->ip = DICT_NULL;
return;
}
/* push the pointer that indicates end of return stack */
ctx->ip = DICT_NULL;
ctx->next = _do_2cfa(ctx, word_ptr);
do {
if (ctx->next == DICT_NULL) {
break;
}
next_code_field = WORD_PTR(ctx->next);
if (ctx->rsp > 0) {
if (next_code_field->is_c_func == 1) {
/**
* execute code word (is a c function)
* ctx->next will be incremented by the NEXT() in the c function,
* and/or exit is called, which returns from the current forth word (ip)
*/
ctx->ip = ctx->next; /* sets this as executing word */
ctx->c_func_list[next_code_field->idx_or_ptr](ctx);
} else {
/* this code word is a forth word */
ctx->next = next_code_field->idx_or_ptr; /* this will be docol, after this, rsp is > 0 */
}
} else {
if (next_code_field->is_c_func == 1) {
/**
* execute code word (is a c function)
* NOTE: this cannot be followed by another,
* so we just finish after this.
*/
ctx->ip = ctx->next; /* sets this as executing word */
ctx->c_func_list[next_code_field->idx_or_ptr](ctx);
} else {
/* this code word is a forth word */
ctx->next = next_code_field->idx_or_ptr; /* this will be docol, after this, rsp is > 0 */
}
}
} while(1);
}
/* the "outer" interpreter */
static inline void process_token(struct forth_ctx *ctx, char * tok, enum tok_e tok_type)
{
u32 word_ptr;
void *word_ptr_raw;
u32 word;
dict_header_t *p;
if (ctx->mode == MODE_IMMEDIATE) {
switch (tok_type)
{
case T_NUM:
STACK_PUSH(atoi(tok));
break;
case T_WORD:
vm_inner_interpreter(ctx, tok);
break;
case T_NEWLINE:
default:
TELL("OK\n");
break;
}
} else {
/* MODE_COMPILE */
switch (tok_type)
{
case T_NUM:
word_ptr = _do_find(ctx, strlen("LIT"), "LIT");
word_ptr_raw = WORD_PTR(_do_2cfa(ctx, word_ptr));
dict_append(ctx, word_ptr_raw);
word = atoi(tok);
dict_append(ctx, &word);
break;
case T_WORD:
word_ptr = _do_find(ctx, strlen(tok), tok);
if (word_ptr == DICT_NULL) {
TELL("ERROR: word not found (");
TELL(tok);
TELL(")\n");
ctx->ip = DICT_NULL;
ctx->next = DICT_NULL;
return;
}
p = LINK_PTR(word_ptr);
if (p->flags.immediate) {
vm_inner_interpreter(ctx,tok);
} else {
word_ptr_raw = WORD_PTR(_do_2cfa(ctx, word_ptr));
dict_append(ctx, word_ptr_raw);
}
break;
case T_NEWLINE:
default:
TELL("OK\n");
break;
}
}
}
int vm_interpreter(struct forth_ctx *ctx)
{
char token[MAX_INPUT_LEN + 1];
char input_byte;
int rc;
do {
input_byte = ctx->plat.get_key();
rc = vm_token_read(ctx, input_byte, token);
if (rc > 0) {
if (vm_token_isnum(token, rc)) {
process_token(ctx, token, T_NUM);
} else {
process_token(ctx, token, T_WORD);
}
}
if (input_byte == '\n') {
process_token(ctx, token, T_NEWLINE);
}
} while(1);
}
int vm_init(struct forth_ctx *ctx)
{
if (ctx == NULL || ctx->plat.tell == NULL ||
ctx->plat.get_key == NULL) {
return -1;
}
memset(ctx->dict.mem, 0, sizeof(ctx->dict.mem));
ctx->dict.latest = DICT_NULL;
ctx->dict.here = 0;
ctx->c_func_list_idx = 0;
ctx->sp = 0;
ctx->rsp = 0;
ctx->ip = DICT_NULL;
ctx->mode = MODE_IMMEDIATE;
builtins_init(ctx);
TELL("VM initialized\n");
return 0;
}