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