source: trunk/abcl/CHANGES @ 12117

Last change on this file since 12117 was 12117, checked in by Mark Evenson, 14 years ago

Note change in Java/Lisp? stack frames facility.

  • Property svn:eol-style set to native
File size: 6.0 KB
Line 
1Version 0.16.0
2(unreleased)
3
4  Summary of changes:
5  * Better initarg checking for make-instance and change-class. Fixes ansi-test
6    errors CHANGE-CLASS.1.11, MAKE-INSTANCE.ERROR.3, MAKE-INSTANCE.ERROR.4,
7    CHANGE-CLASS.ERROR.4 and SHARED-INITIALIZE.ERROR.4.
8  * Improve performance of StackFrames (Erik Huelsmann, Ville Voutilainen,
9    with input from Peter Graves and Douglas Miles)
10  * Improve performance of CLOS eql-specializers via cache (Anton Vodonosov).
11  * 'build-from-lisp.sh' shell script (Tobias Rittweiler).
12  * New threading primitives aligned with Java/JVM constructs (Erik Huelsmann)
13
14      SYNCHRONIZED-ON
15      OBJECT-NOTIFY
16      OBJECT-NOTIFY-ALL
17
18  * THREADS package created to hold threads related primitives:
19
20      THREADP THREAD-UNLOCK THREAD-LOCK THREAD-NAME THREAD-ALIVE-P
21      CURRENT-THREAD DESTROY-THREAD INTERRUPT-THREAD WITH-THREAD-LOCK
22      MAKE-THREAD-LOCK MAKE-THREAD INTERRUPT-THREAD
23
24      MAPCAR-THREADS
25     
26      GET-MUTEX MAKE-MUTEX WITH-MUTEX RELEASE-MUTEX
27
28    These primitives are still part of the EXTENSIONS package but are
29    now to be considered as deprecated, marked to be removed with
30    0.22.
31
32   * Stacktraces now contain calls through Java code relevant to
33     debugging (Tobias Rittweiler).
34
35     Backtrace functionality been moved from EXT:BACKTRACE-AS-LIST to
36     SYS:BACKTRACE to mark this changes.  The methods SYS:FRAME-TO-STRING
37     and SYS:FRAME-TO-LIST can be used to inspect the new
38     LISP_STACK_FRAME and JAVA_STACK_FRAME objects.
39 
40Version 0.15.0
41svn://common-lisp.net/project/armedbear/svn/tags/0.15.0/abcl
42(07 Jun, 2009)
43
44 Summary of changes:
45  * 2 more MOP exported symbols to support Cells port
46  * Updated FASL version
47  * Support (pre)compilation of functions with a non-null lexical environment
48  * Compiler and precompiler cleanups
49  * 'rt.lisp' copy from ANSI test suite removed
50  * Many documentation additions for the (pre)compiler
51  * JSR-233 support improvements
52  * Refactoring of classes:
53   - deleted: CompiledFunction, ClosureTemplateFunction, CompiledClosure,
54              Primitive0R, Primitive1R, Primitive2R
55   - renamed: CompiledClosure [from ClosureTemplateFunction]
56  * Compiler support for non-constant &key and &optional initforms
57  * Fixed ticket #21: JVM stack inconsistency [due to use of RET/JSR]
58  * Numerous special bindings handling fixes, especially with respect
59    to (local) transfer of control with GO/RETURN-FROM
60  * Paths retrieved using URL.getPath() require decoding (r11815)
61  * Build doesn't work inside paths with spaces (r11813)
62  * Compilation of export of a symbol not in *package* (r11808)
63  * Moved compiler-related rewriting of forms from precompiler to compiler
64  * Removed chained closures ('XEPs') in case of &optional arguments only
65  * Loading of SLIME fails under specific conditions (r11791)
66  * Binding of *FASL-ANONYMOUS-PACKAGE* breaks specials handling (r11783)
67  * Fixed ANSI tests: DO-ALL-SYMBOLS.{6,9,12}, DEFINE-SETF-EXPANDER.{1,6,?},
68      MULTIPLE-VALUE-SETQ.{5,8}, SYMBOL-MACROLET.8, COMPILE-FILE.{17,18}
69  * COMPILE and COMPILE-FILE second and third values after a failed
70      invocation inside the same compilation-unit (r11769)
71  * JCLASS on non-existing classes should signal an error (r11762)
72  * Dotted lambda lists break interpretation (r11760)
73  * Implementation of MACROEXPAND-ALL and COMPILER-LET (r11755)
74  * Switch from casting to 'instanceof' for performance (r11754)
75  * Google App Engine support: don't die if 'os.arch' isn't set (r11750)
76  * Excessive stack use while resolving #n= and #n# (r11474)
77
78
79Version 0.14.1
80(5 Apr, 2009)
81svn://common-lisp.net/project/armedbear/svn/tags/0.14.1/abcl
82
83 Summary of changes:
84  * Include this CHANGES file and scripting files in the tar and zip files
85
86
87Version 0.14.0
88(5 Apr, 2009)
89svn://common-lisp.net/project/armedbear/svn/tags/0.14.0/abcl
90
91 Summary of changes:
92  * Increased clarity on licensing (Classpath exception
93     mentioned in COPYING, removed LICENSE)
94  * Resolved infinite recursion on TRACEing the compiler
95  * Changes on the lisp based build system for parity with Ant
96  * Fixed interpreter creation in Java Scripting
97  * libabcl.so no longer created; it was solely about installing
98     a SIGINT handler. Libraries should not do that.
99  * boxing of LispObject descendants in JCALL/JCALL-RAW fixed
100  * OpenBSD and NetBSD platform detection
101  * fixed special bindings restores in compiled code for
102     MULTIPLE-VALUE-BIND/LET/LET*/PROGV and function bodies
103  * introduced variadic list() function to replace list1() ... list9()
104  * fix return value type of ACOS with complex argument
105  * fixed precision of multiplication of complex values
106  * fixed use of COMPILE inside file compilation (i.e. COMPILE-FILE)
107  * fix expansion of macros inside RESTART-CASE
108     (fixes RESTART-CASE ANSI failures)
109  * fix macroexpansion in the precompiler
110  * Fixnum and Bignum now use a static factory method;
111      constructors are now private -> increases chances of numbers
112      being EQ
113  * Code cleanup in EXPT to fix (EXPT <any-number> <Bignum>)
114
115
116Version 0.13.0
117(28 Feb, 2009)
118svn://common-lisp.net/project/armedbear/svn/tags/0.13.0/abcl
119
120 Summary of changes:
121  * Separated J and ABCL into two trees
122  * Many many compiler code cleanups
123  * NetBeans project files
124  * Support for CDR6 (See http://cdr.eurolisp.org/document/6/)
125  * More efficient code emission in the compiler
126  * Ant build targets for testing (abcl.test)
127  * Use ConcurrentHashMap to store the lisp threads for increased performance
128  * Fix adjustability of expressly adjustable arrays (ticket #28)
129  * Fix calculation of upperbound on ASH in the compiler
130     (don't calculate numbers too big, instead, return '*')
131  * Introduce LispInteger as the super type of Bignum and Fixnum
132  * Boxing/unboxing for SingleFloat and DoubleFloat values,
133      inclusive of unboxed calculations
134  * Fixed URL decoding bug in loadCompiledFunction (use java.net.URLDecoder)
135  * Fixed line number counting
136  * Inlining of simple calculations (+/-/*)
137  * All static fields declared 'final'
138  * Add support for java.lang.Long based on Bignum to our FFI
139
Note: See TracBrowser for help on using the repository browser.