Skip to content

Commit

Permalink
Bump FASL version for new instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Bike committed Oct 1, 2023
1 parent 54b51de commit 0f90a79
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions FASL.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ After the last instruction is executed, the FASL has been fully loaded. Any rema

# Changelog

## 0.13 (pending)

* `fdesignator` changed to have an environment parameter for first-class environment purposes.
* `environment` fasl op to get the loader environment for `fdesignator`.

## 0.12

* `mv-call[-receive-{one,fixed}] semantics changed so that arguments are on stack rather than values vector.
* `called-fdefinition` instruction added for microoptimized function lookup.
* `fdesignator` instruction added so that `multiple-value-call` can be compiled without other environment support. (NOTE: The 0.12 version of this instruction does not have an environment parameter. The 0.12 version was only used in Clasp and is not represented in this repository's history.)

## 0.11

* New `vcell` and `fcell` instructions can be used to look up variable and function cells at load time to speed execution, if the implementation supports it. They are also useful for first-class environments.
Expand Down
2 changes: 1 addition & 1 deletion cmpltv.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@
(defun write-magic (stream) (write-b32 +magic+ stream))

(defparameter *major-version* 0)
(defparameter *minor-version* 11)
(defparameter *minor-version* 13)

(defun write-version (stream)
(write-b16 *major-version* stream)
Expand Down

0 comments on commit 0f90a79

Please sign in to comment.