altos/lisp: Split out read debug, add memory validation
[fw/altos] / src / lisp / ao_lisp_eval.c
2017-12-04 Keith Packardaltos/lisp: Split out read debug, add memory validation
2017-12-01 Keith Packardaltos/lisp: split set/def. Add def support to lambdas
2017-12-01 Keith Packardaltos/lisp: return from unmatched cond is #f, not nil
2017-11-26 Keith Packardaltos/lisp: Rename progn to begin
2017-11-20 Keith Packardaltos/lisp: Add floats
2017-11-19 Keith Packardaltos/lisp: Add 'big' ints -- 24 bits wide
2017-11-18 Keith Packardaltos/lisp: Finish first pass through r7rs
2017-11-18 Keith Packardaltos/lisp: Add apply
2017-11-17 Keith Packardaltos/lisp: Add 'else' sematics to cond
2017-11-17 Keith Packardaltos/lisp: Add scheme-style bools (#t and #f)
2017-11-16 Keith Packardaltos/lisp: Add non-cons cdr support
2017-02-20 Keith Packardaltos/lisp: Make DBG settings global
2017-02-20 Keith Packardaltos/lisp: Add continuations
2017-02-20 Keith Packardaltos/lisp: have 'while' return the last body value
2017-02-20 Keith Packardaltos/lisp: Make lambda, cond and while all have implic...
2017-02-20 Keith Packardaltos/lisp: re-use small frames
2017-02-20 Keith Packardaltos/lisp: Evaluate macros once, then smash them into...
2017-02-20 Keith Packardaltos/lisp: Cache freed cons and stack items
2017-02-20 Keith Packardaltos/lisp: Change GC to do moves in batches of 32
2017-02-20 Keith Packardaltos/lisp: Add save/restore infrastructure. Needs...
2017-02-20 Keith Packardaltos/lisp: Make sure memmove only happens once per...
2017-02-20 Keith Packardaltos/lisp: Deal with memory compation in the middle...
2017-02-20 Keith Packardaltos/lisp: add progn, while, read and eval
2017-02-20 Keith Packardaltos/lisp: macros appear to work now
2017-02-20 Keith Packardaltos/lisp: working on lexical scoping
2017-02-20 Keith Packardaltos/lisp: convert GC to non-recursive
2017-02-20 Keith Packardaltos/lisp: more GC issues. add patom
2017-02-20 Keith Packardaltos/lisp: make sure stack->formals_last gets moved...
2017-02-20 Keith Packardaltos/lisp: Change GC move API
2017-02-20 Keith Packardaltos/lisp: get builtin macros working again
2017-02-20 Keith Packardaltos/lisp: Start rewriting eval as state machine
2017-02-20 Keith Packardaltos: Add lambda support to lisp
2017-02-20 Keith Packardaltos/lisp: Separate out values from atoms
2017-02-20 Keith Packardaltos/lisp: add set/setq and ' in reader
2017-02-20 Keith Packardaltos/lisp: Change lisp objects to use ao_poly everywhe...
2017-02-20 Keith Packardaltos: Add lisp reader
2017-02-20 Keith PackardAdd first lisp bits