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