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