* NEWS: Added news.
[cacao.git] / NEWS
1 New in release 0.99 (August x, 2007)
2
3   * Initial support to use OpenJDK as Java core library.
4   * Fixed memory leak in Boehm-GC.
5   * Use 8-byte stack-slots on all architectures.
6   * Faster C-to-Java calls.
7   * Removed genoffsets, cross-compilation is now much easier.
8
9
10 New in release 0.98 (June 6, 2007)
11
12   * ARM and MIPS32 code generators are now open-source.
13   * PowerPC64 code generator was added.
14   * Sun's phoneme CLDC-1.1 classes can now be used as Java core
15     library.
16   * Exception throwing code was completely rewritten, this saves JIT
17     code size from 20% up to 50%.
18   * Lock-record code was rewritten and a memory leak was fixed.
19   * Threads code has been reworked and improved.
20   * Exception code has been reworked and improved.
21   * Implemented Class/Method/Field getSignature.
22   * A lot of stuff has been reworked, fixed or improved in the whole
23     VM code.
24   * Fixed memory leak in threads code.
25
26
27 New in release 0.97 (October 30, 2006)
28
29   * New instruction format.
30   * New intermediate representation with unified variables.
31   * Local subroutine elimination.
32   * Fixed the interpreter - it runs eclipse now.
33   * New stack-based verifier (used for -Xint).
34   * Boehm GC updated to version 6.8.
35   * Added enable/disable system assertion support (-esa/-dsa).
36   * Initial javax.management support.
37   * Initial sun.misc.Unsafe (JSR166) support.
38   * Added failed class as message to ClassCastException's.
39   * AttachCurrentThread, DetachCurrentThread, and
40     AttachCurrentThreadAsDaemon implemented.
41   * libjvm is now opened via dlopen (removed -rpath stuff).
42   * Data segment now reuses values (if possible).
43
44   * Fixed AbstractMethodError bug.
45   * Fixed builtin_isanysubclass (BeanShell bug).
46   * Fixed a memory leak in dump memory.
47   * Fixed a bug with DUP2_X1 and DUP2_X2.
48   * Safe decoding of invalid UTF-8 sequences in NewStringUTF.
49   * Fixed line numbers in exceptions thrown through the JIT.
50   * Proper null-check for MONITOREXIT.
51   * Many low-level jasmin tests added.
52
53
54 New in release 0.96 (May 29, 2006)
55
56   * New tasuki lock implementation resolves deadlock problems on
57     multi-processor machines.
58   * Handle Miranda-methods properly.
59   * try-catch line number problem with jikes fixed.
60   * Added support for libjvm.so (including invocation API).
61   * Stripped down object code size of code generators.
62   * Increased default maximum heap size to 128MB and decreased default
63     stack size to 64kB.
64   * Cleaned up internal handling of Unicode strings.
65   * Fixed getResources of bootstrap classloader.
66   * Correct handling of boot packages (provided glibj.zip contains a
67     jar index).
68   * Exception handling fixes (don't allocate memory on Java heap).
69   * x86_64's code generator generates not RISC-style code.
70   * Green threads implementation removed.
71   * Semaphore implementation for Darwin (taken from Boehm).
72   * sem_wait interrupted by signal fixed.
73   * Overflow in Object.wait() (partially) fixed (caused busy waiting
74     in JOnAS).
75   * Store JNI global refs in native hashtable instead of Java
76     hashtable (bootstrap problem).
77   * Argument passing fixed for powerpc-linux (asm_vm_call_method).
78
79
80 New in release 0.95 (February 13, 2006)
81
82   * Dead-lock bugfix.  This should fix the random dead-locks seen in
83     Eclipse or other applications.
84   * Search for suitable jar program during configure, can be specified
85     via JAR environment variable
86   * --enable-zlib bugfix
87   * i386 bugfix: Set FPU to 64-bit on VM startup (fixes Debian bug
88     #350729)
89   * powerpc bugfix: (M_COPY): Handle longs and doubles properly.
90   * Fixed instructions copying stackslots (like DUP_X1).
91   * Fixed classcache-related problem with java.lang.reflect.Proxy.
92   * Throw correct exception when trying to load a directory
93     as a classfile (from a .zip file).
94   * Fixed incorrect method resolution when calling instance methods 
95     through JNI (fixes CACAO bugs #17 and #18).
96
97
98 New in release 0.94 (January 22, 2006)
99
100   * support compilation of Interpreter and JIT compiler into one binary (not
101     enabled by default)
102   * bootstrap ZIP code rewrite (VM startup time improvement)
103   * fixed JNI DirectByteBuffer functions, jogl works now
104   * removed most third-party files from the repository, we link to the
105     libraries instead
106   * removed VM interface Java files which were identical to the GNU
107     Classpath upstream version
108   * added defineClassWithTransformers to java.lang.VMClassLoader, now we are
109     able to build against the generics branch
110   * Java compiler which should be used during compilation can be specified
111     via JAVAC environment variable
112   * a lot of bugfixes
113
114
115 New in release 0.93 (November 23, 2005)
116
117   * Java 1.5 support
118   * JIT codegenerators for Arm and MIPS (32-bit, -o32), currently
119     closed-source
120   * integration of a vmgen-based interpreter (--enable-intrp)
121   * removal of GNU classpath, CACAO now uses upstream releases or CVS
122     head versions
123   * finalizer thread
124   * JNI local references implemented
125   * reflection fixes and access checks (mauve tests)
126   * linear scan register allocator (-lsra)
127   * lazy resolving fixes
128   * fixed instanceof instruction
129   * updated to Boehm GC 6.6
130
131
132 New in release 0.92 "Tomclipse" (July 14, 2005)
133
134   * runtime lazy-loading with code patching
135   * dynamic library loading on every platform we support (using
136     libltdl)
137   * new ICMDs (PUTSTATICCONST, PUTFIELDCONST)
138   * some ICMDs inlined (IDIV/IREM, LDIV/LREM, AASTORE, ARRAYCHECKCAST)
139   * register allocator uses unused argument registers
140   * stacktraces on MIPS, PowerPC and x86_64
141   * integration of GNU classpath's system class loader
142   * internal class loading code more Java VM Spec compliant
143     (classcache, loading constraints, ...)
144   * virtual function table bugfix (abstract class implements not all
145     interface methods)
146   * initial support for thread dump on SIGQUIT (<ctrl>-\) on most
147     platforms
148   * GNU classpath 0.16
149   * Boehm GC 6.5
150
151
152 New in release 0.91 (December 23, 2004)
153
154   * bug fixed in MULTIANEWARRAY
155   * field access related bug fixes
156   * native function call bug fixes
157   * smaller fixes...
158
159
160 New in relaese 0.90 (December 8, 2004)
161
162   * More architectures supported: At the moment, CACAO is able to run on
163     Alpha, MIPS (64-bit), x86, x86-64 and PowerPC (32-bit) architectures.
164   * Native thread support
165   * Java 1.4 support
166   * GNU classpath 0.12
167   * Preliminary AWT support
168   * Boehm garbage collector
169   * Reentrant JIT compiler
170   * Lots of bug fixes and conformance enhancements
171   * Lots of bugs introduced and not fixed
172
173
174 * Version 0.40 (released)
175 =========================
176
177 ** Boehm garbage collector supported
178 ------------------------------------
179
180 The --enable-gc2 options was replaced by --with-gc. Choose boehm for the
181 Boehm garbage collector. Also see README.boehm.
182
183 ** mips port
184 ------------
185
186 Now runs on some SGI systems, which are based on the mips architecture.
187
188 ** multiple bug fixes
189 ---------------------
190
191 Even more java programs work as expected!
192
193
194 * Version 0.35 (experimental)
195 =============================
196
197 ** autoconf, automake support
198 -----------------------------
199
200 Finally moved the entire distribution to autoconf/automake. This should fix
201 some of our problems with supporting different compilers. Thread support and
202 the use of the new garbage collector can be enabled/disabled from using
203 configure arguments:
204
205         --enable-threads [default]
206         --disable-threads
207
208         --enable-gc2 [default]
209         --disable-gc2
210
211 ** new garbage collector
212 ------------------------
213
214 Included the new garbage collector as default garbage collector. 
215
216 * Version 0.30 (released)
217 =========================
218
219 Added unlimited stack for GC and main thread. 
220 Some optimzations for instructions which operate on constants. 
221
222 * Version 0.20 (released)
223 =========================
224
225 Hardware null pointer check added, fixed severe errors in GC/Threads, type
226 check and IEEE arithmetic.
227
228 * Version 0.20beta (can't remember)
229 =========================
230
231 There is a completely new JIT compiler which is about 7 times faster and
232 produces better code. 
233 Multithreading is now supported. 
234 A lot of bugs have been fixed.
235
236 * Version 0.10 (ancient history)
237 ==============
238
239 The initial version included the old JIT and support for lang, util and io.