Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv21115
Modified Files:
version.lisp-expr NEWS
Log Message:
1.0.3.12: Use the interpreter when creating functions for undeclared aliens
* No sense in invoking the compiler, since the functions will
just be discarded after one use.
* Undeclared aliens should no longer be hideously expensive
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.3218
retrieving revision 1.3219
diff -u -d -r1.3218 -r1.3219
--- version.lisp-expr 2 Mar 2007 04:35:58 -0000 1.3218
+++ version.lisp-expr 2 Mar 2007 05:05:32 -0000 1.3219
@@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.3.11"
+"1.0.3.12"
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.1144
retrieving revision 1.1145
diff -u -d -r1.1144 -r1.1145
--- NEWS 2 Mar 2007 04:35:58 -0000 1.1144
+++ NEWS 2 Mar 2007 05:05:35 -0000 1.1145
@@ -5,6 +5,7 @@
and gethostbyname, on platforms where the newer functions are available.
As a result, the ALIASES field of HOST-ENT will always be NIL on these
platforms.
+ * optimization: code using alien values with undeclared types is much faster
* bug fix: >= and <= gave wrong results when used with NaNs.
* bug fix: the #= and ## reader macros now interact reasonably with
funcallable instances.
|