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
|
#include "./include/visitor.h"
#include "./include/hash_table.h"
#include "./include/macros.h"
#include "./include/stack.h"
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
visitor_t *init_visitor(ast_t *root) {
visitor_t *v = (visitor_t *)malloc(sizeof(visitor_t));
if (v == NULL)
die("malloc on visitor");
v->stack_frame = init_stack(512);
v->symbol_table = init_hash_table(10000);
v->root = root;
return v;
}
bool is_self_evaluating(ast_t *e) {
if (e->type == AST_STRING || e->type == AST_INT || e->type == AST_FLOAT ||
e->type == AST_BOOL || e->type == AST_FUNCTION)
return true;
if (e->type == AST_PAIR && e->car == NULL && e->cdr == NULL)
return true;
return false;
}
/* Special symbols: car, cdr, quote, *, /, +, -, %, inc, dec, >, <, >=, <=, /=,
* =, equal (for strings), input */
ast_t *eval_symbol(visitor_t *v, ast_t *e) {}
ast_t *eval_list(visitor_t *v, ast_t *e) {}
ast_t *eval_expr(visitor_t *v, ast_t *e) {
if (is_self_evaluating(e))
return e;
else if (e->type == AST_PAIR)
return eval_list(v, e);
else if (e->type == AST_SYMBOL)
return eval_symbol(v, e);
else {
eval_error(v, e);
}
}
ast_t *eval(visitor_t *v) {}
void eval_error(visitor_t *v, ast_t *e) { exit(1); }
|