X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=424122068d291c057002d578c2ea9064b5b0c391;hb=8643c93d4db277f6e1cb880a42407ff29e19f618;hp=1393e53cde383db62961a4a4dccc32e9dd95fb64;hpb=7694785c4bbd49a3c9c1acec262ce527bd3926b3;p=sbcl.git diff --git a/NEWS b/NEWS index 1393e53..4241220 100644 --- a/NEWS +++ b/NEWS @@ -4,15 +4,28 @@ changes in sbcl-1.0.10 relative to sbcl-1.0.9: associates .lisp and .fasl files with the installed SBCL. * minor incompatible change: :UNIX is no longer present in *FEATURES* on Windows. (thanks to Luis Oliviera) - * optimization: SLOT-VALUE and (SETF SLOT-VALUE) are now >20% faster - for variable slot names, when the class of the instance is - an instance of STANDARD-CLASS or FUNCALLABLE-STANDARD-CLASS, and not - any of their subclasses. + * new feature: SB-CLTL2 contrib module now implements + FUNCTION-INFORMATION. (thanks to Larry D'Anna) + * optimization: scavenging weak pointers is now more efficient, + requiring O(1) instead of O(N) per weak pointer to identify + scanvenged vs. unscavenged pointers. (thanks to Paul Khuong) + * optimization: SLOT-VALUE &co are now ~50% faster for variable slot + names, when the class of the instance is a direct instance + STANDARD-CLASS or FUNCALLABLE-STANDARD-CLASS (making them only 3x + as slow as the constant slot-name case.) * optimization: member type construction is now O(N) instead of O(N^2). * optimization: UNION and NUNION are now O(N+M) for large inputs as long as the :TEST function is one of EQ, EQL, EQUAL, or EQUALP. + * enhancement: DEFINE-MODIFY-MACRO lambda-list information is + now more readable in environments like Slime which display it. + (thanks to Tobias C. Rittweiler) + * bug fix: SB-EXT:COMPARE-AND-SWAP was non-atomic unless the compiler + was able to infer the correct argument type for the object on which + the CAS operation was being performed. + * bug fix: copy propagation interfered with parallel assignment + semantics in local calls. (reported by Paul Khuong) changes in sbcl-1.0.9 relative to sbcl-1.0.8: * minor incompatible change: SB-SYS:OUTPUT-RAW-BYTES is deprecated.