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