#include #include #include #include "vm.h" #include "ast.h" #include "read.h" #include "state.h" static void compile_node(State *S, Chunk *ch, AstNode a) { switch (a.ty) { case AST_IDENT: printf("can't compile ident\n"); exit(1); break; case AST_NUM: chunk_wbc(S, ch, OP_LOADK); chunk_wbc(S, ch, chunk_wconst(S, ch, VAL_NUM(a.as.num))); break; case AST_STRING: { size_t len = strlen(a.as.str); ObjString *o = objstring_copy(S, a.as.str, len); chunk_wbc(S, ch, OP_LOADK); chunk_wbc(S, ch, chunk_wconst(S, ch, VAL_OBJ(o))); break; } case AST_LIST: { AstVec l = a.as.list; #define CK(cond, msg) if (!(cond)) { puts(msg); exit(1); } CK(l.len == 3, "can only compile binary ops"); CK(l.vals[0].ty == AST_IDENT, "can only call ops"); #undef CK char opchar = l.vals[0].as.str[0]; Op op; switch (opchar) { #define OP(char, code) case char: op = code; break; OP('+', OP_ADD) OP('-', OP_SUB) OP('*', OP_MUL) OP('/', OP_DIV) #undef OP default: printf("unkown op %s\n",l.vals[0].as.str); exit(1); break; } compile_node(S, ch, l.vals[1]); compile_node(S, ch, l.vals[2]); chunk_wbc(S, ch, op); } } } int main() { State st = state_new(); State *S = &st; Thread th = thread_new(S); st.th = &th; Chunk ch = chunk_new(S); th.ch = &ch; AstNode an = read(); compile_node(S, &ch, an); chunk_wbc(S, &ch, OP_PRINT); chunk_wbc(S, &ch, OP_RET); runvm(S); }