| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | compiler: bugfix: broken Lisp forms in quasiquote. | Kaz Kylheku | 2018-04-04 | 1 | -1/+1 |
* | stdlib: remove macro-time. | Kaz Kylheku | 2018-04-04 | 3 | -22/+19 |
* | compiler: move sys:bind-mac-error to error.tl. | Kaz Kylheku | 2018-04-04 | 2 | -7/+7 |
* | asm: changes for compiling. | Kaz Kylheku | 2018-04-04 | 1 | -19/+20 |
* | compile-file: don't compile constants. | Kaz Kylheku | 2018-04-04 | 1 | -1/+2 |
* | compiler: don't add compile-time gensym into env. | Kaz Kylheku | 2018-04-04 | 1 | -3/+3 |
* | macro param lists: remove colon hack. | Kaz Kylheku | 2018-04-04 | 1 | -5/+5 |
* | places: remove macro-time. | Kaz Kylheku | 2018-04-03 | 1 | -129/+126 |
* | compiler: rewrite incorrect defmacro expander. | Kaz Kylheku | 2018-04-03 | 1 | -6/+8 |
* | compiler: first cut compile-file implementation. | Kaz Kylheku | 2018-04-03 | 1 | -12/+88 |
* | asm/compiler: use unadorned sym in in-package. | Kaz Kylheku | 2018-04-03 | 2 | -2/+2 |
* | eval/compile: special ops compile-only & eval-only. | Kaz Kylheku | 2018-04-03 | 1 | -1/+1 |
* | compiler: bugfix: missing case in cond. | Kaz Kylheku | 2018-04-02 | 1 | -0/+1 |
* | compiler: bugfix: block: missing mov to oreg. | Kaz Kylheku | 2018-04-02 | 1 | -1/+2 |
* | compiler: unwind-protect bug: wrong output reg. | Kaz Kylheku | 2018-04-02 | 1 | -1/+1 |
* | compiler: switch: bugfix: missing mov to oreg. | Kaz Kylheku | 2018-04-02 | 1 | -0/+5 |
* | compiler: switch bugfix: missing index code. | Kaz Kylheku | 2018-04-02 | 1 | -1/+2 |
* | compiler: big oreg-related bugfix | Kaz Kylheku | 2018-04-01 | 1 | -40/+74 |
* | compiler: bugfix: wrong lambda frame size. | Kaz Kylheku | 2018-04-01 | 1 | -1/+1 |
* | compiler: bugfix: return value optional | Kaz Kylheku | 2018-04-01 | 1 | -2/+2 |
* | compiler: bug: indirect function calls. | Kaz Kylheku | 2018-04-01 | 1 | -1/+3 |
* | compiler: bugfix: bad len check for tree-case. | Kaz Kylheku | 2018-04-01 | 1 | -3/+5 |
* | compiler: bugfix: incorrect jmp in catch. | Kaz Kylheku | 2018-04-01 | 1 | -3/+1 |
* | compiler: bugfix: scope of init-forms in lambda. | Kaz Kylheku | 2018-03-31 | 1 | -1/+1 |
* | compiler: change message for uhandled special op. | Kaz Kylheku | 2018-03-29 | 1 | -1/+1 |
* | compiler: improve register use when compiling calls. | Kaz Kylheku | 2018-03-29 | 1 | -6/+11 |
* | compiler: enforce register balance. | Kaz Kylheku | 2018-03-29 | 1 | -0/+7 |
* | compiler: incorrect null destructuring pattern. | Kaz Kylheku | 2018-03-29 | 1 | -2/+2 |
* | compiler: special case if + eq combo. | Kaz Kylheku | 2018-03-28 | 1 | -6/+58 |
* | compiler: pass whole form to comp-fun-form. | Kaz Kylheku | 2018-03-28 | 1 | -19/+20 |
* | compiler: replace cond implementation. | Kaz Kylheku | 2018-03-28 | 1 | -67/+10 |
* | compiler: move some lookup tables out of compiler struct. | Kaz Kylheku | 2018-03-28 | 1 | -5/+7 |
* | compiler: if: remove spurious instruction. | Kaz Kylheku | 2018-03-28 | 1 | -2/+1 |
* | asm: use capital hex for dregs. | Kaz Kylheku | 2018-03-28 | 1 | -1/+1 |
* | compiler: bugfix in let. | Kaz Kylheku | 2018-03-27 | 1 | -1/+2 |
* | compiler: don't wastefully enter into dreg table. | Kaz Kylheku | 2018-03-27 | 1 | -0/+1 |
* | compiler: diagnose exhaustion of dregs. | Kaz Kylheku | 2018-03-27 | 1 | -4/+6 |
* | compiler: use counter instead of preallocating tregs. | Kaz Kylheku | 2018-03-27 | 1 | -7/+7 |
* | compiler: bugfix: register double free. | Kaz Kylheku | 2018-03-27 | 1 | -1/+2 |
* | compiler: implement prof special op. | Kaz Kylheku | 2018-03-27 | 1 | -0/+10 |
* | vm/asm: new prof instruction. | Kaz Kylheku | 2018-03-27 | 1 | -0/+2 |
* | compiler: implement sys:switch special op. | Kaz Kylheku | 2018-03-27 | 1 | -0/+32 |
* | compiler: bugfix in sys:fbind op. | Kaz Kylheku | 2018-03-27 | 1 | -1/+2 |
* | compiler: recognize call and apply forms. | Kaz Kylheku | 2018-03-27 | 1 | -11/+23 |
* | regression: fix broken tagbody. | Kaz Kylheku | 2018-03-26 | 1 | -19/+5 |
* | compiler: implement sys:catch special op. | Kaz Kylheku | 2018-03-26 | 1 | -0/+46 |
* | vm/asm: new swtch instruction. | Kaz Kylheku | 2018-03-26 | 1 | -0/+40 |
* | compiler: implement handler-bind special op. | Kaz Kylheku | 2018-03-26 | 1 | -0/+14 |
* | compiler/vm: implement sys:abscond-from special form. | Kaz Kylheku | 2018-03-26 | 2 | -2/+5 |
* | compiler: implement block* special form. | Kaz Kylheku | 2018-03-26 | 1 | -3/+6 |