X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fmain.c;h=5ecbcd8352344a389080641efa68a3063ec79775;hb=refs%2Fheads%2Fmaster;hp=6c6124eb5bfacf2530675665342404db8f342819;hpb=6c1eef40f411ff4eec7a3f7599a81be7fae07e2a;p=muddle-interpreter.git diff --git a/src/main.c b/src/main.c index 6c6124e..5ecbcd8 100644 --- a/src/main.c +++ b/src/main.c @@ -16,10 +16,12 @@ License along with this file. If not, see . */ +#include "atom.h" #include "read.h" #include "eval.h" #include "print.h" #include "object.h" +#include "oblist.h" #include #include @@ -28,8 +30,12 @@ License along with this file. If not, see // TODO: put these in interpreter-wide ctx object pool_object *pool; pool_ptr ptop; -char *vhp_base; -char *vhp; +object *vhp_base; +heap_ptr vhp; +vector_object globals; + +// oblists (move to ASOCs once implemented) +uvector_object root; // TODO: store these in current PROCESS frame *cf; @@ -50,6 +56,8 @@ enum READER_OBJCT = 64 }; +void init_standard_env (); + int main () { @@ -71,7 +79,7 @@ main () vhp_base = mmap (0, VECTOR_OBJCT * sizeof (object), PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); - vhp = vhp_base; + vhp = 1; // Reader stack (TODO: dynamically allocate as VECTOR). object rst_base[READER_OBJCT]; @@ -81,11 +89,14 @@ main () // Entire toplevel becomes `for (;;) cf->cont.fn();` char buf[512]; ssize_t n; + // no GC (leak everything) + ptop = 1; + vhp = 1; + root = oblist_create (13); + globals = vector_create (64); + init_standard_env (); while ((n = read (STDIN_FILENO, buf, sizeof (buf))) > 0) { - // mock GC (no object persistence) - ptop = 1; - vhp = vhp_base; // terminate input assert (buf[n - 1] == '\n'); buf[n - 1] = '\0'; @@ -105,13 +116,18 @@ main () // Eval the thing cf->prevcst = cst; push_frame (eval, new_tuple (st.pos, 1), 0); - while (cf->cont.fn) + while (cf->cont.val.fn) { - cf->cont.fn (); + cf->cont.val.fn (); } // Print the thing print_object (&ret); printf ("\n"); + /* + // debugging oblists... + print_object ((object*) &root); + printf ("\n"); + */ // Loop! }