summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Expand)AuthorAgeFilesLines
...
* compiler: switch: bugfix: missing mov to oreg.Kaz Kylheku2018-04-021-0/+5
* compiler: switch bugfix: missing index code.Kaz Kylheku2018-04-021-1/+2
* compiler: big oreg-related bugfixKaz Kylheku2018-04-011-40/+74
* compiler: bugfix: wrong lambda frame size.Kaz Kylheku2018-04-011-1/+1
* compiler: bugfix: return value optionalKaz Kylheku2018-04-011-2/+2
* compiler: bug: indirect function calls.Kaz Kylheku2018-04-011-1/+3
* compiler: bugfix: bad len check for tree-case.Kaz Kylheku2018-04-011-3/+5
* compiler: bugfix: incorrect jmp in catch.Kaz Kylheku2018-04-011-3/+1
* compiler: bugfix: scope of init-forms in lambda.Kaz Kylheku2018-03-311-1/+1
* compiler: change message for uhandled special op.Kaz Kylheku2018-03-291-1/+1
* compiler: improve register use when compiling calls.Kaz Kylheku2018-03-291-6/+11
* compiler: enforce register balance.Kaz Kylheku2018-03-291-0/+7
* compiler: incorrect null destructuring pattern.Kaz Kylheku2018-03-291-2/+2
* compiler: special case if + eq combo.Kaz Kylheku2018-03-281-6/+58
* compiler: pass whole form to comp-fun-form.Kaz Kylheku2018-03-281-19/+20
* compiler: replace cond implementation.Kaz Kylheku2018-03-281-67/+10
* compiler: move some lookup tables out of compiler struct.Kaz Kylheku2018-03-281-5/+7
* compiler: if: remove spurious instruction.Kaz Kylheku2018-03-281-2/+1
* asm: use capital hex for dregs.Kaz Kylheku2018-03-281-1/+1
* compiler: bugfix in let.Kaz Kylheku2018-03-271-1/+2
* compiler: don't wastefully enter into dreg table.Kaz Kylheku2018-03-271-0/+1
* compiler: diagnose exhaustion of dregs.Kaz Kylheku2018-03-271-4/+6
* compiler: use counter instead of preallocating tregs.Kaz Kylheku2018-03-271-7/+7
* compiler: bugfix: register double free.Kaz Kylheku2018-03-271-1/+2
* compiler: implement prof special op.Kaz Kylheku2018-03-271-0/+10
* vm/asm: new prof instruction.Kaz Kylheku2018-03-271-0/+2
* compiler: implement sys:switch special op.Kaz Kylheku2018-03-271-0/+32
* compiler: bugfix in sys:fbind op.Kaz Kylheku2018-03-271-1/+2
* compiler: recognize call and apply forms.Kaz Kylheku2018-03-271-11/+23
* regression: fix broken tagbody.Kaz Kylheku2018-03-261-19/+5
* compiler: implement sys:catch special op.Kaz Kylheku2018-03-261-0/+46
* vm/asm: new swtch instruction.Kaz Kylheku2018-03-261-0/+40
* compiler: implement handler-bind special op.Kaz Kylheku2018-03-261-0/+14
* compiler/vm: implement sys:abscond-from special form.Kaz Kylheku2018-03-262-2/+5
* compiler: implement block* special form.Kaz Kylheku2018-03-261-3/+6
* compiler: implement defsymacro special op.Kaz Kylheku2018-03-251-0/+5
* compiler: implement defmacro special op.Kaz Kylheku2018-03-251-0/+14
* compiler: implement defun special op.Kaz Kylheku2018-03-251-0/+20
* compiler: implement defvarl special op.Kaz Kylheku2018-03-251-0/+9
* compiler: implement sys:setqf special op.Kaz Kylheku2018-03-241-0/+17
* compiler: setq bug: wrong return for globals.Kaz Kylheku2018-03-251-2/+2
* compiler: implement sys:lisp1-setq special op.Kaz Kylheku2018-03-241-0/+17
* compiler: implement dwim special op.Kaz Kylheku2018-03-241-0/+7
* compiler: implement sys:lisp1-value special formKaz Kylheku2018-03-241-3/+31
* compiler: specially compile (call ...) forms.Kaz Kylheku2018-03-241-1/+13
* compiler: rename comp-call.Kaz Kylheku2018-03-241-2/+2
* compiler: implement fun special formKaz Kylheku2018-03-241-0/+8
* compiler: add fbind and lbind special formsKaz Kylheku2018-03-241-0/+32
* compiler: fix wrong frame level in lexical functions.Kaz Kylheku2018-03-241-1/+1
* compiler: fix lexical function call.Kaz Kylheku2018-03-241-2/+2