altos/lisp: Split out read debug, add memory validation
[fw/altos] / src / lisp / ao_lisp.h
2017-12-04 Keith Packardaltos/lisp: Split out read debug, add memory validation
2017-12-03 Keith Packardaltos/lisp: Overflow int computations to float
2017-12-01 Keith Packardaltos/lisp: split set/def. Add def support to lambdas
2017-12-01 Keith Packardaltos/lisp: Split out frame vals from frame struct
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: Generate built-in lambda atoms for const...
2017-11-17 Keith Packardaltos/lisp: Lots more scheme bits
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: Start adding scheme symbols
2017-02-20 Keith Packardaltos/lisp: Tell compiler that the two lisp memory...
2017-02-20 Keith Packardaltos/lisp: Cleanup some DBG defines
2017-02-20 Keith Packardaltos/lisp: Add builtin 'collect'
2017-02-20 Keith Packardaltos/lisp: Sort frames by atom
2017-02-20 Keith Packardaltos/lisp: bounds check in move_map plus binary search
2017-02-20 Keith Packardaltos/lisp: Use poly stashes for stacks
2017-02-20 Keith Packardaltos/lisp: Make DBG settings global
2017-02-20 Keith Packardaltos/lisp: Add continuations
2017-02-20 Keith Packardaltos/lisp: Remove some stale frame debugging checks
2017-02-20 Keith Packardaltos/lisp: Eliminate compiler warning about array...
2017-02-20 Keith Packardaltos/lisp: Optimize chunk searching in collect
2017-02-20 Keith Packardaltos/lisp: Add incremental collection
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: Simplify GC a bit by only marking the head...
2017-02-20 Keith Packardaltos/lisp: Change GC to do moves in batches of 32
2017-02-20 Keith Packardaltos/lisp: Append a CRC to the saved image to validate...
2017-02-20 Keith Packardaltos/lisp: Add save/restore infrastructure. Needs...
2017-02-20 Keith Packardaltos/lisp: Make ao_lisp_ref and ao_lisp_poly non-inline
2017-02-20 Keith Packardaltos/lisp: add length, pack, unpack and flush
2017-02-20 Keith Packardaltos/lisp: Deal with memory compation in the middle...
2017-02-20 Keith Packardaltos/lisp: Make read() return eof atom on end of file
2017-02-20 Keith Packardaltos/lisp: add progn, while, read and eval
2017-02-20 Keith Packardaltos/lisp: Clean up OS integration bits, add defun
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: Change GC move API
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