summaryrefslogtreecommitdiff
path: root/sb-eval2.lisp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix +STACK-MAX+ usage.Matthias Andreas Benkard2013-07-181-1/+1
|
* Stack allocation: Limit size, simplify code.Matthias Andreas Benkard2013-07-181-14/+12
|
* Implement MACROLET.Matthias Andreas Benkard2013-07-181-2/+20
|
* Bug fixes and improvements.Matthias Andreas Benkard2013-07-181-7/+13
|
* PREPARE-LAMBDA: Handle &REST arguments.Matthias Andreas Benkard2013-07-181-1/+3
|
* PREPARE-LAMBDA: Handle &ALLOW-OTHER-KEYS, improve error handling, fix ↵Matthias Andreas Benkard2013-07-171-12/+29
| | | | erroneous mutation of shared closed variables.
* PREPARE-LAMBDA: Fix context.Matthias Andreas Benkard2013-07-171-2/+3
|
* LET, LET*: Fix some environment issues.Matthias Andreas Benkard2013-07-171-22/+14
|
* LET, LET*: Support globally special variables.Matthias Andreas Benkard2013-07-161-39/+86
|
* Reimplement LET* using progressive context extension.Matthias Andreas Benkard2013-07-161-25/+36
|
* PREPARE-LAMBDA: Give default argument forms LET*-like scope.Matthias Andreas Benkard2013-07-161-2/+19
|
* Add a small missed optimization.Matthias Andreas Benkard2013-07-161-1/+1
|
* Merge branch 'stack'Matthias Andreas Benkard2013-07-161-92/+316
|\ | | | | | | | | Conflicts: sb-eval2.lisp
| * PREPARE-LAMBDA: Simplify.Matthias Andreas Benkard2013-07-161-13/+13
| |
| * Remove explicit stack management.Matthias Andreas Benkard2013-07-161-205/+35
| |
| * PREPARE-LAMBDA: Support &KEY ((:keyword var) ...) syntax.Matthias Andreas Benkard2013-07-161-2/+6
| |
| * PREPARE-LAMBDA: Stack-allocate environments instead of managing a stack.Matthias Andreas Benkard2013-07-161-13/+31
| |
| * Implement lambda-lists properly.Matthias Andreas Benkard2013-07-161-24/+145
| |
| * Simplify PREPARE-LAMBDA to rely on &MORE optimization.Matthias Andreas Benkard2013-07-161-40/+17
| |
| * PREPARE-GLOBAL-CALL: Deal with redefinition by using FDEFINITION-OBJECTs.Matthias Andreas Benkard2013-07-161-21/+12
| | | | | | | | | | Conflicts: sb-eval2.lisp
| * Fix indentation.Matthias Andreas Benkard2013-07-151-3/+3
| |
| * LAMBDA: Bail out on complex lambda lists.Matthias Andreas Benkard2013-07-151-1/+3
| | | | | | | | | | Conflicts: sb-eval2.lisp
| * Merge branch 'master' into stackMatthias Andreas Benkard2013-07-151-30/+49
| |\ | | | | | | | | | | | | Conflicts: sb-eval2.lisp
| * | Add a (wrong) definition of LOAD-TIME-VALUE.Matthias Andreas Benkard2013-07-151-0/+4
| | |
| * | Specialize STACK-REF over the stack nesting depth.Matthias Andreas Benkard2013-07-151-14/+72
| | |
| * | LET: Don't confuse binding context with enclosing context wrt. the stack.Matthias Andreas Benkard2013-07-151-10/+24
| | |
| * | Remove a temporary code note.Matthias Andreas Benkard2013-07-151-27/+0
| | |
| * | Establish stacks as necessary.Matthias Andreas Benkard2013-07-151-15/+21
| | |
| * | Remove some debugging output.Matthias Andreas Benkard2013-07-151-3/+1
| | |
| * | Make the stack a SIMPLE-VECTOR, manage the fill-pointer as a special variable.Matthias Andreas Benkard2013-07-151-13/+15
| | |
| * | Introduce a stack for variables not closed over.Matthias Andreas Benkard2013-07-141-59/+268
| | |
* | | PREPARE-GLOBAL-CALL: Deal with redefinition by using FDEFINITION-OBJECTs.Matthias Andreas Benkard2013-07-161-21/+12
| | | | | | | | | | | | | | | Conflicts: sb-eval2.lisp
* | | Fix indentation.Matthias Andreas Benkard2013-07-151-21/+21
| | |
* | | LAMBDA: Bail out on complex lambda lists.Matthias Andreas Benkard2013-07-151-0/+2
| |/ |/|
* | Specialize LAMBDA.Matthias Andreas Benkard2013-07-151-9/+21
| |
* | Add OPTIMIZE declamation.Matthias Andreas Benkard2013-07-151-0/+2
| |
* | Remove obsolete code.Matthias Andreas Benkard2013-07-151-6/+0
|/
* Specialize function calls over the argument count (< 20).Matthias Andreas Benkard2013-07-141-11/+47
|
* Make function references as lazy as necessary.Matthias Andreas Benkard2013-07-131-4/+9
|
* Re-fix BLOCK, TAGBODY, MACROLET, SYMBOL-MACROLET, FUNCTION, M-V-SETQ, M-V-BIND.Matthias Andreas Benkard2013-07-131-19/+49
|
* Reimplement environments as SIMPLE-VECTORs.Matthias Andreas Benkard2013-07-121-67/+113
|
* Pre-lookup global functions.Matthias Andreas Benkard2013-07-121-2/+10
|
* Handle local function calls differently from global calls.Matthias Andreas Benkard2013-07-121-30/+44
|
* Add some type hints.Matthias Andreas Benkard2013-07-111-36/+58
|
* Properly support (FUNCTION (SETF ...)) forms.Matthias Andreas Benkard2013-07-111-4/+3
|
* M-V-PROG1: Fix body evaluation.Matthias Andreas Benkard2013-07-111-1/+1
|
* CATCH: Evaluate the tag form.Matthias Andreas Benkard2013-07-111-3/+4
|
* Reorder functions to make sb-eval2.lisp LOADable without warnings.Matthias Andreas Benkard2013-07-111-2/+2
|
* M-V-B: Add lexicals to the context.Matthias Andreas Benkard2013-07-111-2/+3
|
* PREPARE-REF: Support special variables.Matthias Andreas Benkard2013-07-111-2/+6
|