* src/vm/jit/replace.h (rplpoint): Removed members outcode, code,
[cacao.git] / ChangeLog
index 2cbbc0fc4deb32596c00733e9208848def2eaa11..897a5684fd269036bea86ab4df77e547af69c0fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
-2005-11-24 01:21  twisti
+2006-10-30 23:52  twisti
 
-       * configure.in:
-         * Changed version to 0.93.
+       * configure.ac (AC_INIT): Changed version to 0.97.
+       (--enable-threads): Removed green from help string.
+
+2006-10-30 13:03  twisti
 
-2005-11-24 00:16  twisti
+       * src/vm/jit/show.c (show_method): Removed debug output.
+       (SHOW_INT_CONST): Removed long cast and print hex value additionally.
+       (SHOW_LNG_CONST): Removed long long cast and print hex value
+       additionally. Also added version for SIZEOF_VOID_P == 4.
+       (SHOW_ADR_CONST): Added.
+       (SHOW_FLT_CONST): Print hex value additionally.
+       (SHOW_DBL_CONST): Likewise. Also added version for SIZEOF_VOID_P == 4.
+       (show_icmd): Smaller changes.
 
-       * tests/regression/Makefile.am:
-         * Renamed checkall to check.
+2006-10-30 12:27  twisti
 
-2005-11-24 00:16  twisti
+       * src/threads/native/threads.h (MUTEXSIM): Removed.
+       (pthread_mutex_rec_t): Likewise.
+       (pthread_mutex_init_rec): Likewise.
+       (pthread_mutex_destroy_rec): Likewise.
+       (pthread_mutex_lock_rec): Likewise.
+       (pthread_mutex_unlock_rec): Likewise.
+       * src/threads/native/threads.c (pthread_mutex_init_rec): Removed.
+       (pthread_mutex_destroy_rec): Likewise.
+       (pthread_mutex_lock_rec): Likewise.
+       (pthread_mutex_unlock_rec): Likewise.
+       (compiler_lock): Use pthread functions.
+       (compiler_unlock): Likewise.
+       (threads_cast_darwinstop): Warning fixes and use vm_abort.
+       (threads_cast_darwinresume): Use vm_abort.
+       (threads_cast_stopworld): Warning fixes.
+       (pthreads_preinit) [!MUTEXSIM]: Removed code.
 
-       * src/vm/jit/intrp/Makefile.am:
-         * EXTRA_DIST: Added with java.vmg.
+2006-10-30 11:52  edwin
 
-2005-11-23 23:55  twisti
+       * src/vm/jit/intrp/intrp.h (Cell): Moved the typedef upward, so we can
+       use it in other headers.
+       (global_sp): Does not need the complex casts anymore.
+       
+       * src/threads/native/threads.h (threadobject): Made _global_sp a
+       Cell*.
+       * src/threads/native/threads.c: Likewise.
 
-       * tests/regression/Makefile.am:
-         * EXTRA_DIST: Added Test.sh.
+2006-10-30 11:21  edwin
 
-2005-11-23 23:55  twisti
+       * src/mm/memory.h (ALIGN): Renamed to MEMORY_ALIGN.
+       * src/mm/memory.c: Likewise.
+       * src/vm/jit/dseg.c: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/codegen-common.c: Likewise.
+       * src/vm/linker.c: Likewise.
+       * src/mm/nogc.c: Likewise.
+       * src/cacaoh/headers.c: Likewise.
 
-       * tests/Makefile.am:
-         * EXTRA_DIST: Added prop.java.
+2006-10-30 11:04  edwin
 
-2005-11-23 23:55  twisti
+       * src/threads/native/threads.c (threads_dump): Cast pthread_t to long
+       for printing it.
 
-       * tests/prop.java:
-         * Updated.
+2006-10-30 11:00  edwin
 
-2005-11-23 23:49  twisti
+       * src/vm/jit/cfg.c (cfg_build): Removed set-but-not-used variable (m).
+       * src/vm/jit/ifconv/ifconv.c (check): Likewise (cd).
+       * src/vm/jit/stack.c (stack_reanalyse_block): Likewise (maythrow).
+       (stack_analyse): Likewise (code, b_index).
+       * src/vm/jit/show.c (show_basicblock): Likewise (m).
+       * src/vm/jit/mips/emit.c (emit_copy): Likewise (rd).
+       * src/vm/jit/parse.c (parse): Likewise (code).
+       * src/vm/exceptions.c (exceptions_handle_exception): Likewise
+       (framesize).
 
-       * tests/regression/Makefile.am:
-         * EXTRA_DIST: Typo.
+2006-10-30 10:32  edwin
 
-2005-11-23 23:40  twisti
+       * src/vm/jit/verify/typecheck-common.c (typecheck_init_flags): Removed
+       set-but-not-used variable `i`.
 
-       * src/vm/jit/intrp/peephole.c:
-         * gen_inst: Use lastmcodeptr instead of last_compiled.
+2006-10-30 10:31  edwin
 
-2005-11-23 23:39  twisti
+       * src/vm/jit/verify/typecheck-builtins.inc: Removed set-but-not-used
+       variable `cls`.
 
-       * src/vm/jit/intrp/codegen.h:
-         * vm/types.h: Added.
-         * MCODECHECK: Use lastmcodeptr instead of last_compiled.
+2006-10-30 10:15  edwin
 
-2005-11-23 23:39  edwin
+       * src/vm/jit/alpha/codegen.c (codegen): Zero `uf` to avoid warning.
 
-       * man/cacao.1: * (cacao.1): fix typo
+2006-10-30 00:45  edwin
 
-2005-11-23 23:39  twisti
+       * src/vm/builtin.c (builtin_print_argument): Made logtextlen an in/out
+       argument. Correctly reallocate logtext, increase logtextlen.
+       (builtin_trace_args): Pass &logtextlen to builtin_print_argument.
+       (builtin_displaymethodstop): Likewise.
 
-       * src/vm/jit/intrp/intrp.h:
-         * gen_BBSTART: Use lastmodeptr instead of last_compiled.
-         * createcalljavafunction: Changed return type from
-           functionptr to u1*.
+2006-10-29 23:43  edwin
 
-2005-11-23 23:38  twisti
+       * src/vm/jit/jit.h (stackelement): Removed the obsolete fields
+       `typeinfo` and `regoff`.
 
-       * src/vm/jit/intrp/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-29 23:37  edwin
 
-2005-11-23 23:37  twisti
+       * src/vm/jit/stack.c (stack_grow_variable_array): Zero the additional
+       space when reallocating the jd->var array.
+       
+       * src/vm/jit/parse.c (parse_realloc_instructions): Zero the
+       additional space when reallocating the instructions array.
 
-       * src/vm/jit/intrp/Makefile.am:
-         * libintrp_la_SOURCES: Added *.i files.
-         * BUILT_SOURCES: Removed.
+2006-10-29 23:33  edwin
 
-2005-11-23 23:36  twisti
+       * src/vm/jit/parse.c (parse): Fix in ICMD_TABLESWITCH: Put table into
+       dump memory.
 
-       * src/vm/jit/stacktrace.c:
-         * Use codegen_findmethod for intrp and md_codegen_findmethod for
-         jit.
+2006-10-29 23:23  edwin
 
-2005-11-23 23:36  twisti
+       * NEWS: Typo fixed.
 
-       * src/vm/jit/codegen.inc.h:
-         * codegendata: Removed last_compiled for intrp and use lastmcodeptr
-           instead.
+2006-10-29 16:21  edwin
 
-2005-11-23 23:34  twisti
+       * src/vm/suck.c (stdlib.h): Include to avoid warning about `free`.
 
-       * tests/Makefile.am:
-         * EXTRA_DIST: Added hello.java.
+2006-10-29 16:14  edwin
 
-2005-11-23 23:33  twisti
+       * src/vm/suck.c (suck_add_from_property): Use `free` to free memory
+       coming out of the C library - it has not been allocated with M?NEW,
+       so M?FREE is wrong here.
 
-       * tests/regression/Makefile.am:
-         * EXTRA_DIST: Added with all files.
+2006-10-29 14:49  twisti
 
-2005-11-23 23:33  twisti
+       * src/vm/builtin.c (builtin_print_argument): Print float/double values
+       with %g and addresses as hex.
+       (builtin_trace_args): Fixed message length calclation.
+       (builtin_displaymethodstop): Fixed bug: we only passed the long value.
 
-       * src/libffi/Makefile.am:
-         * EXTRA_DIST: Added libtool-version.
+2006-10-29 11:15  edwin
 
-2005-11-23 22:47  twisti
+       * src/cacaoh/headers.c (vm_abort): Print the error message before
+       aborting.
 
-       * src/vm/jit/alpha/linux/md-os.c:
-         * Removed duplicate stuff that slipped in when added alpha-freebsd
-         support.
+2006-10-28 19:40  twisti
 
-2005-11-23 22:43  edwin
+       * NEWS: New news.
 
-       * man/cacao.1: * (cacao.1): use .BR again. The problem on IRIX was
-                      the 6-argument limitation.  We currently do not care about that.
+2006-10-28 19:26  twisti
 
-2005-11-23 22:36  twisti
+       * src/vm/jit/dseg.c (dseg_find_float): Compare hex value.
+       (dseg_find_double): Likewise.
 
-       * src/vm/jit/alpha/: Makefile.am, md.c, freebsd/.cvsignore,
-         freebsd/Makefile.am, freebsd/md-os.c, linux/.cvsignore,
-         linux/Makefile.am, linux/md-os.c:
-         * Added alpha-freebsd support.
+2006-10-28 17:45  twisti
 
-2005-11-23 22:35  twisti
+       * NEWS: Added some stuff.
 
-       * configure.in:
-         * src/vm/jit/alpha/freebsd/Makefile,
-           src/vm/jit/alpha/linux/Makefile: Added.
+2006-10-28 17:15  edwin
 
-2005-11-23 22:29  edwin
+       * NEWS: Added news for CACAO 0.97.
 
-       * man/cacao.1: * (cacao.1): IRIX does not seem to like the .BR
-         macro, so we avoid it.
+2006-10-28 16:55  edwin
 
-2005-11-23 22:17  edwin
+       * src/vm/jit/jit.c (stackreq): Fixed for DUP/SWAP instructions. The
+       numbers for DUP2_X1 and DUP2_X2 were also wrong before the new IR
+       had been introduced. The new IR in addition needs extra temps in some
+       cases, thus the numbers before the 'plus' operators.
 
-       * man/cacao.1: * (cacao.1): updated the manpage
+2006-10-28 16:51  edwin
 
-2005-11-23 16:05  twisti
+       * src/vm/jit/stack.c (stack_analyse): Store vartop in jitdata.
+       
+       * src/vm/jit/show.c (show_method): Show number of variables.
+       
+       * tests/regression/jasmin/test_many_dup2_x2.j: New test.
+       * tests/regression/jasmin/test_many_dup.j: Likewise.
+       * tests/regression/jasmin/test_many_dup_x2.j: Likewise.
+       * tests/regression/jasmin/test_many_swap.j: Likewise.
+       * tests/regression/jasmin/test_many_dup2.j: Likewise.
+       * tests/regression/jasmin/test_many_dup2_x1.j: Likewise.
+       * tests/regression/jasmin/test_many_dup_x1.j: Likewise.
+       
+       * tests/regression/jasmin/Makefile.am: Added new tests.
 
-       * src/vm/jit/Makefile.am:
-         * noinst_HEADERS: Added methodheader.h and disass.h.
+2006-10-28 15:21  edwin
 
-2005-11-23 16:05  twisti
+       * src/vm/jit/stack.c (stackdata_t): Added field varsallocated.
+       (stack_grow_variable_array): Smarted memory allocation.
+       (stack_analyse): Initialize sd.varsallocated.
 
-       * src/libffi/Makefile.am:
-         * EXTRA_DIST: Added configure.host.
+2006-10-28 13:02  edwin
 
-2005-11-23 16:04  twisti
+       * src/vm/access.c (ACCESS_ASSERT): Replaced with assert. Because of
+       a mistake in the definition of ACCESS_DEBUG, ACCESS_ASSERT always
+       was a NOP!
+       (access_is_accessible_member): Fixed assertion.
 
-       * src/lib/Makefile.am:
-         * EXTRA_DIST: Added all java files.
+2006-10-28 12:53  edwin
 
-2005-11-23 15:41  twisti
+       * src/vm/loader.c (LOADER_ASSERT): Replaced with assert.
 
-       * src/vm/jit/: alpha/Makefile.am, i386/Makefile.am,
-         intrp/Makefile.am, mips/Makefile.am, powerpc/Makefile.am,
-         x86_64/Makefile.am:
-         * asmoffsets.h, disass.h: Removed if missed before.
+2006-10-28 12:49  edwin
 
-2005-11-23 15:40  twisti
+       * src/vm/class.c (CLASS_ASSERT): Replaced by assert.
 
-       * tests/Makefile.am:
-         * jctest, fptest, fp, extest: Removed.
+2006-10-28 12:47  edwin
 
-2005-11-23 15:40  twisti
+       * src/vm/class.c (class_array_of): Release dump memory.
+       (class_multiarray_of): Likewise.
+       (class_get_classref_multiarray_of): Likewise.
 
-       * tests/: fp.java, fp.output, fptest.java, fptest.output,
-         jctest.java, jctest.output, jctest.dec:
-         * Removed, most of them are now regression tests.
+2006-10-27 10:41  twisti
 
-2005-11-23 13:54  twisti
+       * src/vm/vm.c: Renamed -Xglibj to -Xbootclasspath/c to match jamvm's
+       option (Robert, Mark and I decided that once).
+       (vm_create): Removed unnecessary k. #ifdef'd the profiling stuff.
+       (vm_run): Removed commented code.
+       * src/vm/options.c, src/vm/options.h [ENABLE_PROFILING] (opt_prof)
+       (opt_prof_bb): Added.
+       * src/vm/jit/jit.c (jit_compile) [ENABLE_PROFILING]: Added for
+       opt_prof stuff.
+       [ENABLE_VERIFIER]: Added for flag setting.
+       * src/vm/jit/codegen-common.c (codegen_createnativestub)
+       [ENABLE_PROFILING]: Added for opt_prof stuff.
 
-       * src/vm/jit/mips/codegen.c:
-         * ICMD_xASTORE: Moved var_to_reg_xxx directly before actual store,
-           this makes life much easier on mips32.
-         * ICMD_{I,L,A}ASTORECONST: Use M_xST_INTERN macro as the offset will
-           not overflow.
+2006-10-26 16:41  edwin
 
-2005-11-23 13:31  twisti
+       * src/vm/jit/alpha/codegen.c (codegen): Declare variables at the start
+       of codegen (uf, fi).
 
-       * src/vm/jit/mips/codegen.c:
-         * ICMD_xALOAD: Use REG_ITMP3 register to calculate the base address,
-           this is necessary on mips32.
+2006-10-26 12:05  twisti
 
-2005-11-23 12:56  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Made fieldinfo and
+       unresolved_field fucntion variables, fieldtype was uninitialized for
+       PUTFIELD.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * ICMD_GETFIELD: Check if a destination register is equals the
-           source register for long type.
+2006-10-26 11:57  twisti
 
-2005-11-23 01:47  twisti
+       * src/vm/jit/x86_64/codegen.c (codegen): Made fieldinfo and
+       unresolved_field function variables (it makes the code more readable).
 
-       * src/vm/jit/i386/: freebsd/md-os.c, linux/md-os.c:
-         * signal_handler_sigsegv, signal_handler_sigfpe: Replaced
-           functionptr with u1*.
+2006-10-26 11:47  edwin
 
-2005-11-23 01:46  twisti
+       * src/vm/jit/alpha/codegen.c (codegen): Fixed ICMD_PUTFIELD: Set
+       fieldtype before it is used. Fixed warnings.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Prevent warnings.
 
-       * src/vm/jit/i386/md.c:
-         * md_stacktrace_get_returnaddress: Changed return type from
-           functionptr to u1*.
-         * md_codegen_findmethod: Added.
+2006-10-26 11:35  twisti
 
-2005-11-23 01:46  twisti
+       * NEWS: Added some 0.97 news.
 
-       * src/vm/jit/i386/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-26 11:30  twisti
 
-2005-11-23 01:21  twisti
+       * src/vm/exceptions.c (exceptions_print_exception): Removed [!NDEBUG]
+       condition, as we may need this function in the VM (e.g. recompile).
+       * src/vm/jit/recompile.c (vm/exceptions.h): Added.
+       (recompile_thread): Call exceptions_print_exception in exception case.
 
-       * src/vm/jit/mips/irix/md-os.c:
-         * signal_handler_sigsegv: Use u1* instead of functionptr.
+2006-10-26 11:29  edwin
 
-2005-11-23 01:21  twisti
+       * src/vm/jit/intrp/codegen.c (codegen): Initialize uf to NULL for
+       resolved fields, to avoid warnings.
+       
+       * src/vm/jit/intrp/engine.c (engine): Initialize
+       classcastexception_object and arrayindexoutofbounds_index to avoid
+       warnings.
 
-       * src/vm/jit/mips/md.c:
-         * md_stacktrace_get_returnaddress: Use u1* instead of functionptr.
-         * codegen_findmethod: Renamed to md_codegen_findmethod.
+2006-10-26 11:23  edwin
 
-2005-11-23 01:20  twisti
+       * src/vm/jit/dseg.c (dseg_addlinenumber_inline_start): Read inline
+       info from instruction, ported to new instruction format.
+       (dseg_addlinenumber_inline_end): Likewise.
 
-       * src/vm/jit/mips/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-26 11:19  edwin
 
-2005-11-23 01:06  twisti
+       * src/vm/jit/show.c (show_icmd): Fixed warning fix.
 
-       * tests/codepatching/test.java:
-         * Made most functions private.
+2006-10-26 11:18  edwin
 
-2005-11-23 01:05  twisti
+       * src/threads/native/threads.c (threads_table_dump): Fix warning (the
+       function is currently unused, but may become handy again.)
 
-       * src/vm/jit/powerpc/md.c:
-         * md_stacktrace_get_returnaddress: Use u1* instead of functionptr.
-         * codegen_findmethod: Renamed to md_codegen_findmethod.
+2006-10-26 11:15  edwin
 
-2005-11-23 01:03  twisti
+       * src/vm/jit/show.c (show_method): Fixed warning.
+       (show_basicblock): Likewise.
+       (show_icmd): Likewise.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-26 11:04  twisti
 
-2005-11-23 00:54  twisti
+       * src/vm/jit/x86_64/md.h: Removed.
+       * src/vm/jit/x86_64/Makefile.am (libarch_la_SOURCES): Removed md.h.
+       * src/vm/jit/x86_64/codegen.c (md.h): Removed.
+       (codegen): Warning fix.
 
-       * src/vm/jit/alpha/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-26 10:34  twisti
 
-2005-11-23 00:47  twisti
+       * src/vm/jit/mips/md-abi.h: Fixed MIPS64 compilation and backported
+       some MIPS32 stuff.
 
-       * src/vm/jit/x86_64/md.c:
-         * signal_handler_sigsegv, signal_handler_sigfpe: Replaced
-           functionptr with u1*.
-         * md_stacktrace_get_returnaddress: Changed return type from
-           functionptr to u1*.
-         * md_codegen_findmethod: Added.
+2006-10-26 10:09  twisti
 
-2005-11-23 00:46  twisti
+       * src/vm/descriptor.h (paramdesc): We need a type for MIPS32, as the
+       type in the allocated argument register may be different to the actual
+       register (e.g. passing a float in an integer register).
 
-       * src/vm/jit/x86_64/md-abi.c:
-         * config.h: Added.
-         * Some code reformatting.
+2006-10-26 09:55  twisti
 
-2005-11-23 00:45  twisti
+       * src/vm/jit/mips/codegen.c (codegen): More comment and brace changes.
 
-       * src/vm/jit/x86_64/codegen.c:
-         * createcompilerstub, createnativestub: Changed return type from
-           functionptr to u1*.
+2006-10-26 09:44  twisti
 
-2005-11-23 00:45  twisti
+       * src/vm/jit/mips/codegen.c (codegen): Comment and brace changes.
 
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_builtin_arraycheckcast: Removed global.
+2006-10-26 09:29  twisti
 
-2005-11-23 00:43  twisti
+       * src/vm/jit/mips/md-asm.h: Renamed t8 to t4 and removed t9, as it's
+       actually itmp3.
+       * src/vm/jit/mips/asmpart.S: Likewise.
 
-       * src/vm/jit/: codegen.inc, codegen.inc.h:
-         * Changed functionptr to u1*.
+2006-10-25 14:26  tbfg
 
-2005-11-23 00:42  twisti
+       * src/vm/jit/powerpc64/linux/md-abi.c (_ALIGN): Renamed to
+       CACAO_ALIGN because of name clash with /usr/include/asm-ppc64/page.h.
+       
+       * src/vm/jit/powerpc64/emit.c (emit_lconst): Added.
+       (emit_iconst): Reformatted.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen):
+       Replaced all stackframesize with cd->stackframesize.
+       Implemented ICMD_IF_LLT, ICMD_IF_LLE, ICMD_IF_LGE, ICMD_IF_LGT.
+       
+       * src/vm/jit/powerpc64/asmpart.S:
+       Partially fixed exception path.
+       (asm_cacheflush): Fixed.
+       
+       * src/vm/jit/powerpc64/codegen.h (LCONST): Implemented.
+       
+       * tests/if_tests.java: Added simple testcase for if and compare.
 
-       * src/vm/jit/: jit.c, jit.h:
-         * do_nothing_function, jit_compile, jit_compile_intern: Changed
-           return type from functionptr to u1*.
+2006-10-24 23:24  edwin
 
-2005-11-23 00:41  twisti
+       * src/vm/utf8.h, src/vm/utf8.c (utf8_safe_number_of_u2s): Modified to
+       completely emulate the behaviour of the RI in case of truncated UTF-8
+       characters. This requires an extra strlen(text) beforehand. We still
+       require zero-termination. We could drop that with a few extra changes,
+       should we find other uses for these functions.
+       (utf8_safe_convert_to_u2s): Likewise.
+       
+       * src/vm/string.c (javastring_safe_new_from_utf8): Pass number of
+       bytes to the decoding functions.
 
-       * src/vm/method.h:
-         * methodinfo: Changed functionptr to u1*.
+2006-10-24 17:51  edwin
 
-2005-11-23 00:40  twisti
+       * src/vm/utf8.c (utf8_safe_number_of_u2s): Skip only bytes beginning
+       with high bits 10 in invalid sequences.
+       (utf8_safe_convert_to_u2s): Likewise.
 
-       * src/cacaoh/headers.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed.
-         * asm_builtin_idiv, asm_builtin_irem, asm_builtin_ldiv,
-           asm_builtin_lrem: Likewise.
-         * asm_builtin_monitorenter, asm_builtin_monitorexit: Likewise.
-         * asm_builtin_arraycheckcast: Likewise.
-         * setVMClassField: Likewise.
-         * Changed functionptr to u1*.
+2006-10-24 16:41  edwin
 
-2005-11-23 00:07  twisti
+       * src/vm/utf8.h, src/vm/utf8.c (utf8_safe_number_of_u2s): New
+       function.
+       (utf8_safe_convert_to_u2s): Likewise.
+       
+       * src/vm/stringlocal.h, src/vm/string.c
+       (javastring_safe_new_from_utf8): New function.
+       
+       * src/native/jni.c (_Jv_JNI_NewStringUTF): Use the new functions for
+       safe UTF-8 decoding.
+
+2006-10-24 11:17  twisti
+
+       * src/vm/jit/dseg.c (dseg_display): Rewritten.
+
+2006-10-22 04:28  ajordan
+
+       * src/vm/jit/sparc64/codegen.h: fixed M_SAVE.
+       
+       * src/vm/jit/sparc64/disass.c: configuring disass for big-endian.
+
+2006-10-22 02:49  ajordan
+
+       * src/vm/jit/sparc64/emit.c: Implemented trace enter/exit functions.
+       * src/vm/jit/sparc64/codegen.c: Likewise.
+       
+       * src/vm/jit/sparc64/md.c: Implemented md_get_method_patch_address.
+       
+       * src/vm/jit/sparc64/asmpart.S(asm_call_jit_compiler): Fixed window
+       handling
+       
+       * src/vm/jit/sparc64/disass.c: Fixed disassembly printing.
+       
+       * src/vm/jit/sparc64/md-abi.h: Minor changes/fixes.
+       * src/vm/jit/sparc64/codegen.h: Likewise.
+       * src/vm/jit/sparc64/md-asm.h: Likewise.
+
+2006-10-22 00:38  edwin
+
+       * src/vm/jit/jit.c (jit_asm_compile): Fixed xpc for extern
+       stackframeinfo by subtracting 1 from the return address.
+       This fixes stacktraces when exceptions are thrown out of
+       the compiler.
+       
+       * tests/regression/extest.2output: Changed line numbers to
+       the values same the RI returns, which are correct upon inspection
+       of the Java code.
+
+2006-10-21 15:06  edwin
+
+       * src/vm/jit/parse.c (parse): Bugfix for -noverify: Do not make the
+       variable array dependant on jd->flags, as this breaks stack_analyse.
+
+2006-10-20 18:35  twisti
+
+       * src/vm/jit/mips/codegen.c (md.h): Removed.
+       * src/vm/jit/mips/md.h: Removed.
+       * src/vm/jit/mips/Makefile.am (libarch_la_SOURCES): Removed md.h.
+
+2006-10-20 14:53  twisti
+
+       * src/vm/jit/jit.c (jit_init) [ENABLE_JIT]: Call stack_init only for
+       JIT.
+       [ENABLE_JIT] (jit_asm_compile): Only for JIT.
+       
+       * src/vm/jit/Makefile.am (SUBDIRS) [ENABLE_JIT]: Add allocator only
+       for JIT.
+       (libjit_la_SOURCES) [ENABLE_JIT]: Compile reg.[ch], replace.[ch] and
+       stack.[ch] only for JIT.
+       
+       * src/cacaoh/headers.c [ENABLE_INTRP] (intrp_asm_abstractmethoderror):
+       Added.
+
+2006-10-20 14:26  twisti
+
+       * src/vm/linker.c (link_class_intern): Handle AbstractMethodError for
+       interpreter (missed this one in the last commit).
+
+2006-10-20 14:22  twisti
+
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_abstractmethoderror): Added.
+       * src/vm/jit/asmpart.h [ENABLE_INTRP] (intrp_asm_abstractmethoderror):
+       Likewise.
+       * src/vm/linker.c (linker_addinterface): Handle AbstractMethodError
+       for interpreter.
+
+2006-10-20 13:58  twisti
+
+       * src/native/vm/gnu_classpath_VMSystemProperties.c (preInit): Removed
+       unused ld_library_path.
+
+2006-10-20 13:54  twisti
+
+       * src/vm/suck.c (vm/vm.h): Added.
+       (bootclasspath, classpath): Removed.
+       (suck_add_from_property): Prefix bootclasspath with _Jv_.
+       * src/vm/suck.h (bootclasspath, classpath): Removed.
+       
+       * src/vm/vm.c (_Jv_bootclasspath, _Jv_classpath)
+       (_Jv_java_library_path): Added.
+       (version): Prefix bootclasspath with _Jv_.
+       (vm_create): Likewise, set _Jv_java_library_path to LD_LIBRARY_PATH
+       before handling commandline options.
+       * src/vm/vm.h (_Jv_bootclasspath, _Jv_classpath)
+       (_Jv_java_library_path): Added.
+       
+       * src/native/vm/gnu_classpath_VMSystemProperties.c (preInit): Prefix
+       bootclasspath and classpath with _Jv_, use _Jv_java_library_path for
+       setting java.library.path.
+       
+       * src/cacao/cacao.c (main): First let dlopen try to open libjvm at
+       it's default locations.
+       * src/native/native.c (native_init): Likewise.
+       
+       * src/cacaoh/headers.c (_Jv_bootclasspath): Added.
+       
+       * contrib/setenvinstalled.in: Set LD_LIBRARY_PATH again.
+       * contrib/setenvsource.in: Likewise.
+       
+       * tests/regression/native/Makefile.am (JAVAFLAGS): Removed
+       -Djava.library.path=.
+       (check): Set LD_LIBRARY_PATH.
+       * tests/regression/codepatching/Makefile.am (check): Likewise.
+       * tests/regression/Makefile.am: Likewise.
+
+2006-10-20 13:09  twisti
+
+       * src/vm/signal.c (signal_init): Added dummy allocation to install
+       Boehm's signal handlers.
+       * src/threads/native/threads.c (threads_preinit): Removed dummy
+       allocation.
+       
+       * src/vm/vm.c (vm_create): Call threads_preinit before gc_init.
+       * src/cacaoh/cacaoh.c (main): Likewise.
+
+2006-10-20 12:00  twisti
 
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Replaced functionptr with u1*.
-         * Call md_codegen_findmethod instead of codegen_findmethod.
+       * src/vm/exceptions.c [ENABLE_JIT] (exceptions_handle_exception): Only
+       required for JIT.
+
+2006-10-20 00:37  ajordan
 
-2005-11-23 00:06  twisti
+       * src/mm/memory.c: fixed typo in _no_threads_dumpinfo definition
 
-       * src/vm/jit/codegen.inc.h:
-         * Added defined(DISABLE_GC) to methodtree stuff so we allocate the
-           same amount of memory for -verbosecall compares.
-         * md_codegen_findmethod: Added.
+2006-10-19 10:10  twisti
 
-2005-11-23 00:05  twisti
+       * src/threads/native/threads.c (threads_interrupt_thread): Renamed to
+       threads_thread_interrupt, send thread a SIGHUP singal to interrupt
+       blocking system calls (thanks to Robert Schuster).
+       (threads_dump): Removed threads_sleep call.
+       
+       * src/threads/native/threads.h (threads_interrupt_thread): Renamed to
+       threads_thread_interrupt.
+       * src/native/vm/java_lang_VMThread.c (interrupt): Likewise.
+       * src/native/jvmti/jvmti.c (InterruptThread): Likewise.
+       
+       * src/vm/signal.c (signal_init): Register SIGHUP.
+       (signal_handler_sighup): Added.
 
-       * src/vm/jit/codegen.inc:
-         * Added defined(DISABLE_GC) to methodtree stuff so we allocate the
-           same amount of memory for -verbosecall compares.
-         * codegen_start_native_call: Replaced functionptr with u1*.
+2006-10-19 09:32  twisti
 
-2005-11-23 00:04  twisti
+       * src/vm/jit/stacktrace.c (stacktrace_dump_trace): Changed signature.
+       * src/vm/jit/stacktrace.h: Likewise.
+       
+       * src/vm/jit/codegen-common.c (codegen_get_pv_from_pc): Pass
+       threadobject to stacktrace_dump_trace.
+       
+       * src/vm/signal.c (signal_init): Don't register SIGUSR1.
+       (signal_handler_sigusr1): Removed.
+       
+       * src/native/jni.h: Include GNU Classpath JNI header before we define
+       our header.
+       (localref_table): Forward typedef.
+       
+       * src/threads/native/threads.c (threads_dump): Pass threadobject to
+       stacktrace_dump_trace.
+       
+       * src/cacaoh/headers.c (stacktrace_dump_trace): Added.
 
-       * src/vm/jit/alpha/md.c:
-         * md_init: Removed #if 0 from ieee_set_fp_control but it does not
-           fix the floating point problems.
-         * signal_handler_sigsegv: Use u1* instead of functionptr.
-         * md_stacktrace_get_returnaddress: Likewise.
-         * codegen_findmethod: Renamed to md_codegen_findmethod.
+2006-10-19 09:27  twisti
 
-2005-11-22 23:55  twisti
+       * src/threads/native/threads.h (threadobject, threads_table_entry_t)
+       (threads_table_t): Forward typedef.
+       (threadobject): Changed dumpinfo to dumpinfo_t.
 
-       * src/vm/jit/codegen.inc.h:
-         * codegen_start_native_call, codegen_finish_native_call: Added.
+2006-10-19 09:25  twisti
 
-2005-11-22 23:47  christian
+       * src/mm/memory.h (dumpblock): Postfixed with _t and moved before
+       internal includes, as we have some problems with threadobject.
+       (dumpinfo): Likewise.
+       * src/mm/memory.c: Postfixed dumpblock and dumpinfo with _t.
+
+2006-10-19 09:23  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Warning fixes.
+
+2006-10-18 16:55  edwin
+
+       * src/vm/jit/codegen-common.c (codegen_createnativestub): Initialize
+       jd->flags to zero.
+
+2006-10-18 16:27  edwin
+
+       * tests/regression/jasmin/runtest: Removed debugging `tee TEST`.
+       * tests/regression/jasmin/Makefile.am (CLEANFILES): Added file
+       TESTSIA.
+
+2006-10-18 16:19  edwin
+
+       * tests/regression/jasmin/Makefile.am (SOURCE_FILES): Use EXTRA_DIST,
+       instead.
+
+2006-10-18 15:57  edwin
+
+       * src/vm/jit/i386/linux/Makefile.am (noinst_HEADERS): Added md-asm.h.
+       * src/vm/jit/i386/freebsd/Makefile.am (noinst_HEADERS): Likewise.
+
+2006-10-18 15:27  twisti
+
+       * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added powerpc64.
+
+2006-10-18 15:19  twisti
+
+       * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added optimizing.
+
+2006-10-18 15:14  twisti
+
+       * src/vm/jit/sparc64/Makefile.am (libarch_la_SOURCES): Removed md.h.
+
+2006-10-18 15:09  twisti
+
+       * src/vm/jit/i386/Makefile.am (libarch_la_SOURCES): Renamed md-emit.h
+       to emit.h.
+
+2006-10-18 15:04  twisti
+
+       * configure.ac (AC_INIT): Changed to version 0.97rc.
+       (CFLAGS): Changed to -O2.
+
+2006-10-18 14:53  edwin
+
+       * tests/regression/jasmin/Makefile.am: Temporarily disable failing
+       tests for the release.
+       * src/vm/jit/stack.c (stack_analyse): Check field type when creating
+       a PUTFIELDCONST/PUTSTATICCONST instruction.
+
+2006-10-16 09:59  edwin
+
+       * src/vm/jit/parse.c (parse_resolve_exception_table): Do not use
+       codegendata.
+       (parse): Likewise.
+       
+       * src/vm/jit/stack.c (stack_analyse): Likewise.
+
+2006-10-16 09:02  twisti
+
+       * src/vm/jit/allocator/simplereg.c [ENABLE_STATISTICS]
+       (simplereg_make_statistics): Don't print this INREGISTER stuff.
+
+2006-10-16 08:53  twisti
+
+       * src/vm/jit/jit.c (jit_compile_intern) [ENABLE_STATISTICS]:
+       exceptiontablelength is now in jitdata.
+
+2006-10-16 00:05  ajordan
+
+       * src/vm/jit/sparc64/codegen.c: Ported to unified variables.
+       * src/vm/jit/sparc64/emit.c: Likewise.
+       
+       * src/vm/jit/sparc64/md.c: Implemented md_codegen_get_pv_from_pc.
+       
+       * src/vm/jit/sparc64/codegen.h: Some fixes.
+       * src/vm/jit/sparc64/asmpart.S: Likewise.
+
+2006-10-15 22:44  edwin
+
+       * src/vm/linker.c (link_class_intern): Removed unused variable.
+
+2006-10-15 22:25  edwin
+
+       * src/vm/jit/jit.h (exception_entry): New struct.
+       (jitdata): Added exceptiontable fields. Cleaned up.
+       
+       * src/vm/exceptions.h (exceptionentry): Removed.
+       
+       * src/vm/jit/dseg.h (dseg_exception_entry): New struct.
+       
+       * src/vm/jit/stack.h (BLOCK_OF): Moved to parse.h.
+       * src/vm/jit/parse.h (BLOCK_OF): Added.
+       
+       * src/vm/jit/codegen-common.h (codegendata): Removed exceptiontable
+       and exceptiontablelength.
+       
+       * src/vm/loader.c (load_method): Renamed m->exceptiontable* to
+       m->rawexceptiontable*.
+       (load_class_from_classbuffer): Likewise.
+       * src/vm/method.c (method_free): Likewise.
+       
+       * src/vm/method.h (methodinfo): Renamed m->exceptiontable* to
+       m->rawexceptiontable*.
+       (exceptiontable): Renamed to raw_exception_entry. Removed fields that
+       are only used in jd->exceptiontable.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Moved exceptiontable to jd,
+       renamed struct exceptiontable to exception_entry.
+       * src/vm/jit/sparc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/stack.c (stackdata_t): Likewise.
+       (stack_analyse): Likewise.
+       (stack_reanalyse_block): Likewise.
+       * src/vm/jit/optimizing/graph.c (graph_add_exceptions): Likewise.
+       * src/vm/jit/show.c (show_method): Likewise.
+       * src/vm/jit/verify/typecheck-common.h (verifier_state): Likewise.
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Likewise.
+       * src/vm/jit/verify/typecheck-stackbased.c (typecheck_stackbased):
+       Likewise.
+       * src/vm/jit/mips/codegen.c (codegen):
+       * src/vm/jit/loop/loop.h (LoopContainer): Likewise.
+       * src/vm/jit/loop/analyze.c (analyze_nested): Likewise.
+       (analyze_or_exceptions): Likewise.
+       (update_internal_exceptions): Likewise.
+       (create_static_checks): Likewise.
+       (optimize_loops): Likewise.
+       * src/vm/jit/inline/inline.c (test_inlining): Likewise.
+       * src/vm/jit/allocator/lsra.c (lsra_add_exceptions): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/intrp/codegen.c (codegen): Likewise.
+       * src/vm/jit/schedule/schedule.h (M_SCHEDULE_SET_EXCEPTION_POINT):
+       Likewise.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+       * src/vm/jit/jit.c (jit_compile_intern): Likewise.
+       (jit_jitdata_new): Initialize exceptiontable fields.
+       
+       * src/vm/jit/codegen-common.c (codegen_setup): Removed exceptiontable
+       fields.
+       
+       * src/vm/jit/parse.c (parse_mark_exception_boundaries): New function.
+       (parse_resolve_exception_table): New function.
+       (fillextable): Removed.
+       (parse): Use parse_mark_exception_boundaries and
+       parse_resolve_exception_table. Write the basicblockindex for the end
+       marker block.
+       
+       * src/vm/jit/intrp/asmpart.c (exceptionentry): Renamed to
+       dseg_exception_entry.
+       * src/vm/exceptions.c (exceptions_handle_exception): Likewise.
+       
+       * src/vm/linker.c (link_class_intern): Do not resolve exception
+       classes here. This is now done in parse.c.
+
+2006-10-15 13:52  edwin
+
+       * src/vm/jit/jit.h: Indentation cleanup.
+
+2006-10-15 13:37  edwin
+
+       * src/vm/jit/jit.h (flags_operand_t): Removed `fields` struct. It was
+       not safe to use, as defined.
+
+2006-10-15 13:19  edwin
+
+       * src/vm/jit/jit.h (flags_operand_t): Removed unused argcount.
+       (ACONST_LOAD): Removed.
+       (ACONST_BUILTIN): Removed.
+
+2006-10-15 12:59  edwin
+
+       * src/vm/method.h (methodinfo): Removed c_block_nr.
+       * src/vm/jit/jit.h (jitdata): Removed c_block_nr.
+       (BASICBLOCK_INIT): Do not set bptr->nr here.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Renumber basic blocks after
+       transformations.
+       (jit_check_basicblock_numbers): Made stricter.
+       
+       * src/vm/jit/stack.c (stack_append_block): Set basic block numbers
+       correctly.
+       (stack_clone_block): Do not set bptr->nr here.
+       
+       * src/vm/jit/verify/typecheck.c (typestate_reach): Use the correct
+       check for setting the repeat flag.
+       (typecheck): Check basic block numbers.
+       
+       * src/vm/jit/verify/typecheck-stackbased.c (typecheck_stackbased):
+       Check basic block numbers.
+       
+       * src/vm/jit/loop/analyze.c (copy_handler): Do not use c_block_nr.
+       (create_static_checks): Likewise.
+       * src/vm/jit/inline/inline.c (create_block): Likewise.
+       * src/vm/jit/parse.c (parse): Likewise.
+
+2006-10-15 12:20  edwin
+
+       * src/vm/jit/jit.c (jit_renumber_basicblocks): New function.
+       (jit_check_basicblock_numbers): Likewise.
+       (jit_init): Removed obsolete variable `i`.
+       
+       * src/vm/jit/jit.h (jit_renumber_basicblocks): New function.
+       (jit_check_basicblock_numbers): Likewise.
+
+2006-10-14 19:12  twisti
+
+       * src/native/jni.c (_Jv_JNI_DetachCurrentThread): Made
+       --disable-threads-safe.
+
+2006-10-13 18:29  edwin
+
+       * tests/regression/jasmin/Makefile.am: Added new tests.
+
+2006-10-13 18:25  edwin
+
+       * src/vm/jit/verify/icmds.c: Check basic types of instance for field
+       access.
+       * src/vm/jit/verify/typecheck-fields.inc: Check basic type of value.
+       
+       * src/vm/jit/verify/typecheck-stackbased-gen.inc: Regenerated.
+       * src/vm/jit/verify/typecheck-variablesbased-gen.inc: Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (verify_fieldaccess): Define
+       VERIFY_ERROR for the include file.
+       
+       * src/vm/jit/verify/typecheck-stackbased.c (VERIFY_ERROR): Fixed
+       macro.
+       
+       *
+       tests/regression/jasmin/test_verify_fail_putfieldconst_basic_type_instance.j,
+       tests/regression/jasmin/test_verify_fail_getfield_basic_type_instance.j,
+       tests/regression/jasmin/test_verify_fail_putfield_basic_type_value.j,
+       tests/regression/jasmin/test_verify_fail_putstatic_basic_type_value.j,
+       tests/regression/jasmin/test_verify_fail_putfieldconst_basic_type_value.j,
+       tests/regression/jasmin/test_verify_fail_getfield_basic_type_value.j,
+       tests/regression/jasmin/test_verify_fail_putfield_basic_type_instance.j,
+       tests/regression/jasmin/test_verify_fail_putfield_basic_type_lookup.j,
+       tests/regression/jasmin/test_verify_fail_getfield_basic_type_lookup.j,
+       tests/regression/jasmin/test_verify_fail_putstaticconst_basic_type_value.j:
+       New tests.
+       
+       * tests/regression/jasmin/runtest: Look for specified ICMDs in -sia
+       output.
+
+2006-10-13 17:06  tbfg
+
+       * src/vm/jit/powerpc64/md.c (md_get_method_patch_address): Fixed
+       comments.
+       
+       * src/vm/jit/powerpc64/codegen.c: Added credits.
+       
+       * src/vm/jit/powerpc64/asmpart.S (asm_handle_nat_exception): Fixed
+       exception handling code. Added credits.
+
+2006-10-13 16:30  edwin
+
+       * src/vm/jit/verify/typecheck-fields.inc: Re-activate stack overflow
+       checking.
+       
+       * src/vm/jit/verify/typecheck-common.h (verifier_state): Added field
+       `stackceiling`.
+       
+       * src/vm/jit/verify/typecheck-stackbased.c (CHECK_STACK_DEPTH):
+       Cleaned up.
+       (CHECK_STACK_SPACE): Cleaned up.
+       (typecheck_stackbased_verify_fieldaccess): Check for stack overflow.
+       (typecheck_stackbased): Moved stackceiling into state.
+
+2006-10-13 16:06  edwin
+
+       * src/vm/jit/codegen-common.c (codegen_reg_of_var): Removed `inline`
+       declaration. The crappy IRIX compiler does not create a global symbol
+       otherwise.
+
+2006-10-13 14:34  edwin
+
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Use generated
+       code.
+       
+       * src/vm/jit/verify/typecheck-stackbased-gen.inc: New file, GENERATED!
+       * src/vm/jit/verify/typecheck-variablesbased-gen.inc: Likewise.
+       
+       * src/vm/jit/verify/typecheck.h (typecheck_stackbased): Added.
+       
+       * src/vm/jit/verify/Makefile.am: Added source files for both generated
+       verifiers.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Call the stack-based verifier
+       for the interpreter.
+       
+       * src/vm/vm.c (vm_create): Re-enable verification fot the interpreter.
+
+2006-10-13 14:22  edwin
+
+       * src/vm/jit/verify/generate.pl: Clearly mark generated code.
+
+2006-10-13 14:00  edwin
+
+       * src/vm/jit/icmdtable.inc: Documented prettily.
+
+2006-10-13 13:11  edwin
+
+       * src/vm/jit/jit.h (op_data): Removed.
+       (stackreq): Moved to a more logical place.
+       
+       * src/vm/jit/jit.c (op_data): Removed.
+       (jit_init): Removed code initializing op_data.
+       
+       * src/vm/jit/optimizing/lifetimes.c (LifeOutAtStatement): Use
+       icmd_table.
+       * src/vm/jit/optimizing/ssa.c (dead_code_elimination): Likewise.
+
+2006-10-13 12:49  edwin
+
+       * src/vm/jit/jit.h (icmd_table): Added.
+       (icmd_names): Removed.
+       
+       * src/vm/jit/jit.c (icmd_table): Added.
+       (icmd_names): Removed.
+       
+       * src/vm/jit/show.c (show_icmd): Use icmd_table.
+       * src/vm/jit/optimizing/ssa.c (dead_code_elimination): Likewise.
+
+2006-10-13 12:47  edwin
 
-       * src/vm/jit/: codegen.inc.h, jit.c, stack.c, stack.h: added name
-         to Changes:
+       * src/vm/resolve.c: Removed obsolete debug prints.
 
-2005-11-22 23:32  twisti
+2006-10-13 11:57  edwin
 
-       * src/vm/jit/: jit.c, jit.h:
-         * compile_all_class_methods: Removed.
+       * src/vm/jit/jit.h: Added DF_ constants for ICMD table.
+       Added CF_ constants.
+       Added ICMDTABLE_ constants.
+       (icmdtable_entry_t): New struct.
 
-2005-11-22 23:21  christian
+2006-10-13 11:28  edwin
 
-       * src/vm/jit/stack.h: Fix for dependence conflict regarding
-         ICMD_DUP* and locals
+       * src/vm/jit/icmdtable.inc: New file. Not used, yet.
+       * src/vm/jit/Makefile.am: Added new file.
 
-2005-11-22 22:32  christian
+2006-10-13 11:27  edwin
 
-       * src/vm/jit/i386/icmd_uses_reg_res.inc: fix for ICMD_DUP*
+       * src/vm/jit/verify/generate.pl: Omit comma at end of ICMD table.
 
-2005-11-22 15:36  christian
+2006-10-13 11:11  edwin
 
-       * src/vm/jit/: lsra.h, lsra.inc: Changes for Usage Count and spill
-         heuristik
+       * src/vm/jit/verify/typecheck-stackbased.c: New file. Not used, yet.
+       * src/vm/jit/verify/icmds.c: New file.
+       * src/vm/jit/verify/generate.pl: New file.
+       
+       * src/vm/jit/verify/typecheck-invoke.inc: Added copyright notice.
+       * src/vm/jit/verify/typecheck-fields.inc: Likewise.
+       * src/vm/jit/verify/typecheck-builtins.inc: Likewise.
+       * src/vm/jit/verify/typecheck-common.c: Likewise.
+       * src/vm/jit/verify/typecheck-common.h: Likewise.
 
-2005-11-22 12:39  twisti
+2006-10-13 10:36  edwin
 
-       * src/vm/jit/intrp/codegen.c:
-         * Removed __INTRP__ define.
+       * src/vm/jit/verify/typeinfo.c (typevector_store): Remove obsolete
+       assertion.
 
-2005-11-22 12:38  twisti
+2006-10-13 10:33  edwin
 
-       * src/vm/jit/intrp/engine.c:
-         * md-abi.h: Removed.
+       * src/vm/jit/stack.c (stack_analyse): Set iptr->dst for CHECKNULL.
 
-2005-11-22 12:38  twisti
+2006-10-13 00:47  edwin
 
-       * src/vm/: signal.c, jit/codegen.inc, jit/codegen.inc.h:
-         * Renamed __INTRP__ to ENABLE_INTRP which is defined during
-         configure run.
+       * src/vm/builtin.c (builtin_isanysubclass): Bugfix for the case that
+       `sub` is an interface and `super` is a class. The function returned
+       random values in this case, since it used the <= 0 base value of the
+       interface class to perform the subclass check. The only case in which
+       an interface can be a subclass of a non-interface `super` is when
+       `super` is java.lang.Object, so we check explicitly for this case.
+       This fixes a bug with BeanShell-2.0b4.
+       
+       (builtin_isanysubclass_vftbl): Likewise.
 
-2005-11-22 01:14  twisti
+2006-10-12 23:34  edwin
 
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Fixed wrong compare value to xxx_ARG_CNT value,
-           this caused unsaved arguments.
+       * src/vm/jit/stack.c (stack_check_invars): Bugfix: Only set flags to
+       BBTYPECHECK_REACHED if the block has already been analysed.
+       
+       (stack_check_invars_from_outvars): Likewise.
 
-2005-11-21 23:01  twisti
+2006-10-12 20:06  twisti
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_wrapper_patcher: Fixed two typos for powerpc-linux.
+       * src/vm/jit/cfg.c (cfg_build): Check for EXH basic blocks in
+       fall-through case.
 
-2005-11-21 22:38  twisti
+2006-10-12 15:59  edwin
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_calljavafunction: Fixed darwin -O2 compilation, we forgot to
-           save r16 (itmp3).
-         * asm_calljavafunction2: Likewise.
-         * asm_wrapper_patcher: Also save temporary registers, required for
-           leaf methods.
+       * tests/regression/jasmin/runtest: Added timeout capability.
 
-2005-11-21 21:59  twisti
+2006-10-12 15:22  edwin
 
-       * src/vm/jit/powerpc/linux/md-asm.h:
-         * Added a comment about r2.
+       * src/vm/jit/verify/typecheck-common.h (typecheck_print_statistics):
+       Added prototype.
+       (typecheck_jsr_t): New struct.
+       (typecheck_jsr_caller_t): Likewise.
+       (verifier_state): Added fields for stackbased verifier.
 
-2005-11-21 20:59  edwin
+2006-10-12 15:07  edwin
 
-       * src/vm/jit/: jit.c, stack.c:
-         * analyse_stack: allocate a dummy stack slot for ICMD_IINC to keep
-                          ISTORE from incorrectly creating a LOCALVAR on the stack although
-                          IINC changed the variable.
-         * jit_init: reserve a stack slot for IINC
+       * src/vm/jit/verify/typecheck-common.c: Made debugging and statistics
+       symbols global.
+       * src/vm/jit/verify/typecheck-common.h: Likewise.
 
-2005-11-20 14:22  christian
+2006-10-12 14:52  edwin
 
-       * src/vm/jit/: lsra.h, lsra.inc: Removed lsra fallback in case of
-         subroutines or exception handlers Nesting depth calculation
-         improvements Usage count really considered by lsra
+       * src/vm/jit/verify/typecheck-invoke.inc: Added code variants for the
+       stackbased verifier. Not used, yet.
+       * src/vm/jit/verify/typecheck-builtins.inc: Likewise.
 
-2005-11-20 14:21  christian
+2006-10-12 14:42  edwin
 
-       * src/vm/jit/jit.c: Removed lsra fallback in case of subroutines or
-         exception handlers
+       * src/vm/jit/verify/typecheck-common.c: Include headers.
+       * src/vm/jit/verify/typecheck-common.h: Cleanup.
 
-2005-11-20 14:21  christian
+2006-10-12 14:39  edwin
 
-       * src/vm/jit/stack.c: Removed obsolete output of reserved Register
-         usage
+       * src/vm/jit/verify/typecheck.c (ISBUILTIN): Removed.
+       * src/vm/jit/verify/typecheck-builtins.inc (ISBUILTIN): Added.
 
-2005-11-19 04:10  edwin
+2006-10-12 14:38  tbfg
 
-       * src/vm/jit/: alpha/codegen.c, mips/codegen.c:
-         * src/vm/jit/mips/codegen.c, src/vm/jit/alpha/codegen.c:
-           added my name to the 'Changes' list
+       * src/vm/jit/powerpc64/codegen.c (codegen): Adopt locals
+       and regoff changes.
 
-2005-11-19 03:04  edwin
+2006-10-12 14:18  edwin
 
-       * src/vm/jit/alpha/codegen.c:
-         * codegen: generalize bugfix for IFNE_ICONST to other IF??_ICONST
-         instructions
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Prepared for
+       addeding the stackbased verifier. No functional change, yet.
+       (verify_builtin): Likewise.
 
-2005-11-19 03:02  edwin
+2006-10-12 14:12  edwin
 
-       * src/vm/jit/mips/codegen.c:
-         * codegen: generalize IFNE_ICONST bugfix to other IF??_ICONST
-         instructions
+       * src/vm/jit/verify/typecheck-common.c,
+       src/vm/jit/verify/typecheck-common.h (typecheck_init_flags): Added
+       minflags argument.
+       
+       * src/vm/jit/verify/typecheck.c (typecheck): Call typecheck_init_flags
+       with minflags set to BBFINISHED.
 
-2005-11-19 02:59  edwin
+2006-10-12 14:02  edwin
 
-       * src/vm/jit/mips/codegen.c:
-         * codegen: bugfix for IFNE_ICONST: prevent overwriting of temp
-           register for values that do not fit in a byte (same fix as on alpha)
+       * src/vm/jit/verify/typecheck.c (verify_fieldaccess): New function.
+       (verify_basic_block): Moved field verification into a separate
+       function.
+       
+       * src/vm/jit/verify/typecheck-fields.inc: Removed opcode-dependant
+       stuff. Some code for the stackbased verifier is checked in, but not
+       used, yet.
 
-2005-11-19 02:57  edwin
+2006-10-12 13:13  twisti
 
-       * src/vm/jit/alpha/codegen.c:
-         * codegen: bugfix for IFNE_ICONST: prevent overwriting of temp
-           register for constants that do not fit in a byte
+       * src/vm/jit/mips/linux/md-os.c (thread_restartcriticalsection): Added
+       uClibc support.
 
-2005-11-18 01:57  twisti
+2006-10-12 12:44  twisti
 
-       * src/vm/jit/intrp/: java-disasm.i, java-gen.i, java-labels.i,
-         java-peephole.i, java-profile.i, java-vm.i:
-         * Regenerated.
+       * src/vm/jit/mips/linux/md-os.c (md_signal_handler_sigsegv): Added
+       uClibc support.
 
-2005-11-18 01:54  twisti
+2006-10-12 10:10  edwin
 
-       * src/vm/jit/intrp/codegen.h:
-         * PATCHER_CALL_SIZE: Defined.
+       * src/vm/jit/verify/typecheck.c: Moved <assert.h> include to the right
+       place. Moved some code to typecheck-common.[ch].
+       
+       * src/vm/jit/verify/typecheck-common.c: New file.
+       * src/vm/jit/verify/typecheck-common.h: New file.
+       
+       * src/vm/jit/verify/Makefile.am: Added new source files.
 
-2005-11-18 01:54  twisti
+2006-10-11 23:52  edwin
 
-       * src/vm/jit/intrp/: codegen.c, java.vmg:
-         * Java 1.5 support changes.
+       * src/vm/jit/verify/typecheck-builtins.inc: Removed redundant
+       `return true`. Moved declaration of `av`.
 
-2005-11-18 01:54  twisti
+2006-10-11 23:44  edwin
 
-       * src/vm/jit/intrp/engine.c:
-         * nativevcall: Local references table changes.
+       * src/vm/jit/verify/typecheck-invoke.inc: Use invokestatic where
+       possible. Added a comment.
 
-2005-11-18 01:53  twisti
+2006-10-11 23:41  edwin
 
-       * src/vm/jit/intrp/patcher.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 changes.
-         * patcher_aconst: Added.
+       * src/vm/jit/verify/typecheck-invoke.inc: Indent log messages to make
+       them more readable.
 
-2005-11-18 01:52  twisti
+2006-10-11 23:37  edwin
 
-       * src/vm/jit/intrp/Makefile.am:
-         * Removed empty line.
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Define jd and dv
+       before including the function body.
+       
+       * src/vm/jit/verify/typecheck-invoke.inc: Removed definitions of jd
+       and dv. Small cleanup.
 
-2005-11-18 01:41  twisti
+2006-10-11 23:22  edwin
 
-       * src/vm/jit/powerpc/darwin/md-asm.h:
-         * jumptable_int, jumptable_long: Defined.
+       * src/vm/jit/verify/typecheck.c (verify_builtin): Define jd and dv
+       before including the function body.
+       
+       * src/vm/jit/verify/typecheck-builtins.inc: Removed definitions
+       of jd and dv.
 
-2005-11-18 01:30  twisti
+2006-10-11 23:00  edwin
 
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_builtin_arraycheckcast: Don't set BUILTIN_arraycheckcast.
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Moved body to a
+       separate file in order to prepare comitting the stackbased verifier.
+       (verify_builtin): Likewise.
+       (verify_generic_builtin): Likewise, no integrated in verify_builtin.
+       (verify_basic_block): Moved field instruction verification to a
+       separate file.
+       
+       * src/vm/jit/verify/typecheck-invoke.inc: New file.
+       * src/vm/jit/verify/typecheck-fields.inc: New file.
+       * src/vm/jit/verify/typecheck-builtins.inc: New file.
+       
+       * src/vm/jit/verify/Makefile.am: Added new source files.
+
+2006-10-11 19:43  edwin
+
+       * src/cacaoh/headers.c (typeinfo_print_short): Stub added.
+
+2006-10-11 19:42  edwin
+
+       * src/vm/jit/verify/typeinfo.c (typeinfo_init_component): Fixed for
+       the case that srcarray == dst. (The mergedlist was overwritten with
+       NULL in this case.)
+
+2006-10-11 19:40  edwin
+
+       * src/vm/resolve.c, src/vm/resolve.h
+       (resolve_method_param_type_checks_stackbased): New function.
+       (resolve_constrain_unresolved_method_params_stackbased): Likewise.
+
+2006-10-11 16:31  edwin
+
+       *
+       tests/regression/jasmin/test_verify_fail_athrow_wrong_reftype_unresolved.j:
+       New test.
+       
+       * tests/regression/jasmin/test_verify_fail_athrow_wrong_reftype.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new tests.
+
+2006-10-11 16:21  edwin
+
+       * tests/regression/jasmin/test_verify_fail_areturn_wrong_reftype.j:
+       New test.
+       
+       * tests/regression/jasmin/test_verify_fail_invoke_return_basic_type.j:
+       New test.
+       
+       * tests/regression/jasmin/test_verify_fail_ireturn_wrong_type.j: New
+       test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new tests.
+
+2006-10-11 10:17  edwin
+
+       * tests/regression/jasmin/test_verify_fail_handler_bad_local.j: new
+       test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-10 21:16  edwin
+
+       * tests/regression/jasmin/test_verify_fail_jsr_recursion_terminates.j:
+       Added expected error.
+       
+       * tests/regression/jasmin/test_verify_fail_jsr_recursion.j: Likewise.
+       
+       * tests/regression/jasmin/test_verify_ok_jsr_improper_nesting.j: New
+       test.
+       
+       * tests/regression/jasmin/test_verify_fail_jsr_multiple_returns.j: New
+       test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new tests.
+
+2006-10-10 20:45  edwin
+
+       *
+       tests/regression/jasmin/test_verify_fail_jsr_recursion_terminates.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-10 20:31  edwin
+
+       * tests/regression/jasmin/test_verify_fail_jsr_recursion.j: New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-10 00:29  edwin
+
+       * src/vm/resolve.c, src/vm/resolve.h (constrain_unresolved_method):
+       Split into two new functions.
+       
+       (resolve_constrain_unresolved_method_instance): New function.
+       (resolve_constrain_unresolved_method_params): Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Use new
+       functions.
+
+2006-10-09 23:53  edwin
+
+       * src/vm/resolve.c (resolve_method_type_checks): Split up into
+       two new functions.
+       
+       (resolve_method_instance_type_checks): New function.
+       
+       (resolve_method_param_type_checks): New function.
+       
+       * src/vm/resolve.h (resolve_method_type_checks): Removed.
+       (resolve_method_instance_type_checks): New function.
+       (resolve_method_param_type_checks): New function.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Call
+       resolve_method_instance_type_checks and
+       resolve_method_param_type_checks.
+
+2006-10-09 23:21  edwin
+
+       * src/vm/resolve.c (resolve_method_verifier_checks): Removed unused
+       variable. Removed unclear assertion.
+
+2006-10-09 23:17  edwin
+
+       * src/vm/resolve.c (resolve_method_verifier_checks): Removed unused
+       arguments.
+       
+       (resolve_method): Changed arguments to resolve_method_verifier_checks.
+       
+       * src/vm/resolve.h (resolve_method_verifier_checks): Removed unused
+       arguments.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Changed
+       arguments to resolve_method_verifier_checks.
+
+2006-10-09 23:06  edwin
+
+       * src/vm/resolve.c (resolve_method_verifier_checks): Factored out
+       parameter type checks into a separate function.
+       
+       (resolve_method_type_checks): New function.
+       
+       * src/vm/resolve.h (resolve_method_type_checks): New function.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Call
+       resolve_method_type_checks.
+
+2006-10-09 22:19  edwin
+
+       * src/vm/resolve.c (resolve_method_verifier_checks): Factored out
+       loading constraints into a separate function.
+       
+       (resolve_method_loading_constraints): New function.
+       
+       (resolve_method): Call resolve_method_loading_constraints.
+       
+       * src/vm/resolve.h (resolve_method_loading_constraints): New function.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Call
+       resolve_method_loading_constraints.
+
+2006-10-09 17:08  edwin
+
+       * src/vm/resolve.c (resolve_method_lazy): Removed dependence on
+       instruction format. Do not perform verifier checks. (Caller will
+       do these.)
+       
+       (create_unresolved_method): Renamed to
+       resolve_create_unresolved_method. Changed arguments.
+       
+       * src/vm/resolve.h (create_unresolved_method): Renamed to
+       resolve_create_unresolved_method. Changed arguments.
+       
+       (resolve_method_lazy): Changed arguments.
+       
+       (resolve_method_verifier_checks): Export.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Adapted
+       to changed resolve functions. Call resolve_method_verifier_checks.
+       Do promotion from INVOKEVIRTUAL to INVOKESPECIAL here.
+       
+       * src/vm/jit/parse.c (parse): Adapted to changed resolve functions.
+       Do promotion from INVOKEVIRTUAL to INVOKESPECIAL here.
+
+2006-10-09 15:42  edwin
+
+       * src/vm/resolve.c (resolve_field_verifier_checks): Removed dependence
+       on instruction format.
+       
+       (resolve_field_lazy): Pass field reference, instead of instruction.
+       Do not perform verification checks here. (Caller will do them.)
+       
+       (resolve_field): Adapted to changed resolve_field_verifier_checks.
+       
+       (create_unresolved_field): Renamed to resolve_create_unresolved_field.
+       
+       (constrain_unresolved_field): Renamed to
+       resolve_constrain_unresolved_field. Removed dependence on instruction
+       format.
+       
+       * src/vm/resolve.h (create_unresolved_field): Renamed to
+       resolve_create_unresolved_field.
+       
+       (resolve_field_lazy): Changed arguments.
+       
+       (resolve_field_verifier_checks): Export.
+       
+       (constrain_unresolved_field): Renamed to
+       resolve_constrain_unresolved_field. Changed arguments.
+       
+       * src/vm/jit/verify/typecheck.c (typecheck): Moved instruction set
+       dependent parts of resolve functions into typecheck.
+       
+       * src/vm/jit/parse.c (resolve_field_lazy): Changed arguments.
+       (create_unresolved_field): Renamed.
+
+2006-10-08 22:49  edwin
+
+       *
+       test/regression/jasmin/test_verify_ok_jsr_subroutine_loops_to_start.j:
+       New test.
+       
+       * test/regression/jasmin/test.j: Small cleanup.
+       
+       * test/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-08 11:39  edwin
+
+       * src/vm/jit/stack.c: Verify that subroutines are not merged.
+       (SBRSTART): New macro.
+       (COPY_VAL_AND_TYPE_VAR): New macro, propagate SBRSTART.
+       (COPY_VAL_AND_TYPE): Use COPY_VAL_AND_TYPE_VAR.
+       (stack_create_invars): Cleaned up, use COPY_VAL_AND_TYPE_VAR.
+       (stack_create_invars_from_outvars): Use COPY_VAL_AND_TYPE_VAR.
+       (stack_check_invars): Check against merging of subroutines. Wrapped
+       verifier checks in #if defined(ENABLE_VERIFIER).
+       (stack_check_invars_from_outvars): Likewise.
+       (stack_reanalyse_block): Wrapped verifier checks in
+       #if defined(ENABLE_VERIFIER).
+       (stack_analyse): Prepare a real variable for the handler stack.
+       Implemented re-analysing of blocks. Set SBRSTART for JSR.
+       
+       * src/vm/jit/parse.c (parse): Reserve extra variables needed by
+       stack_analyse.
+       
+       * src/vm/global.h (STACK_EXTRA_VARS): New macro.
+
+2006-10-08 10:51  edwin
+
+       * src/vm/jit/show.c (show_basicblock): Removed extra newline.
+
+2006-10-08 00:07  edwin
+
+       *
+       tests/regression/jasmin/test_verify_fail_jsr_merge_subroutines_via_stack.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-07 23:56  edwin
+
+       * src/vm/jit/cfg.c (cfg_build): Fixed a bug causing infinite loops.
+       
+       * src/vm/jit/parse.c (parse): Always add a NOP at block ends. This is
+       needed by the JSR elimination in stack.c.
+       
+       * tests/regression/jasmin/test_verify_fail_jsr_merge_subroutines.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-07 23:02  edwin
+
+       * tests/regression/jasmin/test_verify_fail_jsr_polymorphic_pop.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added new test.
+       
+       * src/vm/jit/stack.c (stack_check_invars): Fixed bug exposed by the
+       new test.
+       (stack_check_invars_from_outvars): Likewise.
+
+2006-10-07 22:34  edwin
+
+       *
+       tests/regression/jasmin/test_verify_fail_jsr_called_with_different_stackdepths.j:
+       New test.
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-10-07 12:54  edwin
+
+       * src/vm/jit/stack.c (GET_NEW_VAR): Fixed macro argument.
+       
+       (SET_TEMPVAR): Call new function stack_change_to_tempvar.
+       
+       (stack_change_to_tempvar): New function.
+       
+       (stack_analyse): Mark pass-through stackslots of INVOKEs instead of
+       resetting them to TEMPVARs.
+       
+       * src/vm/jit/jit.h (PASSTHROUGH): New flag.
+
+2006-10-07 10:22  edwin
+
+       * src/vm/jit/allocator/simplereg.c: Implemented REG_INDEX for
+       architectures with address register file.
+
+2006-10-07 09:44  edwin
+
+       * src/vm/jit/allocator/simplereg.c
+       (simplereg_allocate_locals_leafmethod): Fixed declaration after code.
+
+2006-10-07 00:06  edwin
+
+       * src/vm/jit/allocator/simplereg.c (simplereg_allocate_interface):
+       Copy all flags except SAVEDVAR when reusing an interface slot.
+
+2006-10-06 23:58  edwin
+
+       * src/vm/jit/allocator/simplereg.c: Cleaned up memory slot allocation.
+
+2006-10-06 23:41  edwin
+
+       * src/vm/jit/allocator/simplereg.c (simplereg_allocate_interfaces):
+       Fixed
+       indentation.
+
+2006-10-06 23:03  edwin
+
+       * src/vm/jit/allocator/simplereg.c (simplereg_allocate_temporaries):
+       Minor cleanup, use SIMPLEREG_REG_INDEX.
+
+2006-10-06 22:37  edwin
+
+       * src/vm/jit/allocator/simplereg.c: Reuse interface registers in
+       blocks
+       that don't need them. Abstracted out the free register stacks with
+       macros. Major code cleanup.
+       
+       * src/vm/jit/allocator/simplereg.h (reg_make_statistics): Renamed to
+       simplereg_make_statistics.
+       
+       * src/vm/jit/reg.h (registerdata): Added fields `adrusedinout`,
+       `intusedinout`, `fltusedinout`, and `regisoutvar`.
+       
+       * src/vm/jit/jit.c (simplereg_make_statistics): Renamed to
+       simplereg_make_statistics.
+       
+       * src/vm/jit/jit.h (SAVEDTMP): Renamed to SAVREG.
+       (TMPARG): Renamed to ARGREG.
+       (STCOPY): Removed.
+       (STKEEP): Removed.
 
-2005-11-18 01:11  twisti
+2006-10-06 21:30  edwin
 
-       * src/vm/jit/mips/asmpart.S:
-         * asm_calljavafunction: Set noreorder so computing pv is correct.
-         * asm_calljavafunction2: Likewise and added missing nops.
+       * src/vm/jit/stack.c (stack_analyse): Do not set argintreguse to
+       a value > INT_ARG_CNT, as this breaks some new code that will
+       later be committed to simplereg.c, and does not make sense, anyway.
 
-2005-11-17 23:30  twisti
+2006-10-06 20:11  edwin
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_calljavafunction2: Load address for jumptables correctly for
-         darwin.
+       * src/vm/jit/intrp/Makefile.am (Changes): Added my name.
 
-2005-11-17 20:28  twisti
+2006-10-06 20:09  edwin
 
-       * src/vm/jit/intrp/: java-vm.i, java-disasm.i, java-gen.i,
-         java-labels.i, java-peephole.i, java-profile.i:
-         * Users should not need to generate these.
+       * src/vm/jit/show.h (show_variable): Made global.
+       (show_variable_array): Likewise.
+       
+       * src/vm/jit/show.c (show_variable): Likewise.
+       (show_variable_array): Likewise.
 
-2005-11-17 20:06  twisti
+2006-10-05 20:30  edwin
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_calljavafunction: Fixed -O2 problem, we have to save itmp3
-           since it's a callee saved register.
-         * asm_calljavafunction2: Likewise and started to implement argument
-           passing correctly with jump tables.
+       * src/threads/native/threads.c (threads_attach_current_thread): Rename
+       left-over `t` to `thread` in interpreter code.
 
-2005-11-17 20:01  twisti
+2006-10-05 20:21  edwin
 
-       * src/vm/jit/powerpc/codegen.h:
-         * var_to_reg_int_{low,high} renamed to var_to_reg_lng_{low,high}
-         * Smaller changes.
+       * src/vm/jit/codegen-common.c: Include vm/jit/intrp/intrp.h to prevent
+       a warning.
 
-2005-11-17 20:00  twisti
+2006-10-05 20:18  edwin
 
-       * src/vm/jit/powerpc/codegen.c:
-         * var_to_reg_int_{low,high} renamed to var_to_reg_lng_{low,high}
-         * ICMD_IF_Lxx: Implemented.
-         * ICMD_IF_LCMPxx: Likewise.
+       * src/vm/jit/intrp/intrp.h: Added missing prototypes.
+       
+       * src/vm/jit/intrp/engine.c: Comment unused variable `ca1`.
+       
+       * src/vm/jit/intrp/java.vmg: Mark the variables `currentsp` as
+       MAYBE_UNUSED.
+
+2006-10-05 20:04  edwin
+
+       * src/vm/jit/intrp/intrp.h: Cleaned up. Defined missing prototypes.
+       
+       * src/vm/jit/intrp/java.vmg: Defined "afi" type prefix.
 
-2005-11-17 19:57  twisti
+2006-10-05 19:36  edwin
 
-       * src/vm/jit/: alpha/arch.h, i386/arch.h, mips/arch.h,
-         x86_64/arch.h:
-         * SUPPORT_LONG_CMP_CONST: Added.
+       * src/vm/jit/intrp/peephole.c: Include interpreter files using < >
+       instead of " ", so they are only searched for in the include path.
+       This avoids using the wrong include files when compiling in a
+       buildir.
+       
+       * src/vm/jit/intrp/codegen.c: Likewise.
+       * src/vm/jit/intrp/engine.c: Likewise.
+       * src/vm/jit/intrp/disasm.c: Likewise.
+       * src/vm/jit/intrp/dynamic-super.c: Likewise.
+       
+       * src/vm/jit/intrp/vmgenx: Fixed to work with builddir, and cleaned
+       up.
+       
+       * src/vm/jit/intrp/Makefile.am: Fixed dependencies for builddir.
 
-2005-11-17 19:53  twisti
+2006-10-05 17:52  edwin
 
-       * src/vm/jit/powerpc/arch.h:
-         * SUPPORT_LONG_CMP_CONST: Added.
-         * NOLONG_CONDITIONAL: Removed.
+       * src/vm/jit/intrp/engine.c (Changes): Added my name.
+       (vim boilerplate): Added.
 
-2005-11-17 19:53  twisti
+2006-10-05 17:28  twisti
 
-       * src/vm/jit/stack.c:
-         * NOLONG_CONDITIONAL renamed to SUPPORT_LONG_CMP_CONST.
+       * src/native/jni.c (jni_attach_current_thread): New help function.
+       (_Jv_JNI_AttachCurrentThread): Use helper function.
+       (_Jv_JNI_AttachCurrentThreadAsDaemon): Likewise.
+       (_Jv_JNI_DetachCurrentThread): Implemented.
+       
+       * src/threads/native/threads.c (method_thread_init)
+       (method_threadgroup_add_: Made static.
+       (threads_init): Code rearranged.
+       (threads_startup_thread): Removed thread detach code and call
+       threads_detach_thread.
+       (threads_detach_thread): New function.
+       
+       * src/threads/native/threads.h (threads_detach_thread): Added.
 
-2005-11-17 19:40  twisti
+2006-10-05 17:23  twisti
 
-       * tests/regression/: Makefile.am, Test.sh:
-         * Really support build dirs.
+       * src/vm/utf8.c (utf_removeThread, utf_java_lang_Thread__V): Added.
+       (utf8_init): Initialize new strings.
+       * src/vm/utf8.h (utf_removeThread, utf_java_lang_Thread__V): Added.
 
-2005-11-17 19:33  twisti
+2006-10-05 16:28  edwin
 
-       * tests/regression/Makefile.am:
-         * Build dir support.
+       * src/vm/vm.c (vm_create): Turn off the verifier for -Xint.
 
-2005-11-17 17:58  twisti
+2006-10-05 16:18  edwin
 
-       * src/vm/jit/powerpc/linux/md-asm.h:
-         * SAVE_TEMPORARY_REGISTERS, RESTORE_TEMPORARY_REGISTERS: Removed t7.
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Style fix.
 
-2005-11-17 14:47  twisti
+2006-10-05 16:12  edwin
 
-       * src/vm/string.c:
-         * string_init: Added.
-         * literalstring_u2: Added string hashtable lock.
+       * src/vm/jit/intrp/codegen.c (codegen): Save synchronized object in
+       a special stackslot and use it for monitorexit.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): When
+       unwinding a synchronized method, exit the monitor.
 
-2005-11-17 14:47  twisti
+2006-10-05 15:43  edwin
 
-       * src/vm/stringlocal.h:
-         * string_init: Added.
+       * src/vm/jit/intrp/codegen.c (codegen): Reserve an extra stackslot in
+       synchronized methods.
+       (intrp_createcompilerstub): Likewise.
+       (intrp_createnativestub): Use stackframesize for clarity.
 
-2005-11-17 14:46  twisti
+2006-10-05 15:33  edwin
 
-       * src/cacao/cacao.c:
-         * main: Call string_init.
+       * src/vm/jit/intrp/codegen.c (codegen): Separate stackframesize from
+       the number of local variables.
+       (intrp_createcompilerstub): Likewise.
+       
+       * src/vm/jit/intrp/engine.c (MAXLOCALS): Changed to FRAMESIZE.
+       
+       * src/vm/jit/intrp/java.vmg (INVOKEVIRTUAL): Use FRAMESIZE.
+       (INVOKESTATIC): Likewise.
+       (INVOKESPECIAL): Likewise.
+       (INVOKEINTERFACE): Likewise.
 
-2005-11-17 14:35  twisti
+2006-10-05 14:13  twisti
 
-       * src/vm/: finalizer.c, finalizer.h:
-         * finalizer_add: Removed.
-         * finalizer_notify, finalizer_run: Added.
-         * finalizer_thread: Removed list stuff since this was wrong, we need
-           to call the finalizers immediately.  We do this now with
-           gc_invoke_finalizers.
+       * src/native/jni.c (jni_init_localref_table): New function.
+       (AttachCurrentThread): Implemented.
+       (JNI_CreateJavaVM): Use jni_init_localref_table.
+       
+       * src/threads/native/threads.c (method_thread_init)
+       (method_threadgroup_add): New global variables.
+       (threads_init): Store methods resolved in global variables.
+       (threads_attach_current_thread): New function.
+       
+       * src/threads/native/threads.h (MIN_PRIORITY, NORM_PRIORITY)
+       (MAX_PRIORITY): Defined.
+       (threads_attach_current_thread): New function.
 
-2005-11-17 14:34  twisti
+2006-10-05 12:23  edwin
 
-       * src/mm/boehm.c:
-         * gc_init: Set GC_java_finalization, GC_finalize_on_demand and
-           GC_finalizer_notifier.
+       * src/vm/jit/intrp/java.vmg (TRACECALL): Implemented for 32-bit
+       architectures.
 
-2005-11-17 11:23  twisti
+2006-10-05 10:50  edwin
 
-       * src/vm/jit/x86_64/codegen.h:
-         * M_LST_IMM32, M_AST_IMM32: Added.
+       * src/vm/jit/intrp/codegen.c (codegen): Fix off-by-one error in len
+       tests of optimizations.
 
-2005-11-17 11:22  twisti
+2006-10-05 10:41  edwin
 
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Don't save return value for void functions.
+       * src/vm/jit/show.c (show_icmd): Show constant operand of IFxx, and
+       IF_Lxx.
 
-2005-11-17 11:21  twisti
+2006-10-05 10:39  edwin
 
-       * src/native/vm/VMString.c:
-         * intern: Reformatted for better debugability.
+       * src/vm/jit/show.c (show_basicblock): Fixed deadcode check.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Clear
+       global_sp.
 
-2005-11-16 20:13  edwin
+2006-10-05 09:04  twisti
 
-       * src/vm/utf8.c: make twisti's debug code a bit more compiler
-         friendly (it did not compile with the mips compiler)
+       * src/vm/jit/powerpc/emit.c (emit_verbosecall_enter): Darwin build
+       fixes.
 
-2005-11-16 14:29  twisti
+2006-10-05 00:21  edwin
 
-       * src/vm/finalizer.c:
-         * gnu_classpath_Pointer.h: Removed.
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Fixed for
+       catch-all handlers.
 
-2005-11-16 14:28  twisti
+2006-10-05 00:06  edwin
 
-       * src/vm/linker.c:
-         * link_array: Replaced utf_new_intern with utf_new.
+       * src/vm/jit/show.c (show_method): Adapted to interpreter.
+       (show_basicblock): Likewise.
+       
+       * src/vm/jit/intrp/disass.c (intrp_disassinstr): Write disassembly to
+       stdout.
+       (intrp_disassemble): Likewise.
 
-2005-11-16 14:28  twisti
+2006-10-04 23:08  edwin
 
-       * src/vm/loader.c:
-         * load_constantpool, load_newly_created_array: Replaced
-           utf_new_intern with utf_new.
+       * tests/regression/jctest.java: Also test division/remainder with
+       constant divisor 1.
+       
+       * tests/regression/jctest.output: Updated test output.
 
-2005-11-16 14:27  twisti
+2006-10-04 23:05  edwin
 
-       * src/vm/: utf8.c, utf8.h:
-         * utf_new_intern: Removed.
-         * utf_new: Added hashtable locking (from utf_new_intern).
+       * src/vm/jit/intrp/codegen.c (codegen): Don't ?DIVPOW2 with value 1.
+       The optimization produces the wrong result in this case.
 
-2005-11-16 14:15  twisti
+2006-10-04 22:53  edwin
 
-       * src/native/include/: Makefile.am, gnu_classpath_Pointer.h:
-         * gnu_classpath_Pointer.h: Removed, not required anymore during
-         libvm.
+       * src/vm/jit/intrp/codegen.c (codegen): Implemented IDIVPOW2 and
+       LDIVPOW2 optimizations.
 
-2005-11-16 13:13  twisti
+2006-10-04 22:39  edwin
 
-       * src/vm/classcache.c:
-         * config.h, vm/types.h: Added.
-         * lock_classcache_hashtable: Likewise.
-         * classcache_init: Changed return type to bool, initialize
-           lock_classcache_hashtable.
-         * CLASSCACHE_LOCK, CLASSCACHE_UNLOCK: Use builtin_monitorenter/exit
-           instead of crappy tables_lock/unlock.
+       * src/vm/jit/intrp/codegen.c (codegen): Implemented IREMPOW2 and
+       LREMPOW2 optimizations.
 
-2005-11-16 13:12  twisti
+2006-10-04 22:12  edwin
 
-       * src/vm/classcache.h:
-         * classcache_init: Changed return type to bool.
+       * src/vm/jit/intrp/codegen.c (codegen): Implement optimization of
+       comparisons.
 
-2005-11-16 13:12  twisti
+2006-10-04 20:44  edwin
 
-       * src/vm/tables.c:
-         * tables_init: Changed return type to bool, removed call to
-           classcache_init: now done in cacao.c (main).
+       * src/vm/jit/allocator/simplereg.c (reg_free_temp_func): Fixed indices
+       into regcopycount array.
+       (allocate_scratch_registers): Likewise.
 
-2005-11-16 13:11  twisti
+2006-10-04 20:02  edwin
 
-       * src/vm/tables.h:
-         * tables_init: Changed return type to bool.
+       * src/vm/jit/intrp/codegen.c (codegen): #if 0-ed optimized ICMDs that
+       are currently not used. In order to use these instructions, we could
+       either add the optimization checks directly to codegen.c, or introduce
+       a special pass between parse and intrp_codegen which replaces the
+       instructions.
 
-2005-11-16 13:10  twisti
+2006-10-04 19:47  edwin
 
-       * src/vm/utf8.c:
-         * lock_utf_hashtable: Added.
-         * utf8_init: Changed return type to bool, initialize
-         lock_utf_hashtable.
-         * utf_new: Use builtin_monitorenter/exit instead of crappy
-         tables_lock.
+       * src/vm/jit/intrp/codegen.c (codegen): Removed unoptimized *CONST
+       instructions. Since stack_analyse is no longer performed before the
+       interpreter codegen, these instructions cannot occur.
 
-2005-11-16 13:09  twisti
+2006-10-04 19:38  edwin
 
-       * src/vm/utf8.h:
-         * config.h, vm/types.h: Added.
-         * utf8_init: Changed return type to bool.
+       * src/vm/jit/stack.c: Removed interpreter-specific code.
 
-2005-11-16 13:08  twisti
+2006-10-04 18:44  edwin
 
-       * src/cacao/cacao.c:
-         * main: Initialize subsystems in correct order, added
-         classcache_init.
+       * src/threads/native/lock.c (lock_monitor_exit): Check for NULL
+       object.
+       There is no guarantee that MONITORENTER/EXITs are properly nested, so
+       we cannot rely on the check in lock_monitor_enter here.
 
-2005-11-16 13:03  twisti
+2006-10-04 18:39  edwin
 
-       * src/cacaoh/cacaoh.c:
-         * Initialize subsystems in correct order.
+       * tests/regression/jasmin/test_nullpointerexception_monitorexit.j:
+       Fixed test case, so it passes if the exception is thrown.
 
-2005-11-16 13:03  twisti
+2006-10-04 18:35  edwin
 
-       * src/cacaoh/headers.c:
-         * throw_main_exception_exit: Added.
+       * tests/regression/jasmin/test_nullpointerexception_monitorexit.j:
+       New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added
+       test_nullpointerexception_monitorexit.j.
 
-2005-11-16 00:43  twisti
+2006-10-04 18:25  edwin
 
-       * src/native/vm/Field.c:
-         * set: Handle value == NULL correctly.
+       * tests/regression/jasmin/Makefile.am: Properly quote variables.
 
-2005-11-15 22:13  twisti
+2006-10-04 18:23  edwin
 
-       * tests/regression/: jctest.java, jctest.output:
-         * Added long corner case for 32-bit archs.
+       * src/vm/jit/intrp/engine.c (THROW_CLASSCASTEXCEPTION): Really throw a
+       ClassCastException, not a NullPointerException.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Set
+       global_sp, in case the resolving of the catchtype involves the
+       execution of Java code.
+       
+       * src/vm/jit/intrp/java.vmg (MONITORENTER): Check for exception.
+       (MONITOREXIT): Likewise.
 
-2005-11-15 01:26  twisti
+2006-10-04 16:42  edwin
 
-       * src/vm/jit/: alpha/Makefile.am, i386/Makefile.am,
-         mips/Makefile.am, powerpc/Makefile.am, x86_64/Makefile.am:
-         * BUILT_SOURCES: Added offsets.h.
+       * src/vm/jit/intrp/java.vmg (LOOKUPSWITCH): No point in using >= 0 on
+       an unsigned variable.
 
-2005-11-15 01:18  twisti
+2006-10-04 16:01  edwin
 
-       * .cdtproject, .cvsignore, .project, configure.in,
-         src/lib/Makefile.am, src/native/Makefile.am,
-         src/native/include/Makefile.am, src/vm/global.h,
-         .externalToolBuilders/CacaoAutogen.launch,
-         .externalToolBuilders/CacaoConfigure.launch,
-         src/vm/jit/i386/Makefile.am, tests/native/Makefile.am,
-         tests/regression/Makefile.am: 2005-11-14  Tom Tromey
-         <tromey@redhat.com>
+       * src/vm/jit/intrp/codegen.c (nativecall): Store return valud of
+       codegen_finish_native_call in *exceptionptr.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Resolve
+       unresolved catchtype references.
 
-               * .cvsignore: Updated.
-               * .cdtproject, .project: New files.
-               * .externalToolBuilders/CacaoAutogen.launch: New file.
-               * .externalToolBuilders/CacaoConfigure.launch: New file.
-               * configure.in: Added --with-flat-classpath option, new subst
-               GLIBJZ, new define GLIBJZ_STRING.
-               * tests/regression/Makefile.am (JAVAC): Use GLIBJZ.
-               * tests/native/Makefile.am (JAVAC): Use GLIBJZ.
-               * src/vm/global.h (CLASSPATH_GLIBJ_ZIP_PATH): Use GLIBJZ_STRING.
-               * src/vm/jit/i386/Makefile.am (BUILT_SOURCES): New variable.
-               * src/native/Makefile.am (nativetable.inc): Use GLIBJZ.
-               * src/native/include/Makefile.am (GLIBJ_ZIP): Use GLIBJZ.
-               * src/lib/Makefile.am (GLIBJ_ZIP): Use GLIBJZ.
+2006-10-04 15:14  edwin
 
-2005-11-14 20:48  twisti
+       * src/vm/jit/intrp/codegen.c (codegen): Convert JavaPCs to block
+       indices.
+       Do not check for BBREACHED (not set by parse).
+       (gen_branch): Convert JavaPCs to block indices.
+       
+       * src/vm/jit/intrp/java.vmg (RET): restored.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Do not perform stack_analyse
+       and
+       dependent passes for intrp.
+
+2006-10-04 15:04  twisti
+
+       * src/vm/jit/intrp/md.c (intrp_md_init): Set vm_out to stderr.
+       
+       * src/vm/jit/intrp/engine.c (THROW_CLASSCASTEXCEPTION): Added.
+       (engine): Handle ClassCastExceptions with argument.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Indent.
+       
+       * src/vm/jit/intrp/dynamic-super.c: Use LOCK_MONITOR_{ENTER,EXIT}
+       macros.
+       
+       * src/vm/jit/intrp/patcher.c (intrp_patcher_invokestatic_special):
+       Write back method pointer. I wonder how this ever worked before.
+       (intrp_patcher_invokevirtual): Likewise.
+       (intrp_patcher_invokeinterface): Likewise.
+       
+       * src/vm/jit/intrp/java.vmg (RET): Removed.
+       (TABLESWITCH): Changed reading direction of cases. Don't know if that
+       works: NOT TESTED!
+       (CHECKCAST): Use THROW_CLASSCASTEXCEPTION.
+       (ARRAYCHECKCAST): Likewise.
+       (MONITORENTER): Likewise.
+       (MONITOREXIT): Likewise.
+
+2006-10-04 14:50  edwin
+
+       * src/vm/jit/intrp/dynamic-super.c (superreuse_insert): Use
+       lock_monitor_ functions.
+       (patchersuper_rewrite): Likewise.
+       (hashtable_patchersupers_insert): Likewise.
+
+2006-10-04 14:31  edwin
+
+       * src/vm/jit/intrp/codegen.c (codegen): Restored ICMD_RET to really
+       perform a RET (JSR elimination will not be performed for intrp.)
+       Removed a comment that does not apply any more.
+
+2006-10-04 14:20  edwin
+
+       * src/vm/jit/intrp/java.vmg (builtin_monitorenter): Changed to
+       lock_monitor_enter.
+       (builtin_monitorexit): Changed to lock_monitor_exit.
+
+2006-10-04 13:40  edwin
+
+       * src/vm/jit/intrp/codegen.c: Made it compile again.
+
+2006-10-04 13:35  twisti
+
+       * src/vm/jit/intrp/codegen.c: New instruction format fixes.
+
+2006-10-04 12:09  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Removed src/scripts/rmic and
+       src/scripts/rmiregistry.
+       * src/scripts/Makefile.am (bin_SCRIPTS): Removed trailing \.
+
+2006-10-04 10:37  twisti
+
+       * src/scripts/rmic.in: Removed.
+       * src/scripts/rmiregistry.in: Likewise.
+       
+       * src/scripts/Makefile.am (bin_SCRIPTS) Removed rmi.in and
+       rmiregistry.in.
+       * src/scripts/.cvsignore: Likewise.
+       
+       * src/scripts/java.in: Don't call cacao with an absolute path, this
+       would break WITH_JRE_LAYOUT. I think we can expect cacao to be in the
+       PATH.
+
+2006-10-04 10:10  twisti
+
+       * configure.ac (--with-jre-layout): Added.
+       
+       * src/vm/global.h (CLASSPATH_LIBRARY_PATH): Removed.
+       
+       * src/vm/vm.c [WITH_JRE_LAYOUT] (libgen.h, unistd.h): Added.
+       (cacao_prefix, cacao_libjvm, classpath_libdir): New global variables.
+       (version): Print gnu.classpath.boot.library.path instead of
+       java.library.path as this is the interesting one.
+       (vm_create): Added WITH_JRE_LAYOUT stuff.
+       
+       * src/vm/vm.h (stackbottom): Removed.
+       (cacao_prefix, cacao_libjvm, classpath_libdir): Added.
+       
+       * src/cacao/cacao.c [WITH_JRE_LAYOUT] (errno.h, libgen.h, unistd.h):
+       Added.
+       (main): Added WITH_JRE_LAYOUT stuff.
+       
+       * src/native/vm/gnu_classpath_VMSystemProperties.c (vm/vm.h): Added.
+       (preInit): Set env_java_home to cacao_prefix and
+       gnu.classpath.boot.library.path to classpath_libdir.
+       
+       * src/native/native.c (native_init): Use cacao_libjvm in lt_dlopenext
+       call.
+
+2006-10-03 21:19  edwin
+
+       * src/vm/jit/jit.h (jitdata): Renamed c_debug_nr to c_block_nr. (Still
+       not a good name. Should probably be removed entirely.)
+       Added comments.
+       
+       * src/vm/method.h (c_debug_nr): Renamed to c_block_nr.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/loop/analyze.c: Likewise.
+       * src/vm/jit/inline/inline.c: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+
+2006-10-03 20:57  edwin
+
+       * src/vm/jit/powerpc/codegen.c: Removed new_ prefix from variable and
+       field names.
+       
+       * src/vm/jit/cfg.c: Likewise.
+       * src/vm/jit/sparc64/codegen.c: Likewise.
+       * src/vm/jit/reorder.c: Likewise.
+       * src/vm/jit/ifconv/ifconv.c: Likewise.
+       * src/vm/jit/alpha/codegen.c: Likewise.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/stack.h: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/powerpc64/codegen.c: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/replace.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/parse.h: Likewise.
+       * src/vm/jit/jit.c: Likewise.
+       * src/vm/jit/jit.h: Likewise.
+
+2006-10-03 20:44  edwin
+
+       * src/vm/resolve.c: Removed new_ prefix from function names.
+       * src/vm/resolve.h: Likewise.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/stack.h: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/show.h: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/allocator/simplereg.h: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/parse.h: Likewise.
+       * src/vm/jit/jit.c: Likewise.
+
+2006-10-03 20:27  edwin
+
+       * src/vm/jit/allocator/simplereg.c: Warning fixed.
+
+2006-10-03 20:26  edwin
+
+       * src/vm/jit/i386/codegen.c (codegen): Use varindex as in other
+       codegens.
+
+2006-10-03 20:22  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Removed obsolete stack depth
+       checking code.
+       
+       * src/vm/jit/stack.h (CHECK_STACK_DEPTH): Removed macro.
+
+2006-10-03 19:11  edwin
+
+       * src/vm/jit/powerpc64/codegen.c (codegen): Unified IINC and
+       IADDCONST.
+
+2006-10-03 18:50  edwin
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Unify IINC and IADDCONST.
+
+2006-10-03 18:34  edwin
+
+       * src/vm/jit/allocator/simplereg.c (reg_make_statistics): Bugfix.
+
+2006-10-03 18:21  twisti
+
+       * src/native/vm/gnu_classpath_VMSystemProperties.c (preInit): We don't
+       need to strcpy the library variables. Don't know where this code came
+       from.
+
+2006-10-03 18:09  edwin
+
+       * src/vm/jit/allocator/simplereg.c (reg_make_statistics): Make it
+       compile again.
+
+2006-10-03 17:44  edwin
+
+       Moved unified_variables branch to trunk.
+
+2006-10-03 17:24  edwin
+
+       * tests/regression/jasmin/test_iinc.j: New test.
+       
+       * tests/regression/jasmin/Makefile.am: Added test_iinc.j
+
+2006-10-03 16:42  edwin
+
+       Merged r5640 from trunk:
+       
+       * src/vm/jit/x86_64/Makefile.am (libarch_la_SOURCES): Renamed
+       md-emit.h to emit.h.
+
+2006-10-03 16:32  edwin
+
+       * src/vm/jit/powerpc/codegen.c: Implemented ICMD_JSR like ICMD_GOTO.
+       * src/vm/jit/powerpc64/codegen.c: Likewise.
+       
+       * src/vm/jit/alpha/codegen.c: Implemented ICMD_JSR like ICMD_GOTO.
+       Unified ICMD_IINC and ICMD_IADDCONST.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+
+2006-10-02 19:24  edwin
+
+       Merged r5636, r5637, and r5638 from trunk:
+       
+       * src/native/tools/gennativetable.c: Made it work again.
+       
+       * tests/regression/jasmin/.cvsignore: New file.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): #if 0 replacement point
+       code.
+       
+       * src/vm/jit/powerpc/emit.c [!NDEBUG] (emit_verbosecall_enter)
+       (emit_verbosecall_exit): #ifdef'ed.
 
-       * src/native/jni.c:
-         * Get<Type>Field: Big-endian fixes for boolean, byte, char, short
-         versions.
-         * Set<Type>Field: Likewise.
+2006-10-02 16:36  christian
 
-2005-11-14 20:47  twisti
+       * src/vm/jit/alpha/md-abi.c (md_return_alloc): Activated return value
+       stackslot registers precolouring again.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * createnativestub: Some fixes, don't save return value for void
-         functions.
+2006-10-02 14:18  edwin
 
-2005-11-11 22:58  twisti
+       * src/vm/jit/powerpc/netbsd/md-abi.c: Blindly ported to
+       unified_variables.
+       
+       * src/vm/jit/powerpc/linux/md-abi.c: Cleaned up.
+       * src/vm/jit/powerpc/darwin/md-abi.c: Likewise.
+       * src/vm/jit/alpha/md-abi.c: Likewise.
+       * src/vm/jit/mips/md-abi.c: Likewise.
+       * src/vm/jit/powerpc64/linux/md-abi.c: Likewise.
+       * src/vm/jit/x86_64/md-abi.c: Likewise.
 
-       * src/native/vm/VMSystemProperties.c:
-         * preInit: Set java.library.path to "" to be compatible to other
-         JVMs.
+2006-10-02 13:59  edwin
 
-2005-11-11 15:42  twisti
+       * src/vm/jit/powerpc/codegen.c: Changed OUTVAR to INOUT.
+       * src/vm/jit/alpha/codegen.c: Likewise.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/powerpc64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/jit.h: Likewise.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * codegen: Changed return value to bool, throw InternalError for
-           unknown ICMD.
+2006-10-02 13:43  edwin
 
-2005-11-11 15:26  twisti
+       * src/vm/jit/alpha/codegen.h: Removed M_COPY.
+       * src/vm/jit/mips/codegen.h: Likewise.
+       * src/vm/jit/i386/codegen.h: Likewise.
+       * src/vm/jit/powerpc64/codegen.h: Likewise.
+       * src/vm/jit/x86_64/codegen.h: Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c: Unified ICMD_RET with ICMD_GOTO.
+       * src/vm/jit/alpha/codegen.c: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/powerpc64/codegen.c: Likewise.
+       * src/vm/jit/intrp/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
 
-       * src/vm/jit/: alpha/codegen.c, i386/codegen.c:
-         * codegen: Changed return value to bool, throw InternalError for
-           unknown ICMD.
+2006-10-02 13:26  edwin
 
-2005-11-11 15:06  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Unified LOAD/STORE and
+       COPY/MOVE instructions.
+       
+       * src/vm/jit/powerpc/codegen.h (M_COPY): Removed.
 
-       * src/native/jni.c:
-         * setfield_critical: Removed.
-         * getFieldID_critical: Likewise.
+2006-10-02 13:16  edwin
 
-2005-11-11 15:05  twisti
+       * src/vm/jit/powerpc/linux/md-abi.c (md_param_alloc): Cleaned up
+       comments.
+       * src/vm/jit/powerpc/darwin/md-abi.c (md_param_alloc): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Removed obsolete call to
+       codegen_reg_of_var.
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+       
+       * src/vm/jit/codegen-common.c (codegen_reg_of_var): Cleaned up.
+       (codegen_reg_of_dst): Implemented using inline codegen_reg_of_var.
 
-       * src/vm/jit/stack.c:
-         * analyse_stack: Pass opcode to InternalError.
+2006-10-02 12:10  edwin
 
-2005-11-11 15:02  twisti
+       Merged r5626 from trunk:
+       
+       * src/vm/jit/replace.c (replace_create_replacement_points): Return
+       true.
 
-       * src/vm/jit/x86_64/codegen.c:
-         * codegen: Changed return value to bool, throw InternalError for
-           unknown ICMD.
+2006-10-02 11:55  edwin
 
-2005-11-11 13:00  twisti
+       Merged r5624 from trunk:
+       
+       * src/vm/jit/mips/asmpart.S (asm_vm_call_method): Remove argument
+       stack frame in normal path.
 
-       * src/vm/jit/mips/codegen.c:
-         * Java 1.5 support changes.
-         * codegen: Return bool value to signal an exception.
-         * Fix line number problem in exception stubs: we can't reuse an
-           exception stub since we get always the last exception pc.
-         * Changed MCODECHECK size in stubs to 100, just to be sure.
+2006-10-02 00:32  edwin
 
-2005-11-11 12:59  twisti
+       * src/vm/jit/alpha/codegen.c (codegen): Unified MOVE/COPY with
+       LOAD/STORE instructions.
 
-       * src/vm/jit/mips/patcher.c:
-         * patcher_builtin_new: Removed due to Java 1.5 support changes.
-         * patcher_builtin_newarray: Likewise.
-         * patcher_builtin_arrayinstanceof: Likewise.
-         * patcher_aconst: Added.
+2006-10-02 00:08  edwin
 
-2005-11-11 12:57  twisti
+       * tests/regression/jasmin/runtest: Made it a bash script, so it works
+       on crappy fp98.
 
-       * src/cacao/cacao.c:
-         * main: Check for compiler error with compileall and print out some
-           warning.
+2006-10-02 00:06  edwin
 
-2005-11-11 12:39  twisti
+       * tests/regression/jasmin/runtest: Do not use grep -o.
 
-       * src/cacaoh/headers.c:
-         * exceptions_print_exception: Added.
-         * stacktrace_print_trace: Likewise.
+2006-10-01 23:51  edwin
 
-2005-11-11 12:38  twisti
+       * src/vm/jit/mips/emit.c (emit_copy): Fixed arguments to
+       codegen_reg_of_var.
+       * src/vm/jit/powerpc64/emit.c (emit_copy): Likewise.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Define varindex.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise. Fixed arguments
+       to codegen_reg_of_var. Replaced codegen_reg_of_var with
+       codegen_reg_of_dst.
 
-       * src/vm/jit/jit.c:
-         * jit_compile_intern: Check return value of codegen.
+2006-10-01 23:37  edwin
 
-2005-11-11 12:37  twisti
+       * src/vm/jit/powerpc64/codegen.c: Ported to unified_variables.
+       * src/vm/jit/powerpc64/codegen.h: Likewise.
+       * src/vm/jit/powerpc64/emit.c: Likewise.
+       * src/vm/jit/powerpc64/linux/md-abi.c: Likewise.
 
-       * src/vm/jit/codegen.inc.h:
-         * codegen: Changed return type from void to bool.
+2006-10-01 23:00  edwin
 
-2005-11-11 12:17  twisti
+       Merged r5616 from trunk:
+       
+       * src/native/jni.c: Prefix all JNI functions with _Jv_JNI_, as gcj
+       does. This should prevent any linking problems.
 
-       * src/vm/builtin.c:
-         * java_lang_Throwable.h, java_lang_VMThrowable.h: Removed.
-         * builtin_trace_exception: Call exceptions_print_exception and
-           stacktrace_print_trace.
+2006-10-01 22:55  edwin
 
-2005-11-11 12:16  twisti
+       * src/vm/jit/mips/codegen.c: Ported to unified_variables.
+       * src/vm/jit/mips/codegen.h: Likewise.
+       * src/vm/jit/mips/emit.c: Likewise.
+       * src/vm/jit/mips/md-abi.c: Likewise.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         * exceptions_print_exception: Added.
+2006-10-01 20:52  edwin
 
-2005-11-11 12:14  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Cleaned up unified_variables
+       changes.
 
-       * src/vm/jit/stacktrace.c:
-         * java_lang_Throwable.h, java_lang_VMThrowable.h: Added.
-         * cacao_stacktrace_fillInStackTrace: Print ra, sp, framesize in
-         debug mode.
-         * stacktrace_print_trace_from_buffer: Added.
-         * stacktrace_dump_trace: Call stacktrace_print_trace_from_buffer.
-         * stacktrace_print_trace: Changed argument type and call
-           stacktrace_print_trace_from_buffer.
+2006-10-01 20:49  edwin
 
-2005-11-11 12:13  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Cleaned up unified_variables
+       changes.
 
-       * src/vm/jit/stacktrace.h:
-         * stacktrace_print_trace: Changed argument type to
-         java_objectheader*.
+2006-10-01 20:42  edwin
 
-2005-11-11 11:13  twisti
+       * src/vm/jit/x86_64/codegen.c (codegen): Cleaned up unified_variables
+       changes.
 
-       * src/native/include/.cvsignore:
-         * java_lang_Math.h: Removed.
+2006-10-01 20:37  edwin
 
-2005-11-10 23:05  twisti
+       * src/vm/jit/alpha/codegen.c (codegen): Cleaned up unified_variables
+       changes.
 
-       * src/native/vm/VMClass.c:
-         * getClassLoader: Restructured for better debugability.
-         * isInstance: Likewise.
-         * getComponentType: Restructured.
-         * getInterfaces:  Likewise.
-         * getDeclaredConstructors: Better code.
-         * getDeclaredFields: Likewise.
-         * cacao_getField0: Removed.
-         * getBeautifiedName: Likewise.
-         * getName: Renamed that to klass.
-         * getSuperclass: Likewise.
-         * isArray: Likewise.
-         * isInterface: Likewise.
+2006-10-01 20:08  edwin
 
-2005-11-09 22:40  edwin
+       * tests/regression/jasmin/runtest: Use default JASMIN_JAR, if given.
 
-       * tests/: A.java, B.java, a.java, b.java: removed obsolete test
-         files [ABab].java
+2006-10-01 18:01  edwin
 
-2005-11-09 22:40  christian
+       * src/vm/jit/codegen-common.c (codegen_reg_of_var): Fixed typo in
+       ARM code.
 
-       * src/vm/jit/: lsra.h, lsra.inc: Working lsra Version
+2006-10-01 15:44  edwin
 
-2005-11-09 22:40  christian
+       * src/vm/jit/verify/typeinfo.c (typevector_store_retaddr): Do not
+       invalidate the variable at index i-1.
+       (typevector_store_twoword): Removed.
 
-       * src/vm/jit/stack.h: Max Lifetimecount Correction for lsra
+2006-10-01 15:25  edwin
 
-2005-11-09 20:33  edwin
+       * src/vm/jit/verify/typecheck.c (typecheck): Added debug print of
+       the reverse local map.
 
-       * src/vm/jit/verify/typecheck.c: mark statistics on primitive loads
-         as "currently not counted"
+2006-10-01 14:43  edwin
 
-2005-11-09 20:32  edwin
+       * src/vm/vm.c (vm_compile_all): Only use if !defined(NDEBUG).
+       (vm_compile_method): Likewise.
 
-       * src/vm/jit/verify/typecheck.c: save a function call in
-         typecheck.c (without using a macro :)
+2006-10-01 14:37  edwin
 
-2005-11-08 21:54  twisti
+       * src/vm/jit/verify/typeinfo.h: Disabled TYPECHECK_VERBOSE.
 
-       * src/vm/jit/i386/codegen.c:
-         * ICMD_FRETURN, ICMD_DRETURN: In monitorexit we have to use the pop
-           instructions, otherwise the fpu stack gets an overflow after 8
-           monitorexits.
+2006-09-30 23:28  edwin
 
-2005-11-08 20:01  edwin
+       * src/vm/jit/jit.c (jit_compile_intern): Removed commented out
+       debugging code.
 
-       * src/: cacaoh/headers.c, vm/resolve.c, vm/jit/verify/typecheck.c,
-         vm/jit/verify/typeinfo.c, vm/jit/verify/typeinfo.h: typeinfo.h:
-         rewrote some macros as functions
+2006-09-30 23:12  edwin
 
-2005-11-08 18:27  twisti
+       * src/vm/jit/allocator/simplereg.c (reg_new_temp): Simplified.
+       (reg_free_temp): Formatted.
 
-       * src/cacaoh/headers.c:
-         * exceptions_new_nosuchmethoderror: Added.
+2006-09-30 23:06  edwin
 
-2005-11-08 18:24  twisti
+       * src/vm/jit/powerpc/linux/md-abi.c: Use VAR and VAROP macros.
+       * src/vm/jit/powerpc/darwin/md-abi.c: Likewise.
+       * src/vm/jit/alpha/codegen.c: Likewise.
+       * src/vm/jit/alpha/codegen.h: Likewise.
+       * src/vm/jit/alpha/md-abi.c: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/i386/codegen.h: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/x86_64/emit.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.h: Likewise.
+       * src/vm/jit/x86_64/md-abi.c: Likewise.
+       * src/vm/jit/codegen-common.c: Likewise.
+
+2006-09-30 22:45  edwin
+
+       * src/vm/jit/i386/codegen.c (codegen): Use VAR and VAROP macros.
+       (codegen_insert_phi_moves): Likewise.
+
+2006-09-30 22:24  edwin
+
+       Merged r5591 from trunk:
+       
+       * src/native/jni.c (GetVersion): Prefixed with _Jv_, we should do that
+       with all JNI functions.
+
+2006-09-30 22:22  edwin
 
-       * src/native/jni.c:
-         * GetMethodID, GetStaticMethodID: Use
-         exceptions_new_nosuchmethoderror.
+       Merged r5589 and r5590 from trunk:
+       
+       * configure.ac: Fixed CFLAGS for cygwin.
+       * src/threads/native/threads.c: Inserted asserts for cygwin.
+       * src/vm/jit/i386/cygwin/Makefile.am: See below.
+       * src/vm/jit/i386/cygwin/md-asm.h: Added.
+       * src/vm/jit/i386/cygwin/md-os.c: Inserted asserts.
+       * src/vm/jit/i386/cygwin/ucontext.c: Added 3rd party file.
+       * src/vm/jit/i386/cygwin/ucontext.h: Added 3rd party file.
+       
+       
+       * src/cacao/.cvsignore, src/cacaoh/.cvsignore,
+       src/vm/jit/tools/.cvsignore: Added ignores for cygwin and
+       modified properties accordingly.
+
+2006-09-30 11:04  christian
+
+       * src/vm/jit/alpha/codegen.c (codegen): Changed to use the macros VAR
+       and VAROP.
+
+2006-09-30 10:16  christian
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Changed to use the macros
+       VAR and VAROP.
+
+2006-09-29 14:02  edwin
+
+       * src/vm/jit/allocator/simplereg.c (reg_free_temp_func): Handle
+       packed registers.
+       (new_allocate_scratch_registers): Likewise.
+
+2006-09-29 13:33  edwin
+
+       Merged r5540 from trunk:
+       
+       * configure.ac: Cygwin OS dir added.
+       * src\lib\Makefile.am: Now checks for "zip.exe" as well
+       * src\vm\jit\i386\Makefile.am: Added Cygwin OS dir.
+       * src\vm\jit\i386\cygwin\Makefile.am: Added.
+       * src\vm\jit\i386\cygwin\md-os.c: Added. Only contains
+       dummy signal handlers.
+       * src\vm\builtin.c: Undefine Bias for Cygwin because
+       Windows uses this define.
+       * src\vm\signal.c: No signal handlers for Cygwin.
+
+2006-09-29 12:46  edwin
+
+       Merged r5573, r5574, r5577, r5578, and r5579 from trunk.
+       
+       * src/cacao/cacao.c (vm/vm.h): Added.
+       * src/cacao/Makefile.am [!ENABLE_LIBJVM] (CACAO_LIB): Link libjvm.la.
+       
+       
+       * src/vm/jit/powerpc/darwin/md-asm.h (md_codegen_get_pv_from_pc):
+       Added stub define.
+       * src/vm/jit/powerpc/asmpart.S (L_md_codegen_get_pv_from_pc$stub):
+       Added.
+       
+       
+       * src/cacaoh/cacaoh.c (cacaoh_options_prepare): Set nOptions, this was
+       deleted accidentally.
+       
+       
+       * src/vm/vm.c (vm_create): Added installation of exit handler.
+       (vm_run): New function.
+       (vm_get_mainclass_from_jar): Likewise.
+       (vm_compile_all): Likewise.
+       (vm_compile_method): Likewise.
+       * src/vm/vm.h (vm_run): New function.
+       
+       * src/vm/options.c (options_prepare): Removed.
+       * src/vm/options.h (options_prepare): Likewise.
+       
+       * src/cacao/cacao.c (getmainclassnamefromjar): Removed.
+       (main): Moved most stuff to vm-functions and load libjvm with dlopen
+       and resolve symbols for ENABLE_LIBJVM.
+       (cacao_options_prepare): New function.
+       
+       * src/cacao/Makefile.am (CACAO_LIBS): New variable.
+       (cacao_LDADD): Use CACAO_LIBS.
+       
+       * src/native/native.c (native_init): Set mainhandle to libjvm for
+       ENABLE_LIBJVM.
+       
+       * src/cacaoh/cacaoh.c (cacaoh_prepare_options): New function.
+       
+       
+       * src/native/jni.c (JNI_CreateJavaVM): Renamed jvm to vm.
+
+2006-09-28 22:33  edwin
+
+       * src/vm/jit/powerpc64: Merged changes from r5403 to r5548 from trunk.
+
+2006-09-28 20:56  edwin
+
+       * src/vm/jit/i386/cygwin: Copied directory from trunk.
+
+2006-09-28 20:38  edwin
+
+       Merged r5547 from trunk:
+       
+       * src/native/jni.c (FindClass): Removed architecture #ifdef's.
+
+2006-09-28 20:33  edwin
+
+       Merged r5543 from trunk:
+       
+       * src/vm/jit/sparc64/codegen.c: Completed port to new instruction
+       format.
+       * src/vm/jit/sparc64/md-abi.h: Likewise.
+       * src/vm/jit/sparc64/emit.c: Likewise.
+
+2006-09-28 20:31  edwin
+
+       Merged r5541 from trunk:
+       
+       * src/vm/jit/powerpc/emit.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+       (emit_load_s1, emit_load_s2, emit_load_s3, emit_load_s1_low)
+       (emit_load_s2_low, emit_load_s3_low, emit_load_s1_high)
+       (emit_load_s2_high, emit_load_s3_high) (emit_store_dst): Removed.
+       
+       * src/vm/jit/powerpc/codegen.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+
+2006-09-28 20:29  edwin
+
+       Merged r5540 and r5542 from trunk:
+       
+       * configure.ac: Cygwin OS dir added.
+       * src\lib\Makefile.am: Now checks for "zip.exe" as well
+       * src\vm\jit\i386\Makefile.am: Added Cygwin OS dir.
+       * src\vm\jit\i386\cygwin\Makefile.am: Added.
+       * src\vm\jit\i386\cygwin\md-os.c: Added. Only contains
+       dummy signal handlers.
+       * src\vm\builtin.c: Undefine Bias for Cygwin because
+       Windows uses this define.
+       * src\vm\signal.c: No signal handlers for Cygwin.
+       
+       * src/vm/jit/i386/cygwin/.cvsignore: New file.
+
+2006-09-28 20:23  edwin
+
+       Merged r5539 from trunk:
+       
+       * src/vm/jit/mips/emit.c (emit_exception_stubs): Don't use
+       SIZEOF_VOID_P for getting return address, this is wrong on MIPS32.
+       * src/vm/jit/mips/codegen.c (createnativestub): Likewise.
+
+2006-09-28 20:20  edwin
+
+       Merged r5538 from trunk:
+       
+       * src/native/native.c (native_insert_char): New function.
+       (native_resolve_function): Use native_insert_char function to fill
+       name buffer.
+
+2006-09-28 20:19  edwin
+
+       Merged r5537 from trunk:
+       
+       * src/vm/jit/mips/codegen.c (codegen): Make fieldinfo,
+       unresolved_field local variables, better code for ICMD_PUTFIELD.
+
+2006-09-28 20:18  edwin
+
+       Merged r5536 from trunk:
+       
+       * src/vm/jit/mips/emit.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+       (emit_load_s1, emit_load_s2, emit_load_s3, emit_store_dst): Removed.
+       
+       * src/vm/jit/mips/codegen.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+       (codegen): Some updates to field instructions.
+
+2006-09-28 20:17  edwin
+
+       Merged r5535 from trunk:
+       
+       * src/vm/jit/mips/codegen.c (codegen): Moved ICMD_IREMPOW2 and
+       ICMD_LREMPOW2.
+
+2006-09-28 20:16  edwin
+
+       Merged r5534 from trunk:
+       
+       * src/vm/jit/alpha/emit.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+       (emit_load_s1, emit_load_s2, emit_load_s3, emit_store_dst): Removed.
+       
+       * src/vm/jit/alpha/codegen.c (vm/jit/emit.h): Renamed to
+       vm/jit/emit-common.h.
+
+2006-09-28 20:13  edwin
+
+       Merged r5531 and r5532, ported to unified_variables:
+       
+       * src/vm/jit/i386/md-emit.h: Renamed to src/vm/jit/i386/emit.h.
+       
+       * src/vm/jit/i386/emit.c (vm/jit/i386/md-emit.h): Renamed to
+       vm/jit/i386/emit.h.
+       (vm/jit/emit.h): Renamed to vm/jit/emit-common.h.
+       (emit_load_s1, emit_load_s2, emit_load_s3, emit_load_s1_low)
+       (emit_load_s2_low, emit_load_s1_high, emit_load_s2_high)
+       (emit_store_dst): Removed.
+       
+       * src/vm/jit/i386/codegen.c (vm/jit/i386/md-emit.h): Renamed to
+       vm/jit/i386/emit.h.
+       (vm/jit/emit.h): Renamed to vm/jit/emit-common.h.
+
+2006-09-28 19:53  edwin
+
+       Merged r5530 from trunk:
+       
+       * src/vm/jit/emit.h: Renamed to src/vm/jit/emit-common.h.
+       * src/vm/jit/emit-common.c: New file.
+       
+       * src/vm/jit/Makefile.am (noinst_HEADERS): Removed emit.h.
+       (libjit_la_SOURCES): Added emit-common.[ch].
+       
+       * src/vm/jit/x86_64/emit.c (emit_load_s1, emit_load_s2, emit_load_s3)
+       (emit_store_dst): Removed.
+       
+       * src/vm/jit/x86_64/codegen.c: Changed include names.
+
+2006-09-28 19:46  edwin
+
+       Merged r5529 from trunk:
+       
+       * src/vm/jit/x86_64/md-emit.h: Renamed to src/vm/jit/x86_64/emit.h.
+
+2006-09-28 19:36  edwin
+
+       Merged r5527 from trunk:
+       
+       * src/native/include/.cvsignore: Added sun_misc_Unsafe.h.
+
+2006-09-28 19:33  edwin
+
+       Merged r5526 from trunk:
+       
+       * src/native/vm/sun_misc_Unsafe.c: New file:
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       sun_misc_Unsafe.c.
+       * src/native/include/Makefile.am (GEN_HEADER_FILES): Added
+       sun_misc_Unsafe.h.
+
+2006-09-28 19:31  edwin
+
+       Merged r5525 from trunk:
+       
+       * tests/regression/clinitexception.2output: Updated to GNU Classpath
+       0.92.
+       * tests/regression/extest.2output: Likewise.
+
+2006-09-28 19:30  edwin
+
+       Merged r5509 from trunk:
+       
+       * src/vm/jit/show.c (new_show_basicblock): Print predecessors only for
+       stage >= SHOW_CFG.
+       * src/vm/jit/show.h (SHOW_CFG): Defined.
+
+2006-09-28 19:24  edwin
+
+       Merged r5506 from trunk:
+       
+       * src/native/jni.c (GetDirectBufferAddress): Check if address is NULL.
+
+2006-09-28 19:22  edwin
+
+       Merged r5502 from trunk, with additional fixes:
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Moved cfg_build call after
+       stack_analyse, because of JSR elimination.
+       
+       * src/vm/jit/cfg.c (cfg_build): Updated to be run after stack_analyse.
+       
+       Fixes:
+       
+       * src/vm/jit/cfg.c (cfg_build): Skip NOPs at the end of the block.
+       Handle JSR and RET correctly. Use bptr->next in the default case
+       of falling into the following block.
+
+2006-09-28 18:45  edwin
+
+       Merged r5489 from trunk:
+       
+       * configure.ac (INTRP_CFLAGS): Moved a bit.
+       * src/vm/jit/intrp/Makefile.am (CFLAGS): Don't define.
+       (AM_CFLAGS): Define as INTRP_CFLAGS, that seems to be the correct way.
+
+2006-09-28 18:42  edwin
+
+       * src/vm/jit/sparc64/codegen.c (codegen): Replaced catchtype.cls
+       with catchtype.any to reflect that it can be a classref or a
+       classinfo. (Also see r5488.)
+
+2006-09-28 18:35  edwin
+
+       Merged r5476 from trunk:
+       
+       Merged sparc64 changes from trunk.
+
+2006-09-28 18:31  edwin
+
+       Merged r5462 from trunk:
+       
+       * src/vm/jit/parse.c (new_parse): Added a ICMD_NOP at the end of each
+       basic block, if we have reorder enabled.
+
+2006-09-28 17:02  edwin
+
+       * src/vm/jit/reg.h (registerdata): New fields regcopycount,
+       memcopycount, and memcopycountsize.
+       
+       * src/vm/jit/allocator/simplereg.c (reg_init_temp): Take jitdata
+       argument, initialize copy counts.
+       (reg_free_temp): Simplified a bit.
+       (reg_free_temp_func): Check if freeing a copy.
+       (reg_alloc_dup): New function.
+       (new_allocate_scratch_registers): Implemented DUP coalescing using a
+       copy count for each register/memory regoff.
+
+2006-09-19 09:41  edwin
+
+       * tests/regression/jasmin/runtest: Display only the basename of tests.
+       * tests/regression/jasmin/Makefile.am: Use $(srcdir) to locate the
+       runtest script.
+
+2006-09-15 20:18  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Set stackslot SAVEDVAR for
+       MULTIANEWARRAY.
+
+2006-09-15 17:19  christian
+
+       src/vm/jit/allocator/simplereg.c (reg_free_temp_func): New var
+       structures also for SUPPORT_COMBINE_INTEGER_REGISTERS.
+
+2006-09-15 17:05  christian
+
+       * src/vm/jit/ppc/emit.c (emit_load): Changed to new variable
+       structure (varinfo * instead of stackptr) and the use of Macros
+       IS_INMEMORY and VAROP.
+       (emit_store): Likewise.
+       (emit_copy): Likewise.
+       (emit_load_high): Likewise.
+       (emit_load_low): Likewise.
+       (emit_load_s1): Likewise.
+       (emit_load_s1_low): Likewise.
+       (emit_load_s1_high): Likewise.
+       (emit_load_s2): Likewise.
+       (emit_load_s2_low): Likewise.
+       (emit_load_s2_high): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_load_s3_low): Likewise.
+       (emit_load_s3_high): Likewise.
+       (emit_store_dst): Likewise.
+       
+       * src/vm/jit/ppc/codegen.c (codegen): Changed to new variable
+       structure (varinfo * instead of stackptr, adapting of Argument
+       handling, no interface copying anymore at BB Boundaries ) and the use
+       of Macros IS_INMEMORY, VAR and VAROP. ICMD_xSTORE and ICMD_xLOAD use
+       now
+       emit_copy. ICMD_DUPx and ICMD_SWAP were replaced by ICMD_MOVE and
+       ICMD_COPY. Invars are now regarded for EXH and JSR
+       Blocks. Changed ICMD_RET handling like with i386.
+       
+       * src/vm/jit/ppc/codegen.h (M_COPY): Changed to new variable
+       structure.
+       
+       * src/vm/jit/ppc/linux/md-abi.c (md_return_alloc): Changed to new
+       variable structure.
+       
+       * src/vm/jit/ppc/darwin/md-abi.c (md_return_alloc): Changed to new
+       variable structure.
+
+2006-09-15 16:55  edwin
+
+       * tests/regression/jasmin/Makefile.am: Added new test.
+       * tests/regression/jasmin/test_dup_x2_interface_slots.j: New test.
+       * tests/regression/jasmin/test_dup_x1_interface_slots.j: Changed
+       second loop to also use DUP_X1.
+
+2006-09-15 16:44  edwin
+
+       * src/vm/jit/stack.c (MOVE_TO_TEMP): New macro.
+       (new_stack_analyse): Use MOVE_TO_TEMP to save sources for all
+       DUP*, SWAP instructions where it is necessary.
+       
+       * src/vm/jit/parse.c (new_parse): Reserve additional NOPs for
+       DUP* instructions.
+
+2006-09-15 16:39  edwin
+
+       * tests/regression/jasmin/test_dup_x1_interface_slots.j: New test.
+       * tests/regression/jasmin/test_dup2_x1.j: Added dup2_x1 with
+       interface slots.
+       * tests/regression/jasmin/Makefile.am: Added new test.
+
+2006-09-15 16:31  christian
+
+       * src/vm/jit/alpha/emit.c (emit_load): Changed to new variable
+       structure (varinfo * instead of stackptr) and the use of Macro
+       IS_INMEMORY.
+       (emit_store): Likewise.
+       (emit_copy): Likewise.
+       (emit_load_s1): Likewise and reuse emit_load.
+       (emit_load_s2): Likewise and reuse emit_load.
+       (emit_load_s3): Likewise and reuse emit_load.
+       (emit_store_dst): Likewise and reuse emit_store.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Changed to new variable
+       structure (varinfo * instead of stackptr, adapting of Argument
+       handling, no interface copying anymore at BB Boundaries ) and the use
+       of Macro IS_INMEMORY. ICMD_xSTORE and ICMD_xLOAD use now
+       emit_copy. ICMD_DUPx and ICMD_SWAP were replaced by ICMD_MOVE and
+       ICMD_COPY. Invars are now regarded
+       for EXH and JSR Blocks. Changed ICMD_RET handling like with i386.
+       
+       * src/vm/jit/alpha/codegen.h (M_COPY): Changed to new variable
+       structure.
+       
+       * src/vm/jit/alpha/md-abi.c (md_return_alloc): Changed to new
+       variable structure.
+
+2006-09-15 15:52  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Add a third move at the
+       beginning of a swap operation to save the src1 operand, unless it
+       is in a temporary variable.
+       
+       * src/vm/jit/parse.c (new_parse): Reserve three ICMDs for SWAP.
+
+2006-09-15 15:44  edwin
+
+       * tests/regression/jasmin/Makefile.am: Added/renamed tests.
+
+2006-09-15 14:43  edwin
+
+       * src/vm/jit/verify/typecheck.c: Cleanup and documentation.
+
+2006-09-15 14:18  edwin
+
+       * src/vm/jit/verify/typecheck.c (typestate_reach): Removed check
+       against uninitialized object on stack/in locals during backward
+       branch. It is unnecessary, and not done by the RI. Reference:
+       Alessandro Coglio
+       Improving the official specification of Java bytecode verification
+       Proceedings of the 3rd ECOOP Workshop on Formal Techniques for
+       Java Programs
+       June 2001
+       citeseer.ist.psu.edu/article/coglio03improving.html
+       
+       (verify_basic_block): Removed check against uninitialized object in
+       locals within try block. See above.
+       
+       * tests/regression/jasmin/
+       test_verify_fail_backward_with_new_in_local.j: Renamed.
+       * tests/regression/jasmin/test_verify_fail_new_in_local_within_try.j:
+       Renamed.
+       
+       * tests/regression/jasmin/
+       test_verify_unspecced_ok_backward_with_new_on_stack.j: New test.
+       
+       * tests/regression/jasmin/
+       test_verify_fail_backward_with_new_on_stack.j: Fixed.
+
+2006-09-15 13:08  edwin
+
+       * tests/regression/jasmin/runtest: Use [ \t] instead of \s in the
+       regex for sed, as this seems to be more portable.
+
+2006-09-15 13:03  edwin
+
+       * src/vm/jit/verify/typecheck.c (typecheck_reset_flags): Mark
+       unreached
+       blocks as BBDELETED. The only case in which this can happen to a block
+       that was considered reachable by the stack analysis, is in the case of
+       an exception handler which only covers blocks that have no PEIs.
+
+2006-09-15 12:51  edwin
+
+       * src/vm/resolve.c (new_resolve_field_lazy): Check jd->flags instead
+       of opt_verify.
+       (new_resolve_method_lazy): Likewise.
+
+2006-09-15 12:48  christian
+
+       * src/vm/jit/stack.c (new_stack_analyse): Stackslot flags have to be
+       set for SAVEDVARs, too.
+
+2006-09-15 11:02  edwin
+
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Fix check for
+       active exception handlers. We may not compare pointers here, as the
+       blocks are not allocated with rising memory addresses. Use the
+       block numbers to compare ranges.
+
+2006-09-15 09:19  christian
+
+       * src/vm/jit/x86_64/emit.c (emit_load): Changed to new variable
+       structure (varinfo * instead of stackptr) and the use of Macro
+       IS_INMEMORY.
+       (emit_store): Likewise.
+       (emit_copy): Likewise.
+       (emit_ishift): Likewise.
+       (emit_lshift): Likewise.
+       (emit_load_s1): Likewise and reuse emit_load.
+       (emit_load_s2): Likewise and reuse emit_load.
+       (emit_load_s3): Likewise and reuse emit_load.
+       (emit_store_dst): Likewise and reuse emit_store.
+       
+       * src/vm/jit/x86_64/md-emit.h: Adapded prototypes.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Changed to new variable
+       structure (varinfo * instead of stackptr, adapting of Argument
+       handling, no interface copying anymore at BB Boundaries ) and the use
+       of Macro IS_INMEMORY. ICMD_xSTORE and ICMD_xLOAD use now
+       emit_copy. Invars are now regarded for EXH and JSR Blocks.
+       
+       * src/vm/jit/x86_64/codegen.h (M_COPY): Changed to new variable
+       structure.
+       
+       * src/vm/jit/x86_64/md-abi.c (md_return_alloc): Changed to new
+       variable structure.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Only try to preallocate
+       return stackslots, if they hold a TEMPVAR. Some preparation for SSA.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Had to disable
+       replace_create_replacement_points(jd).
+       
+       * src/vm/jit/show.c (new_show_icmd): Show s1 of [FIDL]RETURN like for
+       ARETURN.
+
+2006-09-14 22:51  edwin
+
+       * configure.ac: Generate tests/regression/jasmin/Makefile.
+       
+       * tests/regression/Makefile.am: Added subdir jasmin.
+       
+       * tests/regression/jasmin/Makefile.am: New file.
+       
+       * tests/regression/jasmin/runtest: Check if jasmin .jar is available.
+
+2006-09-14 22:49  edwin
+
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Change
+       destination variable of GETFIELD/GETSTATIC after all checks have been
+       performed, so there is no problem if destination == source.
+
+2006-09-14 21:29  edwin
+
+       * tests/regression/jasmin/test_verify_fail_retaddr_as_object.j:
+       New test.
+
+2006-09-14 21:23  edwin
+
+       *
+       tests/regression/jasmin/test_verify_fail_backward_with_new_in_local.j:
+       New test.
+       * tests/regression/jasmin/test_verify_fail_new_in_local_within_try.j:
+       Likewise.
+       * tests/regression/jasmin/test_verify_fail_double_local_index.j:
+       Likewise.
+       *
+       tests/regression/jasmin/test_verify_fail_backward_with_new_on_stack.j:
+       Likewise.
+
+2006-09-14 20:55  edwin
+
+       * tests/regression/jasmin/test_verify_fail_long_local.j:
+       Added comment.
+       * tests/regression/jasmin/test_verify_fail_double_overwritten.j:
+       New test.
+       * tests/regression/jasmin/test_verify_fail_invoke_basic_type.j:
+       New test.
+       * tests/regression/jasmin/test_verify_fail_long_overwritten.j:
+       New test.
+
+2006-09-14 20:36  edwin
+
+       * src/vm/jit/verify/typecheck.c (typecheck_invalidate_locals):
+       New function.
+       (verify_basic_block): Invalidate locals that share space with the
+       stored local.
+       (typecheck): Build reverse map of locals.
+
+2006-09-14 18:56  edwin
+
+       * src/vm/jit/reg.h (varinfo): Added typeinfo member.
+       
+       * src/vm/jit/verify/typecheck.c: Ported to unified_variables.
+       * src/vm/jit/verify/typeinfo.h: Likewise.
+       * src/vm/jit/verify/typeinfo.c: Likewise.
+
+2006-09-14 18:55  edwin
+
+       * src/vm/resolve.c (resolve_class_from_name): RESOLVE_VERBOSE changes.
+       (resolve_classref_or_classinfo): Likewise.
+       (resolve_class_from_typedesc): Likewise.
+       (resolve_and_check_subtype_set): Likewise.
+       (new_create_unresolved_field): Likewise.
+       (new_create_unresolved_method): Likewise.
+       
+       (new_resolve_field_verifier_checks): Ported to unified_variables.
+       (new_resolve_field_lazy): Likewise.
+       (new_resolve_method_verifier_checks): Likewise.
+       (new_resolve_method_lazy): Likewise.
+       (new_constrain_unresolved_field): Likewise.
+       
+       
+       (unresolved_subtype_set_from_typeinfo): Take classname directly,
+       instead of the constant_classref *.
+       
+       (create_unresolved_class): Pass classname to
+       unresolved_subtype_set_from_typeinfo.
+       
+       (new_constrain_unresolved_method): Ported to unified_variables.
+       Pass classname to unresolved_subtype_set_from_typeinfo. (This should
+       fix a bug when fieldref->p.classref was invalid.)
+       
+       (new_constrain_unresolved_method): Ported to unified_variables.
+       Pass classname to unresolved_subtype_set_from_typeinfo.
+       
+       * src/vm/resolve.h (jit/reg.h): Include this before typeinfo.h
+       (new_resolve_method_lazy): Added jd parameter.
+       (new_resolve_field_lazy): Likewise.
+       (new_constrain_unresolved_field): Likewise.
+       (new_constrain_unresolved_method): Likewise.
+       
+       * src/vm/jit/parse.c (new_parse): Pass jd to resolve functions.
+
+2006-09-14 18:45  edwin
+
+       * src/vm/jit/show.c (new_show_method): Only show allocation of locals
+       if stage is at least SHOW_REGS.
+       (new_show_icmd): Show class for CHECKCAST.
+
+2006-09-14 18:44  edwin
+
+       * src/vm/jit/stack.c (stack_create_invars): Add extra locals needed
+       by the verifier.
+       (stack_create_invars_from_outvars): Likewise.
+       (new_stack_analyse): Create inlocals for first block. Allow ASTORE of
+       returnAddress values.
+
+2006-09-14 18:40  edwin
+
+       * src/vm/jit/parse.c (new_parse): Commented calculation of varcount
+       and added added extra variables that will be needed by the verifier.
+
+2006-09-14 18:36  edwin
+
+       * src/vm/global.h (VERIFIER_EXTRA_LOCALS): New constant.
+       (VERIFIER_EXTRA_VARS): Likewise.
+
+2006-09-14 18:20  edwin
+
+       * src/vm/class.c (class_classref_or_classinfo_print): New function.
+       (class_classref_or_classinfo_println): Likewise.
+       
+       * src/vm/class.h (class_classref_or_classinfo_print): New function.
+       (class_classref_or_classinfo_println): Likewise.
+
+2006-09-14 18:16  edwin
+
+       * src/vm/jit/jit.h (VAROP): New macro for accessing variable operands.
+       (VAR): New macro for getting a variable from a varindex.
+
+2006-09-14 16:46  edwin
+
+       * tests/regression/jasmin/test_verify_fail_load_wrong_type.j:
+       New test.
+       * tests/regression/jasmin/
+       test_verify_fail_load_wrong_type_within_block.j: New test.
+       * tests/regression/jasmin/test_verify_fail_local_index.j: New test.
+       * tests/regression/jasmin/test_verify_fail_long_local_index.j:
+       New test.
+       * tests/regression/jasmin/test_verify_fail_long_local.j: New test.
+       * tests/regression/jasmin/test_verify_fail_split_local.j: New test.
+       * tests/regression/jasmin/test_verify_ok_overwrite_local_type.j:
+       New test.
+       * tests/regression/jasmin/test_verify_ok_untyped_local.j: New test.
+
+2006-09-13 00:21  edwin
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Replaced catchtype.cls with
+       catchtype.any to reflect that it can be a classref or a classinfo.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/intrp/codegen.c (codegen): Likewise.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Added XXX
+       comment warning that classrefs must be resolved here.
+
+2006-09-13 00:03  edwin
+
+       * src/vm/jit/i386/codegen.c (codegen): Use emit_copy for LOAD/STORE
+       instructions. We should also combine this with ICMD_COPY/MOVE, but
+       I was not sure how to deal with the M_COPY macro.
+
+2006-09-12 23:35  edwin
 
-2005-11-08 18:21  twisti
+       * tests/regression/jasmin/test_swap_locals.j: New test.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         * exceptions_new_nosuchmethoderror: Added.
+2006-09-12 23:31  edwin
 
-2005-11-08 18:21  twisti
+       * tests/regression/jasmin/test_swap_interface_slots.j: New test.
 
-       * src/vm/: class.c, class.h:
-         * class_java_lang_NoSuchMethodError: Added.
-         * class_resolveclassmethod, class_resolveinterfacemethod: Use
-           exceptions_new_nosuchmethoderror.
+2006-09-12 23:18  edwin
 
-2005-11-08 18:19  twisti
+       * tests/regression/jasmin/test_many_monitors.j: New test. (This test
+       case used to fail with old-instruction-format cacao.)
 
-       * src/vm/: utf8.c, utf8.h:
-         * utf_java_lang_NoSuchMethodError: Added.
+2006-09-12 22:32  christian
 
-2005-11-08 18:00  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Corrected handling of taking
+       arguments out of stack frame. Some changes to adapt SSA to unified
+       variables.
 
-       * src/vm/global.h:
-         * CLASS_VERSION: Defined to "49.0".
+2006-09-12 21:34  edwin
 
-2005-11-08 17:59  twisti
+       * src/vm/jit/parse.c (parse_check_instructions): Renamed to
+       parse_realloc_instructions to reflect what it really does. Fixed so
+       it adds at least as many instructions as required by the check.
+       
+       * src/vm/jit/parse.h (INSTRUCTIONS_CHECK): Use
+       parse_realloc_instructions.
+       (MARK_BASICBLOCK): Cleaned up backslashes.
 
-       * src/native/vm/VMSystemProperties.c:
-         * preInit: Set java.class.version to CLASS_VERSION.
+2006-09-12 21:23  edwin
 
-2005-11-08 11:58  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Fixed test for existing
+       coalescing for *STORE.
+       Properly use the return value of stack_mark_reached when analysing
+       a block for the first time.
+       
+       * tests/regression/jasmin/test_simple_load_store.j: Added a test
+       that just does ILOAD 1, ISTORE 1.
 
-       * src/vm/jit/alpha/codegen.c:
-         * Java 1.5 support changes.
+2006-09-12 00:21  edwin
 
-2005-11-08 11:58  twisti
+       * tests/regression/jasmin/test_verify_ok_jsr_handler_in_sub.j:
+       Renamed to test_verify_fail_jsr_handler_in_sub.j, as it fails on the
+       reference implementation.
+       
+       * tests/regression/jasmin/test_verify_ok_jsr_exceptions.j: Renamed to
+       test_verify_fail_jsr_exceptions.j, likewise.
+       
+       * tests/regression/jasmin/test_verify_fail_ret_uninit_var.j,
+       tests/regression/jasmin/test_verify_fail_aload_retaddress.j,
+       tests/regression/jasmin/test_verify_fail_ret_bad_type.j: Made
+       expected error match both CACAO's message and the reference
+       implementation's message.
 
-       * src/vm/jit/alpha/patcher.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 changes.
-         * patcher_aconst: Added.
+2006-09-11 23:32  edwin
 
-2005-11-08 09:58  twisti
+       * src/vm/jit/stack.c (stack_reanalyse_block): Removed unused
+       variable.
 
-       * tests/regression/LoadDisplacementOverflow.java:
-         * Changed float to print.
+2006-09-11 23:24  edwin
 
-2005-11-08 09:57  twisti
+       * src/vm/jit/stack.c: Added JSR elimination by block specialization.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Treat ICMD_RET as a GOTO.
 
-       * tests/regression/Makefile.am:
-         * LoadDisplacementOverflow, FieldDisplacementOverflow: Added.
+2006-09-11 23:17  edwin
 
-2005-11-08 09:56  twisti
+       * tests/regression/jasmin/runtest: Add --color option.
 
-       * tests/regression/: FieldDisplacementOverflow.output,
-         LoadDisplacementOverflow.output:
-         * Initial commit.
+2006-09-11 22:17  edwin
 
-2005-11-08 02:40  edwin
+       * tests/regression/jasmin/test_verify_ok_jsr_handler_in_sub2.j: Added
+       a second call of the subroutine, so cacao has to clone the exception
+       handler.
 
-       * src/vm/jit/verify/typecheck.c: typecheck.c: rewrote some macros
-         as functions
+2006-09-11 14:59  edwin
 
-2005-11-08 00:22  edwin
+       * tests/regression/jasmin/test_verify_ok_jsr_handler_in_sub.j:
+       New test.
+       * tests/regression/jasmin/test_verify_ok_jsr_exceptions.j: Likewise.
+       * tests/regression/jasmin/test_verify_ok_jsr_through_variable.j:
+       Likewise.
+       * tests/regression/jasmin/test_verify_ok_jsr_handler_in_sub2.j:
+       Likewise.
+       * tests/regression/jasmin/test_verify_ok_jsr_swap.j: Likewise.
 
-       * src/vm/: resolve.c, jit/verify/typecheck.c,
-         jit/verify/typeinfo.c, jit/verify/typeinfo.h: adapt verifier to
-         java 1.5 changes (ACONSTs are now used differently when passing
-         class references to builtin functions, LDC may create
-         java.lang.Class objects).
+2006-09-11 14:57  edwin
 
-2005-11-07 23:31  twisti
+       * tests/regression/jasmin/test_dup2.j: Fix stackdepth.
+       * tests/regression/jasmin/test_load_store_conflict.j: Likewise.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * Java 1.5 support changes.
+2006-09-11 14:55  edwin
 
-2005-11-07 23:31  twisti
+       * tests/regression/jasmin/runtest: Only show PASS if status is ok.
 
-       * src/vm/jit/powerpc/patcher.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 support
-           changes.
-         * patcher_aconst: Added.
+2006-09-11 14:54  edwin
 
-2005-11-07 22:26  twisti
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Zero destination of ICMD_JSR to avoid problems when showing the IR.
 
-       * src/vm/jit/intrp/Makefile.am:
-         * INCLUDES: Added OS_DIR.
+2006-09-11 14:52  edwin
 
-2005-11-07 22:12  twisti
+       * src/vm/jit/show.h (show_jit_type_letters): New variable.
+       (show_jit_type_names): Likewise.
+       
+       * src/vm/jit/show.c (jit_type): Renamed to show_jit_type_names and
+       exported.
+       (show_jit_type_letters): New variable.
+       (new_show_method): Improved.
+       (new_show_icmd): Likewise.
 
-       * src/vm/jit/i386/codegen.c:
-         * Java 1.5 support changes.
+2006-09-11 14:45  edwin
 
-2005-11-07 22:12  twisti
+       * src/toolbox/logging.h (log_text): Fixed for strings containing %.
 
-       * src/vm/jit/i386/patcher.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 support
-           changes.
-         * patcher_aconst: Added.
+2006-09-11 14:37  edwin
 
-2005-11-07 19:49  twisti
+       * src/vm/jit/reg.h (varinfo): Put regoff inside a union (vv) so it
+       can share space with the constant values put in varinfo. Also made
+       type and flags s4.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Replace regoff with
+       vv.regoff.
+       
+       * src/vm/jit/show.c (new_show_method): Likewise.
+       (new_show_variable): Likewise.
+       
+       * src/vm/jit/allocator/simplereg.c (local_regalloc): Likewise.
+       (reg_new_temp_func): Likewise.
+       (reg_free_temp_func): Likewise.
+       (new_allocate_scratch_registers): Likewise.
+       (reg_make_statistics): Likewise.
+       
+       * src/vm/jit/i386/emit.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/codegen-common.c: Likewise.
 
-       * src/vm/builtintable.inc:
-         * PATCHER_builtin_new, PATCHER_builtin_newarray,
-           PATCHER_builtin_arrayinstanceof: Removed due to Java 1.5 support
-           changes.
+2006-09-11 00:33  edwin
 
-2005-11-07 19:48  twisti
+       * src/vm/global.h (TYPE_RET): New constant.
+       
+       * src/vm/exceptions.c (exceptions_throw_verifyerror_for_stack):
+       Display TYPE_RET correctly.
 
-       * src/vm/jit/x86_64/codegen.c:
-         * Java 1.5 support changes.
-         * Fix line number problem in exception stubs: we can't reuse an
-           exception stub since we get always the last exception pc.
+2006-09-11 00:30  edwin
 
-2005-11-07 19:45  twisti
+       * src/vm/jit/jit.h (basicblock): Added fields `inlocals` and
+       `original` (for JSR elimination).
 
-       * src/vm/jit/x86_64/codegen.h:
-         * M_LSUB, M_LSUB_IMM32, M_AND, M_IAND, M_IAND_IMM, M_IXOR, M_BLE,
-           M_BA: Added.
+2006-09-11 00:03  edwin
 
-2005-11-07 19:44  twisti
+       * tests/regression/jasmin/test_verify_fail_aload_retaddress.j: New
+       test.
+       * tests/regression/jasmin/test_verify_fail_ret_uninit_var.j: New
+       test.
+       * tests/regression/jasmin/test_verify_ok_jsr_pop.j: New test.
+       * tests/regression/jasmin/test_verify_ok_jsr_push.j: New test.
 
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 changes.
-         * patcher_aconst: Added.
+2006-09-10 13:51  edwin
 
-2005-11-07 19:43  twisti
+       * tests/regression/jasmin/runtest: Return correct exit code.
 
-       * src/vm/jit/stack.c:
-         * Java 1.5 support changes.
+2006-09-10 13:45  edwin
 
-2005-11-07 19:40  twisti
+       * tests/regression/jasmin/runtest: Delete temporary files.
+       * tests/regression/jasmin/test_verify_ok_jsr.j: New test.
+       * tests/regression/jasmin/test_verify_ok_jsr_multiple_blocks.j: New
+       test.
+       * tests/regression/jasmin/test_verify_fail_ret_bad_type.j: New test.
 
-       * src/vm/jit/patcher.h:
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Removed due to Java 1.5 changes.
-         * patcher_aconst: Added.
+2006-09-10 13:43  edwin
 
-2005-11-07 19:38  twisti
+       * tests/regression/jasmin/runtest: Added harness code for expecting
+       errors.
 
-       * src/vm/jit/: jit.c, jit.h, loop/tracing.c, verify/typecheck.c,
-         reg.inc:
-         * ICMD_ARRAYCHECKCAST: Removed due to Java 1.5 changes.
+2006-09-10 11:35  christian
 
-2005-11-07 19:32  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Corrected handling of taking
+       arguments out of stack frame.
 
-       * src/vm/jit/stack.h:
-         * OP*: Macros reformatted.
+2006-09-10 11:20  edwin
 
-2005-11-07 19:22  twisti
+       * src/vm/jit/stack.c (DUP_SLOT): Removed code for direct coalescing.
+       (DUP coalescing will be done in simplereg, probably.)
 
-       * src/vm/jit/parse.c:
-         * Java 1.5 support changes.
+2006-09-10 09:11  edwin
 
-2005-11-07 19:20  twisti
+       * src/vm/jit/show.c (new_show_method): Use class_print and
+       class_classref_print for showing the catch type.
 
-       * src/vm/jit/parse.h:
-         * LOADCONST_A_CLASS: Added.
-         * LOADCONST_A_BUILTIN: Also set iptr->target.
+2006-09-09 22:33  edwin
 
-2005-11-07 18:57  twisti
+       * src/vm/jit/stack.c: Fixed macro backslashes.
 
-       * src/vm/: builtin.c, builtin.h:
-         * builtin_canstore: Some reformatting.
+2006-09-09 22:05  edwin
 
-2005-11-07 18:47  twisti
+       * src/vm/jit/show.c (new_show_method): Show hexadecimal offsets in
+       stack slot table.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         * exceptions_throw_outofmemory_exit: Added.
-         * new_verifyerror: Handle m == NULL case.
+2006-09-09 21:58  edwin
 
-2005-11-07 18:47  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Reset the sd.new pointer at
+       the beginning of each basic block.
 
-       * src/cacaoh/headers.c:
-         * exceptions_throw_outofmemory_exit: Added.
+2006-09-09 21:50  edwin
 
-2005-11-07 18:44  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Made control-flow easier
+       to read. The majority of the code is now indented one level too much.
+       I did not change this, yet, to avoid a giant diff. We can do this
+       when all the branches are merged together.
 
-       * src/mm/memory.c:
-         * memory_checked_alloc, mem_realloc: Use
-           exceptions_throw_outofmemory_exit instead of
-         throw_cacao_exception_exit.
+2006-09-09 21:41  edwin
 
-2005-11-07 18:44  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Combined calls to
+       stack_create_instack.
 
-       * src/mm/boehm.c:
-         * gc_out_of_memory: Use exceptions_throw_outofmemory_exit instead of
-           throw_cacao_exception_exit.
+2006-09-09 21:33  edwin
 
-2005-11-07 18:37  twisti
+       * src/vm/jit/jit.h (basicblock): Removed members instack and
+       outstack.
+       
+       * src/vm/jit/stack.c (stack_check_invars): New function.
+       (stack_create_instack): New function.
+       (stack_mark_reached): Use new functions.
+       (new_stack_analyse): Likewise.
+       
+       * src/vm/jit/stack.h (COPYCURSTACK): Removed macro.
 
-       * src/vm/global.h:
-         * MAJOR_VERSION: Updated to 49.
+2006-09-09 20:05  edwin
 
-2005-11-07 17:38  christian
+       * src/vm/jit/stack.h (COPYCURSTACK): Do not create invars here.
+       
+       * src/vm/jit/stack.c (stack_create_invars): New function.
+       (stack_mark_reached): Use stack_create_invars.
+       (new_stack_analyse): Likewise.
 
-       * src/vm/jit/x86_64/md-abi.c: Comment added why integer return
-         register is not precoloured
+2006-09-09 19:37  edwin
 
-2005-11-07 17:26  twisti
+       * src/vm/jit/jit.h (basicblock): Added fields varstart and varcount.
+       Reordered fields for clarity and alignment.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Set varstart and varcount
+       of each basic block.
 
-       * configure.in:
-         * DISABLE_GC: Defined.
+2006-09-09 19:25  edwin
 
-2005-11-07 17:15  twisti
+       * src/vm/exceptions.c (exceptions_handle_exception): Added comment on
+       why we have to do eager resolving here. Check for exceptions while
+       resolving the catch class reference.
+       
+       * src/vm/linker.c (link_class_intern): Resolve exception classes
+       in handler entries lazily, instead of eagerly.
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_call_jit_compiler: Argument save/restore offsets fixed for
-         darwin.
+2006-09-09 14:49  edwin
 
-2005-11-07 12:59  twisti
+       * src/vm/jit/stack.h (CURKIND): Removed macro.
+       (CURTYPE): Removed macro.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Removed the single use of
+       CURKIND.
 
-       * src/native/vm/Field.c:
-         * get: Warning fix.
+2006-09-09 14:45  edwin
 
-2005-11-07 12:53  twisti
+       * src/vm/jit/stack.h (Changes): Added my name.
 
-       * src/vm/jit/: i386/Makefile.am, powerpc/Makefile.am:
-         * DIST_SUBDIRS, SUBDIRS: Moved to top.
+2006-09-09 14:41  edwin
 
-2005-11-07 12:52  twisti
+       * src/vm/jit/stack.h (REQUIRE_1, REQUIRE_2, REQUIRE_3, REQUIRE_4):
+       Removed.
+       * src/vm/jit/stack.c (new_stack_analyse): Use the general REQUIRE
+       macro.
 
-       * src/vm/jit/mips/Makefile.am:
-         * DIST_SUBDIRS: Added.
+2006-09-08 23:59  edwin
 
-2005-11-06 22:51  twisti
+       * src/vm/jit/stack.c (IS_TEMPVAR): Fix bug spotted
+       (and produced ;) by c_u.
 
-       * src/vm/jit/alpha/codegen.c:
-         * Fix line number problem in exception stubs: we can't reuse an
-           exception stub since we get always the last exception pc.
-         * Changed MCODECHECK size in stubs to 100, just to be sure.
+2006-09-08 20:54  edwin
 
-2005-11-06 22:24  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Added some assertion.
+       When we do a STORE coalescing, the stackslot must have a creator.
 
-       * src/vm/jit/i386/codegen.c:
-         * Fix line number problem in exception stubs: we can't reuse an
-           exception stub since we get always the last exception pc.
-         * Changed MCODECHECK size in stubs to 512, just to be sure.
+2006-09-08 20:50  edwin
 
-2005-11-06 21:28  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Unified last_dup_boundary
+       and last_pei_boundary to coalescing_boundary.
+       Activated STORE coalescing. Change destination operand of creator, if
+       any.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * Fix line number problem in exception stubs: we can't reuse an
-           exception stub since we get always the last exception pc.
-         * Changed MCODECHECK size in stubs to 100, just to be sure.
+2006-09-08 20:41  edwin
 
-2005-11-06 21:20  twisti
+       * src/vm/jit/stack.h (COPYCURSTACK): Use GET_NEW_VAR.
+       Removed SET_OUTVAR.
+       * src/vm/jit/stack.c (GET_NEW_VAR): New macro.
+       (various macros): Use GET_NEW_VAR, so the variable type is set.
+       Reset coalescing for non-consuming uses.
+       (SET_TEMPVAR): Fix: do not use "copy". Change the destination operand
+       of the creator, if any.
+       (DST_LOCAL): Activate LOAD coalescing.
+       (new_stack_analyse): Reset coalescing for pass-through operands.
 
-       * configure.in:
-         * darwin: Fixed small typo.
+2006-09-08 19:48  edwin
 
-2005-11-06 17:41  motse
+       * src/vm/jit/jit.h (stackelement): Added creator field.
+       * src/vm/jit/stack.h (COPYCURSTACK): Set creator = NULL.
+       * src/vm/jit/stack.c (DST, DST_LOCALVAR, MOVE_COPY_UP, COPY_DOWN):
+       Set creator to current iptr.
+       * src/vm/jit/stack.h: Cleaned up macros.
+       * src/vm/jit/stack.c: Likewise.
 
-       * src/native/vm/VMFrame.c: forgot to include a few header files
+2006-09-08 18:14  edwin
 
-2005-11-06 17:32  twisti
+       * src/vm/jit/codegen-common.h: Removed the NEW_VAR define.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/reg.c: Likewise.
+       * src/vm/jit/reg.h: Likewise.
+       * src/vm/jit/jit.c: Likewise.
+       * src/vm/jit/codegen-common.c: Likewise.
+       * src/vm/jit/jit.h: Likewise, and removed the dupslots member from
+       the dst_operand_t union.
 
-       * src/native/include/Makefile.am:
-         * GEN_JVMTI_HEADER_FILES: Added, fixed small type, add to
-           DO_HEADER_FILES only if ENABLE_JVMTI.
+2006-09-08 18:12  edwin
 
-2005-11-06 17:27  twisti
+       * src/vm/jit/show.c (new_show_icmd): Removed code for DUPs.
 
-       * src/native/vm/Makefile.am:
-         * VMFrame.c, VMVirtualMachine.c: Added, compile only with
-         ENABLE_JVMTI.
+2006-09-08 17:59  edwin
 
-2005-11-06 17:21  motse
+       * src/vm/jit/verify/typecheck.c: Removed code for DUPs.
 
-       * src/native/include/Makefile.am: add check for ENABLE_JVMTI
+2006-09-08 17:57  edwin
 
-2005-11-06 17:16  motse
+       * src/vm/jit/i386/codegen.c (codegen): Removed code for DUPs.
 
-       * src/native/vm/: VMFrame.c, VMVirtualMachine.c, VMjvmti.c: split
-         VMjvmti.c in VMVirtualMachine.c and VMFrame.c
+2006-09-08 17:50  edwin
 
-2005-11-06 17:05  motse
+       * src/vm/jit/i386/codegen.c (*LOAD, *STORE): Normalized the source ==
+       dest check so it always looks the same.
+       (LLOAD, LSTORE): Use M_LNGMOVE, not M_INTMOVE.
+       (DSTORE): Combined with FSTORE, because it now has the same code.
 
-       * src/native/include/.cvsignore: ignore for jvmti header files
-         added
+2006-09-08 17:37  edwin
 
-2005-11-06 15:47  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Fix LSTORE: The source == dest
+       test was broken.
 
-       * src/vm/jit/x86_64/emitfuncs.c:
-         * x86_64_emit_ishift, x86_64_emit_lshift: Bugfix where s1 maybe
-           equal to RCX.
+2006-09-08 16:41  edwin
 
-2005-11-06 15:46  twisti
+       * src/vm/jit/show.c (new_show_method): Fix display of local table.
 
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_wrapper_patcher: We now use %rbp to address the patcher stub
-           variables and align %rsp to 16-bytes.  This is necessary for leaf
-           methods and the infamous printf-movaps bug.
+2006-09-08 16:26  edwin
 
-2005-11-06 15:44  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Fix ICMD_RET: The variable
+       index has to be mapped.
 
-       * src/vm/jit/x86_64/md-asm.h:
-         * bp: Defined.
+2006-09-08 16:07  edwin
 
-2005-11-06 15:01  motse
+       * src/vm/jit/stack.c (DUP_SLOT): Turn off coalescing.
+       (MOVE_COPY_UP): New macro.
+       (COPY_DOWN): New macro.
+       (interface_map): Changed to array of interface_info.
+       (*STORE): Fix index into last_store_boundary (must be javaindex).
+       (DUP*, SWAP): Eliminate DUPs.
+       (new_stack_analyse): Mark invar interfaces used.
+       
+       * src/vm/jit/show.c (new_show_method): Adapted to new
+       interface_map layout.
+       
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Adapted
+       to new interface_map layout.
+       (new_allocate_scratch_registers): Likewise.
+       (new_allocate_scratch_registers): Removed code for DUP* instructions.
+       (ICMD_MOVE, ICMD_COPY): Added.
 
-       * src/native/: include/Makefile.am, jvmti/Makefile.am,
-         jvmti/VMjdwp.c, jvmti/dbg.h, jvmti/jvmti.c, vm/Makefile.am,
-         vm/VMjvmti.c: VMjdwp/VMjvmti new makefile entries
+2006-09-08 16:02  edwin
 
-2005-11-06 00:42  twisti
+       * src/vm/jit/i386/codegen.h (M_FLTMOVE): Only assert(0) if move would
+       have to be performed.
 
-       * src/vm/jit/codegen.inc:
-         * codegen_findmethod: Use structure in local stackframe instead of
-           allocating each time on the heap.
+2006-09-08 14:17  edwin
 
-2005-11-05 23:32  twisti
+       * src/vm/jit/show.c (show_variable): Check for invalid flags.
 
-       * src/cacao/cacao.c:
-         * main: Call nogc_init at the very beginning for DISABLE_GC.
+2006-09-08 14:16  edwin
 
-2005-11-05 23:32  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Removed a debug print.
 
-       * src/mm/boehm.h:
-         * nogc_init, nogc_realloc: Added for DISABLE_GC.
+2006-09-08 14:15  edwin
 
-2005-11-05 23:31  twisti
+       * src/vm/jit/stack.c (DST_LOCALVAR): _Really_ turn off coalescing
+       temporarily.
 
-       * src/mm/nogc.c:
-         * nogc_realloc, heap_free, nogc_init: Added.
+2006-09-08 12:19  edwin
 
-2005-11-05 23:30  twisti
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Changed
+       allocation of interface registers. interface_map now contains the
+       necessary flags, and receives a combination of allocated flags
+       and regoff.
+       
+       (new_allocate_scratch_registers): Copy the allocation of the
+       invars and outvars for each basic block.
 
-       * src/mm/memory.h:
-         * Define some macros differently for DISABLE_GC, allocate always
-           from the heap.
+2006-09-08 12:17  edwin
 
-2005-11-05 20:51  twisti
+       * src/vm/jit/jit.h (LOCAL_UNUSED): Changed (in comment) to UNUSED.
 
-       * src/vm/builtin.c:
-         * builtin_new: Check for java.lang.InstantiationError.
+2006-09-08 12:16  edwin
 
-2005-11-05 20:44  twisti
+       * src/vm/jit/stack.c (stackdata_t): New struct for keeping internal
+       data of the stack analysis. This is necessary for converting macros
+       to functions.
+       (various macros): Adapted to use stackdata_t. Removed old code.
+       (DST_LOCALVAR): Temporarily turned off local variable coalescing.
+       (MARKREACHED): Converted to a function.
+       (stack_mark_reached): New function.
+       (last_store_boundary): Use java indices instead of internal local
+       indices into this table.
+       (new_stack_analyse): Removed old code.
+       
+       * src/vm/jit/stack.h (various macros): Adapted to use stackdata_t.
+       (MARKREACHED): Converted to a function.
 
-       * src/vm/: string.c, stringlocal.h:
-         * string_java_lang_InstantiationError: Added.
+2006-09-08 12:10  edwin
 
-2005-11-05 18:57  twisti
+       * src/vm/jit/parse.h: Removed old code.
+       * src/vm/jit/parse.c (new_parse): Do not modify m->maxlocals and
+       cd->maxlocals.
+       They refer to the number of javalocals, and that's ok. We have
+       jd->localcount
+       to keep the number of internal locals.
 
-       * src/vm/jit/stack.c:
-         * show_icmd: Fixed ICMD_ARRAYCHECKCAST output.
+2006-09-08 12:07  edwin
 
-2005-11-05 17:33  twisti
+       * src/vm/jit/show.c (new_show_method): Show isleafmethod.
+       (new_show_method): Pretty interface map printing (prepared for
+       interface register allocation changes).
+       (new_show_method): Print allocation of stack slots.
+       (show_allocation): New function.
+       (show_variable): Mark SAVEDVARs with an exclamation mark.
 
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_call_jit_compiler: Renamed _exceptionptr to
-         _no_threads_exceptionptr.
-         * asm_wrapper_patcher: Added athrow/areturn support, the wrapper can
-           now handle leaf methods.
+2006-09-08 01:05  edwin
 
-2005-11-05 17:31  twisti
+       * src/vm/jit/show.c (new_show_method): Only show local table if there
+       are locals.
 
-       * src/vm/jit/powerpc/codegen.c:
-         * createnativestub: Renamed _exceptionptr to
-         _no_threads_exceptionptr.
+2006-09-07 23:17  edwin
 
-2005-11-05 17:30  twisti
+       * src/vm/jit/show.c (jit_type): Made types uppercase.
+       (new_show_method): Prettier printing of locals_map and interface_map.
+       (SHOW_STACKVAR): Renamed to SHOW_VARIABLE.
+       (new_show_stackvar): Renamed to show_variable. Cleaned up.
 
-       * src/vm/jit/verify/typecheck.c:
-         * JAVA_GET/PUT*: Removed __POWERPC__ define, since we can now handle
-           lazy loading in leafs.
+2006-09-07 22:44  edwin
 
-2005-11-05 17:29  twisti
+       * src/vm/jit/allocator/simplereg.c (reg_new_temp_func): Removed old
+       version.
+       (reg_free_temp_func): Likewise.
+       (allocate_scratch_registers): Likewise.
 
-       * src/vm/jit/parse.c:
-         * JAVA_GET/PUT*, JAVA_CHECKCAST, JAVA_INSTANCEOF: Removed
-           __POWERPC__ define, since we can now handle lazy loading in leafs.
+2006-09-07 22:39  edwin
 
-2005-11-05 17:26  twisti
+       * src/vm/jit/allocator/simplereg.c (reg_alloc_dup): Removed.
+       (new_reg_mark_copy): Likewise.
 
-       * src/native/vm/VMThread.c:
-         * currentThread: Assign return value to variable, this removes a
-           compiler warning and eases debugging.
+2006-09-07 14:41  edwin
 
-2005-11-05 17:13  twisti
+       * src/vm/jit/i386/codegen.c (ICMD_COPY): Added.
+       (ICMD_MOVE): Likewise.
 
-       * src/vm/jit/parse.c:
-         * Only added some debug output for mips and powerpc, this should be
-           remove asap.
+2006-09-07 14:38  edwin
 
-2005-11-05 12:10  twisti
+       * src/vm/jit/reg.h (varinfo): New field copycount.
+       * src/vm/jit/parse.c (new_parse): Zero jd->var array.
 
-       * src/vm/jit/mips/patcher.c:
-         * patcher_builtin_newarray, patcher_builtin_multianewarray,
-           patcher_builtin_arraycheckcast, patcher_builtin_arrayinstanceof:
-           Patch classinfo instead of vftbl.
+2006-09-07 14:31  edwin
 
-2005-11-04 18:49  twisti
+       * src/vm/jit/parse.c (new_parse): Allocate extra NOPs for stack
+       operations.
 
-       * src/vm/jit/powerpc/patcher.c:
-         * patcher_builtin_newarray, patcher_builtin_multianewarray,
-           patcher_builtin_arraycheckcast, patcher_builtin_arrayinstanceof:
-           Patch classinfo instead of vftbl.
+2006-09-07 14:25  edwin
 
-2005-11-04 18:17  twisti
+       * src/vm/jit/show.c (ICMD_COPY): Uncommented.
+       (ICMD_MOVE): Likewise.
 
-       * src/vm/jit/alpha/patcher.c:
-         * patcher_builtin_newarray, patcher_builtin_multianewarray,
-           patcher_builtin_arraycheckcast, patcher_builtin_arrayinstanceof:
-           Patch classinfo instead of vftbl.
+2006-09-07 14:24  edwin
 
-2005-11-04 17:58  motse
+       * src/vm/jit/jit.h, src/vm/jit/jit.c (ICMD_COPY): New ICMD.
+       (ICMD_MOVE): Likewise.
 
-       * src/: cacao/cacao.c, native/jvmti/jvmti.c, native/jvmti/jvmti.h,
-         threads/native/threads.c, threads/native/threads.h,
-         vm/jit/stacktrace.c, vm/jit/stacktrace.h: almost all required
-         function implemented - first integration with jdwp - nothing tested
+2006-09-07 14:00  christian
 
-2005-11-04 17:47  twisti
+       * src/vm/jit/allocator/simplreg: Removed #if defined(NEW_VAR) over
+       some functions.
 
-       * src/vm/jit/i386/patcher.c:
-         * patcher_builtin_newarray, patcher_builtin_multianewarray,
-           patcher_builtin_arraycheckcast, patcher_builtin_arrayinstanceof:
-           Patch classinfo instead of vftbl.
+2006-09-07 13:41  edwin
 
-2005-11-04 17:33  twisti
+       * src/vm/jit/jit.c (ENABLE_VERIFY): Corrected to ENABLE_VERIFIER.
 
-       * src/vm/jit/i386/codegen.h:
-         * M_XOR, M_CLR: Added.
+2006-09-07 13:29  christian
 
-2005-11-04 17:33  twisti
+       Unified variables changes for common/i386.
 
-       * src/vm/jit/i386/codegen.c:
-         * createnativestub: Call trace fixes.
+2006-09-07 13:01  edwin
 
-2005-11-04 17:27  twisti
+       Branch for developing unified variables.
 
-       * src/vm/jit/verify/typecheck.c:
-         * verify_builtin: Use classinfo instead of vftbl for
-           BUILTIN_newarray, BUILTIN_arrayinstanceof.
-         * verify_multianewarray: Likewise.
-         * verify_basic_block: Likewise for ICMD_ARRAYCHECKCAST.
+2006-09-07 12:52  twisti
 
-2005-11-04 17:25  twisti
+       * src/vm/jit/i386/emit.c: Use IS_INMEMORY macro.
+       * src/vm/jit/i386/codegen.c: Likewise.
 
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_builtin_newarray, patcher_builtin_multianewarray,
-           patcher_builtin_arraycheckcast, patcher_builtin_arrayinstanceof:
-           Patch classinfo instead of vftbl.
+2006-09-07 12:26  twisti
 
-2005-11-04 17:24  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Use IS_INMEMORY macro.
 
-       * src/vm/jit/parse.c:
-         * JAVA_ANEWARRAY, JAVA_MULTIANEWARRAY, JAVA_CHECKCAST,
-           JAVA_INSTANCEOF: Use classinfo instead of vftbl in ICMDs.
+2006-09-07 12:24  twisti
 
-2005-11-04 17:21  twisti
+       * src/vm/jit/powerpc/emit.c (emit_copy): Eliminate register move if
+       one of the variables resides in memory.
 
-       * src/vm/jit/x86_64/codegen.h:
-         * M_IMOV_IMM: Added.
+2006-09-07 11:14  twisti
 
-2005-11-04 17:20  twisti
+       * src/vm/jit/alpha/emit.c (emit_copy): Only one not-equal comparison.
 
-       * src/vm/: builtin.c, builtin.h:
-         * builtin_arrayinstanceof, builtin_arraycheckcast, builtin_newarray,
-           builtin_multianewarray: Use classinfo instead of vftbl.
+2006-09-07 11:09  twisti
 
-2005-11-04 17:19  twisti
+       * src/vm/jit/powerpc64/emit.c (emit_copy): Eliminate register move if
+       one of the variables resides in memory.
 
-       * src/native/jni.c:
-         * fill_callblock_from_objectarray: Pass classinfo to
-           builtin_arrayinstanceof.
+2006-09-07 10:59  twisti
 
-2005-11-04 17:18  twisti
+       * src/vm/jit/mips/emit.c (emit_copy): Eliminate register move if one
+       of the variables resides in memory.
 
-       * src/native/vm/VMAccessController.c:
-         * config.h, vm/types.h: Added.
+2006-09-07 10:46  twisti
 
-2005-11-04 10:57  twisti
+       * src/vm/jit/i386/emit.c (emit_copy): Eliminate register move if one
+       of the variables resides in memory.
 
-       * src/native/vm/VMClassLoader.c:
-         * defineClass: Renamed arguments so they fit to the java ones, add
-           null pointer check, removed truncated class file check since this is
-           done by the loader function.
+2006-09-07 10:16  twisti
 
-2005-11-04 00:07  twisti
+       * src/vm/jit/x86_64/emit.c (emit_copy): Eliminate register move if one
+       of the variables resides in memory.
 
-       * src/native/jni.c:
-         * CallStatic*Method*: Some cleanups and correct log messages.
+2006-09-07 10:03  twisti
 
-2005-11-03 23:40  twisti
+       * src/vm/jit/alpha/emit.c (emit_copy): Eliminate register move if one
+       of the variables resides in memory.
 
-       * src/vm/jit/mips/: arch.h, md.c:
-         * Added mips32 stuff.
+2006-09-07 09:40  twisti
 
-2005-11-03 22:39  twisti
+       * src/vm/jit/jit.h (IS_SAVEDVAR): Added.
+       (IS_INMEMORY): Likewise.
 
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c, patcher.c:
-         * patcher_athrow_areturn changes.
+2006-09-07 00:32  edwin
 
-2005-11-03 22:38  twisti
+       * src/vm/jit/show.c (new_show_icmd): Separate real arguments and
+       pass-through variables for INVOKE*.
 
-       * src/vm/jit/powerpc/: darwin/md-os.c, linux/md-os.c:
-         * thread_restartcriticalsection: Added.
+2006-09-07 00:29  edwin
 
-2005-11-03 21:45  twisti
+       * src/vm/jit/show.c (new_show_icmd): Separate real arguments and
+       pass-through variables for BUILTIN.
 
-       * src/threads/native/threads.c:
-         * Finalizer thread changes.
-         * Some functions renamed.
-         * threads_dump: Print daemon, if any.
+2006-09-06 23:18  twisti
 
-2005-11-03 21:43  twisti
+       * src/vm/jit/powerpc64/linux/md-abi.h: Bugfixes and changes for new
+       instruction format.
+       * src/vm/jit/powerpc64/linux/md-abi.c: Likewise.
+       * src/vm/jit/powerpc64/emit.c: Likewise.
+       * src/vm/jit/powerpc64/codegen.c: Likewise.
+       * src/vm/jit/powerpc64/codegen.h: Likewise.
 
-       * src/threads/native/threads.h:
-         * Some functions renamed.
-         * Smaller changes.
+2006-09-06 22:34  twisti
 
-2005-11-03 21:43  twisti
+       * src/vm/jit/mips/linux/md-abi.h (REG_A0, REG_A1, REG_A2, REG_A3):
+       Defined.
+       * src/vm/jit/mips/codegen.c: Use REG_A? defines instead of
+       rd->argintreg[] loads.
 
-       * src/mm/memory.c:
-         * codememlock: #ifdef for threads.
+2006-09-06 22:16  twisti
 
-2005-11-03 21:43  twisti
+       * src/vm/jit/alpha/linux/md-abi.h (REG_A0, REG_A1, REG_A2, REG_A3):
+       Defined.
+       * src/vm/jit/alpha/codegen.c: Use REG_A? defines instead of
+       rd->argintreg[] loads.
 
-       * src/mm/boehm.c:
-         * runboehmfinalizer: Removed.
-         * --disable-threads compile fixes.
-         * heap_allocate: Use finalizer_add.
+2006-09-06 21:56  twisti
 
-2005-11-03 21:41  twisti
+       * src/vm/jit/x86_64/md-abi.h (REG_A0, REG_A1, REG_A2, REG_A3):
+       Defined.
+       * src/vm/jit/x86_64/codegen.c: Use REG_A? defines instead of
+       rd->argintreg[] loads.
 
-       * src/native/vm/VMThread.c:
-         * start: threads changes.
+2006-09-06 21:40  twisti
 
-2005-11-03 21:40  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Removed obsolete precedessor
+       calucation.
 
-       * src/native/: jni.c, jni.h:
-         * _no_threads_localref_table: Made non-static.
-         * LOCALREFTABLE: Moved to jni.h
+2006-09-06 21:32  edwin
 
-2005-11-03 21:39  twisti
+       * tests/regression/jasmin/test_dup_x2.j: Split second test into
+       separate file.
+       * tests/regression/jasmin/test_dup_x2_to_dup_x1: New test.
 
-       * src/cacaoh/cacaoh.c:
-         * threads renaming changes.
+2006-09-06 21:30  edwin
 
-2005-11-03 21:38  twisti
+       * tests/regression/jasmin/runtest: Improved harness script.
 
-       * src/cacaoh/headers.c:
-         * new_illegalmonitorstateexception: Added.
+2006-09-06 21:17  twisti
 
-2005-11-03 21:38  twisti
+       * src/vm/jit/powerpc/linux/md-abi.h (REG_A0, REG_A1, REG_A2, REG_A3):
+       Defined.
+       * src/vm/jit/powerpc/darwin/md-abi.h: Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c: Use REG_A? defines instead of
+       rd->argintreg[] loads.
 
-       * src/cacao/cacao.c:
-         * Finalizer thread changes.
+2006-09-06 17:05  twisti
 
-2005-11-03 21:36  twisti
+       * src/vm/jit/mips/codegen.c (codegen): Generate the INVOKE/BUILTIN
+       call code in a common place.
 
-       * src/vm/: finalizer.c, finalizer.h:
-         * Finalizer thread and stuff required for that.
+2006-09-06 16:43  twisti
 
-2005-11-03 21:35  twisti
+       * src/vm/jit/x86_64/codegen.c (codegen): Generate the INVOKE/BUILTIN
+       call code in a common place.
 
-       * src/vm/Makefile.am:
-         * finalizer.[ch]: Added.
+2006-09-06 16:41  twisti
 
-2005-11-03 21:34  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Don't move the function address
+       into disp for ICMD_BUILTIN.
 
-       * src/vm/signal.c:
-         * threads_dump: Renamed from thread_dump.
+2006-09-06 16:30  twisti
 
-2005-11-03 21:34  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Generate the INVOKE/BUILTIN
+       call code in a common place.
+       (createnativestub): Removed unused disp variable.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         * new_illegalmonitorstateexception: Added.
+2006-09-06 16:24  twisti
 
-2005-11-03 21:34  twisti
+       * src/vm/jit/alpha/codegen.c (codegen): Generate the INVOKE/BUILTIN
+       call code in a common place.
 
-       * src/vm/: class.c, class.h:
-         * class_java_lang_IllegalMonitorStateException: Added.
+2006-09-06 16:06  twisti
 
-2005-11-03 21:33  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Generate the INVOKE/BUILTIN
+       call code in a common place.
 
-       * src/vm/: utf8.c, utf8.h:
-         * utf_java_lang_IllegalMonitorStateException: Added.
+2006-09-06 16:01  edwin
 
-2005-11-03 21:33  twisti
+       * src/vm/jit/jit.h (INS_FLAG_NOCHECK): Reversed to INS_FLAG_CHECK.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/stack.h: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/parse.h: Likewise.
 
-       * src/vm/jit/: codegen.inc, stacktrace.c, stacktrace.h:
-         * --disable-threads fixes.
+2006-09-06 15:22  edwin
 
-2005-11-03 21:18  twisti
+       * src/vm/jit/parse.h (INSTRUCTIONS_CHECK): New macro.
+       * src/vm/jit/parse.c (new_parse): Merged twisti's reallocation of the
+       instruction array.
 
-       * src/native/include/: Makefile.am, gnu_classpath_Pointer.h:
-         * gnu_classpath_Pointer.h: Added, required by java_lang_VMThread.h.
+2006-09-06 14:38  twisti
 
-2005-11-03 21:15  twisti
+       * src/vm/jit/alpha/codegen.c (ICMD_I2L): Use REG_ITMP1 for dst, this
+       can save a move.
+       (ICMD_LDIV, ICMD_LREM): Use argument registers for s1 and s2 when
+       loaded.
 
-       * src/native/include/.cvsignore:
-         * Updated.
+2006-09-06 14:32  edwin
 
-2005-11-03 21:08  twisti
+       Checked in jasmin tests.
 
-       * src/native/include/: java_lang_ClassLoader.h,
-         java_lang_VMThread.h:
-         * Regenerated with GNU classpath 0.19 files.
+2006-09-06 14:01  edwin
 
-2005-11-03 21:08  twisti
+       * src/vm/jit/parse.c (parserdata_t): New type.
+       (parse_setup): New function.
+       (parse_check_instructions): New function.
 
-       * src/native/include/Makefile.am:
-         * genall: Added, generates the headers which are in cvs.
+2006-09-06 13:46  christian
 
-2005-11-03 20:07  twisti
+       * src/vm/jit/stack.c (new_stack_analyse): Ifdeffed handling of new var
+       system.
+       
+       * src/vm/jit/stack.h: Likewise.
+       
+       * src/vm/jit/parse.c (new_parse) : Likewise.
+       
+       * src/vm/jit/parse.h: Likewise.
+       
+       * src/vm/jit/jit.h: Ifdeffed structure entries for new var system.
 
-       * src/threads/native/threads.c:
-         * CHECK_MONITORSTATE: Check for lr == NULL, this is for wait's which
-           are not in a synchronized block.
+2006-09-06 12:37  twisti
 
-2005-11-03 12:13  twisti
+       * src/vm/jit/powerpc/codegen.c (codegen): Use M_ISUB in ICMD_ISUBCONST
+       instead of M_IADD.
 
-       * src/lib/vm/reference/: gnu/classpath/jdwp/VMIdManager.java,
-         java/io/VMObjectInputStream.java,
-         java/io/VMObjectStreamClass.java, java/lang/VMClassLoader.java,
-         java/lang/VMProcess.java, java/security/VMAccessController.java:
-         * Updated to classpath-0.19 versions.
+2006-09-06 11:58  twisti
 
-2005-11-02 14:35  twisti
+       * src/vm/jit/mips/emit.c (emit_copy): Removed accidentally pasted
+       code.
 
-       * src/native/vm/VMSystemProperties.c:
-         * preInit: When GC is disabled, we add constant strings to os.*
-           properties to keep the memory allocation equal on all architectures.
+2006-09-06 11:12  edwin
 
-2005-11-02 14:33  twisti
+       * src/vm/jit/stack.h: Removed macros for old instruction format.
 
-       * src/mm/nogc.c:
-         * Map the whole heap to a specific address (0x10000000), so we can
-           compare calltraces.
-         * heap_reallocate: Removed.
+2006-09-06 11:01  edwin
 
-2005-11-02 14:29  twisti
+       * src/vm/jit/parse.h: Removed NEW_ prefix from macros.
+       * src/vm/jit/parse.c: Likewise.
 
-       * src/mm/: boehm.c, boehm.h:
-         * stackcall_realloc, heap_reallocate: Removed.
+2006-09-06 10:56  edwin
 
-2005-11-02 01:05  twisti
+       * src/vm/jit/stack.h (CHECKOVERFLOW): Removed.
+       (NEW_CHECKOVERFLOW): Renamed to CHECKOVERFLOW.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Removed NEW_ prefix from
+       macro names.
 
-       * src/native/vm/VMSystemProperties.c:
-         * preInit: Set java.vendor and java.vendor.url to GNU classpath.
+2006-09-06 10:48  edwin
 
-2005-11-01 22:59  twisti
+       * src/vm/jit/x86_64/emit.c: Renamed new_instruction to instruction.
+       * src/vm/jit/x86_64/md-emit.h: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
 
-       * src/native/vm/VMSystem.c:
-         * config.h, vm/types.h: Added include.
-         * arraycopy: Added missing ArrayIndexOutOfBoundsException check for
-           sp + len < 0.
-         * Smaller changes.
+2006-09-06 10:20  christian
 
-2005-11-01 22:33  edwin
+       * src/vm/stack.c (new_stack_analyse): Removed assert to check, that
+       all outvars are STACKVARS. Would be a possible conflict with swap
+       
+       * src/vm/parse.c (new_parse): Data colletion for local var
+       renaming(de-coalescing)
+       
+       * src/vm/parse.h (new_pase): Likewise.
+       
+       * src/vm/jit.h: Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Ifdefed interface copy in
+       regard to new
+       var system.
 
-       * src/vm/linker.c: fix in linker: do not store self-reference for
-         bootloader loaded classes This fixes the bug that primitive classes
-         were stored in the classcache.
+2006-09-06 10:16  edwin
 
-2005-11-01 19:32  twisti
+       * src/vm/jit/mips/emit.c (emit_load_s1): Removed obsolete src param.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
 
-       * src/lib/vm/reference/java/lang/VMThread.java: 2005-11-01
-         Christian Thalinger  <twisti@complang.tuwien.ac.at>
+2006-09-06 10:14  edwin
 
-               * vm/reference/java/lang/VMThread.java (sleep): Don't round
-               ms and pass ns to Object.wait, fixes mauve test.
+       * src/vm/jit/powerpc64/emit.c (emit_load): New function.
+       (emit_load_s1): Implemented in terms of emit_load.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_store_dst): New function.
 
-2005-11-01 16:26  twisti
+2006-09-06 10:09  edwin
 
-       * src/native/vm/VMClass.c:
-         * getDeclaredClasses: Mauve bugfix, we took the wrong flag in the
-           second loop.
-         * getSuperclass* Check for use_class_as_object return value.
-         * Some smaller changes, more to come.
+       * src/vm/jit/mips/emit.c (emit_load): New function.
+       (emit_load_s1): Implemented in terms of emit_load.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_store_dst): New function.
 
-2005-11-01 13:39  twisti
+2006-09-06 09:57  edwin
 
-       * src/vm/jit/stack.c:
-         * analyse_stack: Added mips32 stuff.
-         * icmd_print_stack: Print v0 instead of ra, since ra is the return
-           address on some architectures.
-         * show_icmd: Better debug output.
+       * src/vm/jit/stack.c (new_stack_analyse): Implement conflict checking
+       and coalescing for *STORE.
+       * src/vm/jit/show.c (new_show_stackvar): Show coalescing info.
 
-2005-11-01 13:36  twisti
+2006-09-06 00:18  christian
 
-       * src/vm/jit/stacktrace.c:
-         * cacao_stacktrace_fillInStackTrace: Flush after debug output.
+       * src/vm/jit/stack.c (new_stack_analyse): Mark all in and out
+       Stackslots of Basic Blocks as STACKVAR.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Removed copy of interfaces
+       to in and from out stackslots.
 
-2005-10-28 21:56  twisti
+2006-09-06 00:07  edwin
 
-       * tests/native/testarguments.java:
-         * Pass and print arguments as hex values.
+       * src/vm/jit/powerpc64/codegen.c (codegen): ++lookup in LOOKUPSWITCH
+       loop.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Ported to new instruction
+       format.
 
-2005-10-28 21:56  twisti
+2006-09-05 23:37  edwin
 
-       * tests/native/testarguments.c:
-         * Print arguments as hex values.
+       * src/vm/jit/i386/codegen.c (codegen): Port LASTORECONST, PUT*CONST.
 
-2005-10-28 20:07  twisti
+2006-09-05 23:10  edwin
 
-       * tests/native/testarguments.c:
-         * Print floats/doubles as hex values.
+       * src/vm/jit/mips/codegen.c (codegen): Ported to new instruction
+       format.
 
-2005-10-28 19:50  twisti
+2006-09-05 23:08  twisti
 
-       * src/vm/jit/mips/patcher.c:
-         * patcher_get_putfield: Fixed TYPE_LNG on mips32.
-         * Also flush the data cache.
+       * src/vm/jit/powerpc/emit.c: Updated to new instruction format.
+       * src/vm/jit/powerpc/codegen.c: Likewise.
 
-2005-10-28 16:48  twisti
+2006-09-05 23:07  twisti
 
-       * src/vm/jit/mips/codegen.c:
-         * Calculate the return address of a patcher call via PV + offset.
-           This fixes leaf method problems.
+       * src/vm/builtin.c (builtin_print_argument): Print decimal values for
+       int and long arguments.
 
-2005-10-28 16:47  twisti
+2006-09-05 22:51  christian
 
-       * src/vm/jit/mips/patcher.c:
-         * patcher_get_putstatic, patcher_get_putfield,
-           patcher_builtin_multianewarray, patcher_builtin_arraycheckcast,
-           patcher_invokestatic_special, patcher_invokevirtual,
-           patcher_invokeinterface, patcher_checkcast_instanceof_flags,
-           patcher_checkcast_instanceof_interface,
-           patcher_checkcast_instanceof_class, patcher_clinit,
-           patcher_athrow_areturn: Don't calculate return address and write
-           it back, this is now done implicitly by the patcher stub.
-         * patcher_builtin_new, patcher_builtin_newarray,
-           patcher_builtin_arrayinstanceof: Adjusted return address
-           calculation.
+       * i386/emit.c: Changed to new instruction format.
+       * i386/codegen.c: Likewise.
+       * i386/codegen.h: Likewise.
+       * parse.c: Likewise.
+       * parse.h: Likewise.
+       * jit.h: Likewise.
 
-2005-10-28 13:39  twisti
+2006-09-05 22:42  edwin
 
-       * src/cacao/cacao.c:
-         * main: Call memory_init.
-         * exit_handler: Print mem usage before times.
+       * src/vm/jit/show.c (new_show_icmd): Show LOOKUPSWITCH targets.
 
-2005-10-28 13:37  twisti
+2006-09-05 22:27  edwin
 
-       * src/mm/memory.c:
-         * codememlock, codememsize, codememptr: Global variables added.
-         * memory_init: Added.
-         * memory_checked_alloc: Renamed from checked_alloc.
-         * memory_cnew: Memory usage bugfix, we always allocated a page, even
-           for 1-byte allocations.  Reverted back to old allocation scheme but
-           handle thread race conditions with a lock.
+       * src/vm/jit/alpha/codegen.c (codegen): Port MULTIANEWARRAY.
 
-2005-10-28 13:34  twisti
+2006-09-05 22:23  edwin
 
-       * src/mm/memory.h:
-         * memory_init: Added.
+       * sarc/vm/jit/parse.c (parse): Check return value of
+       lock_monitor_enter.
 
-2005-10-28 13:34  twisti
+2006-09-05 22:22  edwin
 
-       * src/vm/: statistics.c, statistics.h:
-         * codememusage, maxcodememusage: Added.
-         * print_stats, mem_usagelog: Some output reformated.
+       * src/threads/native/lock.h (lock_monitor_enter): Return bool.
+       * src/threads/native/lock.c (lock_monitor_enter): Check for
+       NullPointerException.
 
-2005-10-28 13:30  twisti
+2006-09-05 22:05  twisti
 
-       * src/vm/loader.c:
-         * load_method: Calculate count_extable_len correctly.
+       * src/vm/jit/cfg.c (cfg_build): It's better to not reuse the loop
+       variable.
 
-2005-10-28 13:29  twisti
+2006-09-05 21:53  edwin
 
-       * src/vm/utf8.c:
-         * utf_new_intern: Calculate count_utf_len correctly (off by 1).
+       * src/vm/jit/show.c (new_show_icmd): Show BLOCK_OF tableswitch
+       targets.
 
-2005-10-28 13:28  twisti
+2006-09-05 21:50  edwin
 
-       * configure.in:
-         * AC_CHECK_FUNCS: Added calloc mprotect getpagesize free.
+       * src/vm/jit/show.c (new_show_icmd): Show TABLESWITCH targets.
 
-2005-10-27 12:49  twisti
+2006-09-05 21:20  edwin
 
-       * src/vm/jit/mips/asmpart.S:
-         * asm_wrapper_patcher: We also need to save return registers for
-           areturn patchers.
+       * src/vm/jit/alpha/codegen.c (codegen): Port ICMD_CHECKCAST.
 
-2005-10-27 12:49  twisti
+2006-09-05 21:20  twisti
 
-       * src/vm/jit/mips/md-asm.h:
-         * SAVE_RETURN_REGISTERS, RESTORE_RETURN_REGISTERS: Added.
+       * src/vm/method.h (methodinfo): Removed members basicblockcount,
+       basicblocks, basicblockindex, instructioncount, instructions,
+       stackcount, and stack.
+       
+       * src/vm/jit/cfg.c: Use jitdata variables instead of methodinfo ones.
+       * src/vm/jit/reorder.c: Likewise.
+       * src/vm/jit/ifconv/ifconv.c: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/replace.c: Likewise.
+       * src/vm/jit/jit.c: Likewise.
 
-2005-10-27 12:23  edwin
+2006-09-05 21:17  twisti
 
-       * src/vm/builtin.c: print numerical nesting level for -verbosecall
-         (easier to search for than whitespace)
+       * src/vm/jit/powerpc/Makefile.am (libarch_la_SOURCES): Added
+       accidentally removed codegen.c.
 
-2005-10-27 12:22  twisti
+2006-09-05 21:16  twisti
 
-       * src/vm/jit/alpha/asmpart.S:
-         * asm_handle_exception: Pass indent flag correctly.
-         * asm_wrapper_patcher: We also need to save return registers for
-           areturn patchers.
+       * src/vm/jit/x86_64/codegen.c (codegen): Use d for return type checks.
 
-2005-10-27 12:20  twisti
+2006-09-05 21:15  twisti
 
-       * src/vm/jit/alpha/md-asm.h:
-         * fv0: Defined.
-         * SAVE_RETURN_REGISTERS, RESTORE_RETURN_REGISTERS: Added.
+       * src/cacaoh/headers.c: Use a dummy flag for natively overloaded
+       methods.
 
-2005-10-26 22:41  twisti
+2006-09-05 21:14  edwin
 
-       * src/native/jni.c:
-         * GetMethodID, GetStaticMethodID: Check clazz, initialize class.
+       * src/vm/jit/alpha/codegen.c (codegen): Deactivate replacement points.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
 
-2005-10-26 22:40  twisti
+2006-09-05 21:06  edwin
 
-       * src/native/vm/Field.c:
-         * cacao_get_field_address: Don't call cacao_callingMethod, instead
-           use cacao_createClassContextArray.
+       * src/vm/jit/alpha/codegen.c (codegen): Set fieldtype in all cases.
 
-2005-10-26 22:37  twisti
+2006-09-05 20:58  edwin
 
-       * src/native/vm/Method.c:
-         * invokeNative: Fixed access check, initialize class.
-         * Removed slot checks, these shouldn't be necessary.
+       * src/vm/jit/show.c (new_show_basicblock): Prettier if.
 
-2005-10-26 22:30  twisti
+2006-09-05 20:57  edwin
 
-       * src/vm/builtin.c:
-         * builtin_multianewarray_intern: Renamed from
-         builtin_multianewarray.
-         * builtin_multianewarray: Wrapper for builtin_multianewarray_intern,
-           checks for dimensions (fixes mauve test).
+       * src/vm/jit/alpha/codegen.c (codegen): Use jd->new_basicblocks.
 
-2005-10-26 22:27  twisti
+2006-09-05 20:50  edwin
 
-       * src/vm/: class.c, class.h, loader.c, loader.h:
-         * class_resolvefield, class_findmethod, class_resolvemethod,
-           class_resolveclassmethod, class_resolveinterfacemethod,
-           class_findmethod_approx, class_resolvemethod_approx,
-           class_issubclass, class_showmethods, class_showconstantpool: Moved
-           from loader.[ch] to class.[ch].
+       * src/vm/jit/alpha/codegen.c: Use invars/outvars instead of
+       instack/outstack.
 
-2005-10-26 22:22  twisti
+2006-09-05 20:17  edwin
 
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * callingMethodCollector, cacao_callingMethod: Removed.
+       * src/vm/jit/alpha/codegen.c (codegen): Port handling of INVOKE*
+       arguments.
 
-2005-10-26 18:49  twisti
+2006-09-05 20:11  edwin
 
-       * src/vm/jit/parse.h:
-         * Some code reformated.
+       * src/vm/jit/alpha/emit.c: Ported to new instruction format.
+       * src/vm/jit/alpha/codegen.c: Likewise.
 
-2005-10-26 18:42  twisti
+2006-09-05 19:38  twisti
 
-       * src/vm/exceptions.c:
-         * exceptions_init: Load and link
-         class_java_lang_NullPointerException.
-         * new_nullpointerexception: Use native_new_and_init instead of
-           new_exception.
+       * src/vm/jit/jit.h (instruction): Removed.
+       (new_instruction): Renamed to instruction.
+       
+       * src/vm/builtin.c: Renamed new_instruction to instruction.
+       * src/vm/builtin.h: Likewise.
+       * src/vm/resolve.c: Likewise.
+       * src/vm/resolve.h: Likewise.
+       * src/vm/jit/powerpc/emit.c: Likewise.
+       * src/vm/jit/powerpc/Makefile.am: Likewise.
+       * src/vm/jit/codegen-common.h: Likewise.
+       * src/vm/jit/cfg.c: Likewise.
+       * src/vm/jit/reorder.c: Likewise.
+       * src/vm/jit/emit.h: Likewise.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/stack.h: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/dseg.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/verify/typeinfo.c: Likewise.
+       * src/vm/jit/show.h: Likewise.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/codegen-common.c: Likewise.
 
-2005-10-26 17:00  twisti
+2006-09-05 19:06  edwin
 
-       * src/vm/: class.c, class.h:
-         * class_java_lang_NullPointerException: Added.
+       * src/vm/jit/powerpc/codegen.c (codegen): Converted with
+       portcodegen.pl.
+       * src/vm/jit/sparc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
 
-2005-10-26 16:58  twisti
+2006-09-05 18:43  edwin
 
-       * src/vm/: utf8.c, utf8.h:
-         * utf_java_lang_NullPointerException: Added.
+       Merge changes from trunk (powerpc64).
 
-2005-10-26 15:29  twisti
+2006-09-05 17:42  edwin
 
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_handle_exception: Indent.
+       * src/vm/jit/powerpc/codegen.c (codegen): Use emit_load instead of
+       emit_load_s1/s2 for variable arguments and interface copying.
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
 
-2005-10-25 19:42  twisti
+2006-09-05 17:21  edwin
 
-       * tests/native/Makefile.am:
-         * Added glibj.zip to jikes.
+       Merged changes from trunk.
 
-2005-10-24 23:28  edwin
+2006-09-05 16:45  edwin
 
-       * src/vm/jit/verify/typecheck.c: typecheck: use patcher for
-         postponed typechecks for ATHROW and ARETURN
+       * src/vm/jit/powerpc/codegen.c (codegen): ICMD_PUTSTATIC: Use
+       emit_load_s1 to load the first operand.
+       * src/vm/jit/sparc64/codegen.c (codegen): Likewise.
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
 
-2005-10-24 23:11  edwin
+2006-09-05 16:12  edwin
 
-       * src/vm/jit/verify/typecheck.c: added more detailed statistics to
-         typecheck.c
+       * src/vm/jit/jit.h (basicblock): Changed type of iinstr to
+       new_instruction *.
+       * src/vm/jit/stack.c (new_stack_analyse): Removed obsolete casts.
+       * src/vm/jit/show.c (new_show_basicblock): Likewise.
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Likewise.
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Likewise.
+       * src/vm/jit/parse.c (new_parse): Likewise.
+       * src/vm/jit/x86_64/codegen.c (new_parse): Likewise.
 
-2005-10-24 21:40  twisti
+2006-09-05 12:42  edwin
 
-       * src/vm/jit/x86_64/codegen.c:
-         * LREM: Bugfix, we accidentaly overwrote REG_ITMP2 to which we saved
-           the %rdx register.
-         * LDIV, LREM: Use alpha-style macros and compare with a value in the
-           data segment instead of an inline move.
+       * src/vm/jit/jit.h (s3_operand_t): Removed arrayvftbl.
+       * src/vm/jit/x86_64/codegen.c (codegen): ICMD_MULTIANEWARRAY:
+       Use s3.c.cls instead of s3.arrayvftbl.
 
-2005-10-24 21:38  twisti
+2006-09-05 12:29  edwin
 
-       * src/vm/jit/x86_64/codegen.h:
-         * M_CMP, M_CMP_IMM, M_CMP_MEMBASE: Added.
+       * src/vm/jit/jit.h (jitdata): Removed field new_rd.
+       * src/vm/jit/jit.c (jit_compile): Use rd instead of new_rd.
+       (jit_compile_intern): Likewise.
+       * src/vm/jit/verify/typecheck.c (typecheck): Likewise.
+       (verify_basic_block): Removed unused variables.
+       * src/vm/jit/allocator/simplereg.c (new_regalloc):
+       Use rd instead of new_rd.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
 
-2005-10-24 12:02  twisti
+2006-09-05 11:53  edwin
 
-       * configure.in:
-         * CFLAGS: Use default only if nothing's specified.
-         * Don't check for mmap stuff, not required anymore.
+       * src/vm/jit/x86_64/codegen.c: Ported to new instruction format.
+       * src/vm/jit/x86_64/emit.c: Likewise.
+       * src/vm/jit/x86_64/md-emit.h: Likewise.
 
-2005-10-21 15:48  twisti
+2006-09-05 11:50  edwin
 
-       * src/native/vm/VMRuntime.c:
-         * Define OS_INLINE for darwin.
+       * src/vm/jit/jit.h (s3_operand_t): Added union field arrayvftbl.
 
-2005-10-21 15:45  twisti
+2006-09-05 11:47  edwin
 
-       * src/vm/jit/powerpc/darwin/md-abi.c:
-         * types.h: Include path fixed.
-         * Some reformatting.
+       * src/vm/jit/jit.c (jit_compile): Test setup for the new x86_64
+       codegen.
+       (jit_compile_intern): Likewise.
 
-2005-10-21 15:45  twisti
+2006-09-05 11:42  edwin
 
-       * src/vm/jit/powerpc/darwin/md-os.c:
-         * types.h: Include path fixed.
+       * src/vm/jit/emit.h (emit_load*): Changed for new instruction format.
+       (emit_store*): Likewise.
+       (emit_copy*): Likewise.
+       (emit_store_dst): New function.
 
-2005-10-21 15:44  twisti
+2006-09-05 11:40  edwin
 
-       * src/vm/jit/powerpc/codegen.c:
-         * ICMD_ATHROW, ICMD_ARETURN: Added patcher stub calls.
+       * src/vm/jit/jit.h (basicblock): Added fields invars and outvars.
+       * src/vm/jit/stack.h (MARKREACHED): Set invars.
+       * src/vm/jit/stack.c (new_stack_analyse): Set invars and outvars.
+       * src/vm/jit/show.c (new_show_basicblock): Show invars and outvars.
 
-2005-10-21 15:43  twisti
+2006-09-05 11:34  edwin
 
-       * src/vm/jit/powerpc/patcher.c:
-         * patcher_athrow_areturn: Added.
+       * src/vm/jit/jit.h (NEW_INSTRUCTION_*): Renamed to INSTRUCTION_.
+       The old INSTRUCTION_ and ICMD_ macros are removed.
+       * src/vm/resolve.c (NEW_INSTRUCTION_*): Replaced with INSTRUCTION_.
+       * src/vm/jit/show.c (new_show_icmd): Likewise.
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Likewise.
+       * src/vm/jit/stack.c (new_stack_analyse): Likewise, and add a call
+       of builtintable_replace_function.
 
-2005-10-21 15:23  twisti
+2006-09-05 11:20  edwin
 
-       * src/vm/jit/i386/codegen.c:
-         * Patcher stub call nop'ing stuff added.
+       * src/vm/jit/verify/typecheck.c: Ported to new instruction format.
+       * src/vm/jit/verify/typeinfo.c (typeinfo_print): Likewise.
+       (typeinfo_print_short): Likewise.
 
-2005-10-21 15:22  twisti
+2006-09-05 11:16  edwin
 
-       * src/vm/jit/i386/codegen.h:
-         * PATCHER_CALL_SIZE: Added.
+       * src/vm/builtin.h (builtintable_replace_function): Ported to new
+       instruction format.
+       * src/vm/builtin.c (builtintable_replace_function): Likewise.
 
-2005-10-21 15:16  twisti
+2006-09-05 11:13  edwin
 
-       * src/vm/jit/alpha/patcher.c:
-         * patcher_athrow_areturn: Added.
+       * src/vm/jit/show.c (new_show_variable_array): New function.
+       (new_show_method): Fixed calculation of lastbptr.
+       Only show code lengths if stage >= SHOW_CODE.
 
-2005-10-21 15:16  twisti
+2006-09-05 10:52  edwin
 
-       * src/vm/jit/alpha/codegen.c:
-         * ICMD_ATHROW, ICMD_ARETURN: Added patcher stub call.
+       * src/vm/resolve.h: Removed code for old instruction format.
+       * src/vm/resolve.c: Likewise.
 
-2005-10-21 15:08  twisti
+2006-09-05 10:47  edwin
 
-       * src/mm/memory.c:
-         * memory_cnew: Added.
+       * src/vm/jit/allocator/simplereg.h: Removed code for old instruction
+       format.
+       * src/vm/jit/allocator/simplereg.c: Likewise.
 
-2005-10-21 15:07  twisti
+2006-09-05 10:44  edwin
 
-       * src/mm/memory.h:
-         * memory_cnew: Added.
-         * CNEW: Call memory_cnew.
+       * src/vm/jit/show.h: Removed code for old instruction format.
+       * src/vm/jit/show.c: Likewise.
 
-2005-10-21 14:04  twisti
+2006-09-05 10:39  edwin
 
-       * src/vm/jit/mips/codegen.c:
-         * lastmcodeptr: Stuff added.
-         * ICMD_ATHROW, ICMD_ARETURN: Added patcher stub call.
-         * ICMD_xRETURN: Moved monitorexit after the call trace.
+       * src/vm/jit/stack.h: Removed code for old instruction format.
+       * src/vm/jit/stack.c: Likewise.
 
-2005-10-21 14:03  twisti
+2006-09-05 10:37  edwin
 
-       * src/vm/jit/mips/codegen.h:
-         * PATCHER_CALL_SIZE: Added.
+       * src/vm/jit/parse.h: Removed code for old instruction format.
+       * src/vm/jit/parse.c: Likewise.
 
-2005-10-21 14:03  twisti
+2006-09-05 10:20  edwin
 
-       * src/vm/jit/mips/patcher.c:
-         * patcher_athrow_areturn: Added.
+       Branch for porting the new instruction format.
 
-2005-10-21 14:02  twisti
+2006-09-05 10:15  twisti
 
-       * src/vm/jit/codegen.inc:
-         * codegen_increase: We also need to set the lastmcodeptr on some
-         platforms.
+       * src/vm/jit/i386/Makefile.am (noinst_HEADERS): Removed
+       icmd_uses_reg_res.inc.
 
-2005-10-21 13:44  twisti
+2006-09-05 10:10  twisti
 
-       * src/vm/jit/x86_64/codegen.c:
-         * ICMD_ARETURN: Added patcher call, missed in last commit.
+       * src/vm/jit/i386/icmd_uses_reg_res.inc: Removed.
 
-2005-10-21 13:43  twisti
+2006-09-05 10:09  edwin
 
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_athrow_areturn: Fixed comment.
+       * src/vm/jit/x86_64/codegen.h (ICONST): Fix this macro so it properly
+       uses its arguments.
+       (LCONST): Likewise.
 
-2005-10-21 11:09  twisti
+2006-09-05 10:04  twisti
 
-       * src/vm/jit/x86_64/codegen.c:
-         * Added stuff to nop the missing space for patcher stub calls
-           (lastmcodeptr).
+       * src/tests/Howdy.java: Removed.
 
-2005-10-21 11:07  twisti
+2006-09-05 10:03  twisti
 
-       * src/vm/jit/x86_64/codegen.h:
-         * config.h: Added.
-         * PATCHER_CALL_SIZE: Likewise.
-         * M_POP, M_CALL_IMM: Likewise.
+       * src/vm/jit/x86_64/codegen.c (codegen): Use cd->stackframesize
+       instead of stackframesize (bugfix).
+       (createnativestub): Likewise.
 
-2005-10-21 11:06  twisti
+2006-09-05 09:59  edwin
 
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_athrow_areturn: Added.
+       * src/vm/jit/codegen-common.h (codegen_reg_of_dst): New function.
+       * src/vm/jit/codegen-common.c (codegen_reg_of_dst): Likewise.
+       Right now this duplicates codegen_reg_of_var's body. We should
+       probably make one of these functions inline the other.
 
-2005-10-21 10:46  twisti
+2006-09-05 00:12  edwin
 
-       * src/vm/jit/codegen.inc:
-         * dseg_addlinenumbertablesize: Do padding on all 64-bit machines.
-         * codegen_addpatchref: Set lastmcodeptr to the last byte of the
-           patcher stub call instruction.
+       * src/vm/jit/ifconv/ifconv.c (ifconv_static): Deactivated
+       show_basicblock calls that will become a problem when code for the
+       old instruction format is removed.
+       (check): Likewise.
 
-2005-10-21 10:44  twisti
+2006-09-05 00:02  edwin
 
-       * src/vm/jit/codegen.inc.h:
-         * codegendata: Added lastmcodeptr.
+       * src/vm/resolve.c (resolve_field): new_resolve_field_verifier_checks
+       used instead of the old function that will be removed soon.
+       (resolve_method): Use new_resolve_method_verifier_checks instead of
+       the
+       old function that will be removed soon.
+       (new_resolve_method_verifier_checks): Port handling of
+       TYPEINFO_IS_NEWOBJECT.
+       (new_resolve_method_verifier_checks): Likewise.
+       (new_constrain_unresolved_field): Likewise.
+       (new_constrain_unresolved_method): Likewise.
 
-2005-10-20 12:42  edwin
+2006-09-04 23:24  edwin
 
-       * src/vm/: exceptions.c, exceptions.h: added Changes: Edwin Steiner
-         to exceptions.[ch]
+       * src/vm/jit/parse.c (new_parse): Changed leftover "OP" macro uses
+       to "NEW_OP".
 
-2005-10-20 12:40  edwin
+2006-09-04 17:45  twisti
 
-       * src/vm/exceptions.c: small fix in
-         classnotfoundexception_to_noclassdeffounderror
+       * src/vm/jit/mips/emit.c (config.h): Added.
+       [ENABLE_THREADS] (threads/native/lock.h): Likewise.
+       (vm/exceptions.h): Likewise.
+       (vm/stringlocal.h): Likewise.
+       (vm/jit/asmpart.h): Likewise.
+       (vm/jit/dseg.h): Likewise.
+       (vm/jit/replace.h): Likewise.
+       (emit_exception_stubs): New method.
+       (emit_patcher_stubs): Likewise.
+       (emit_replacement_stubs): Likewise.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Use cd->stackframesize instead
+       of stackframesize, use emit functions to generate stubs and call trace
+       code.
+       (createnativestub): Likewise.
+
+2006-09-04 17:12  christian
+
+       * src/vm/jit/alpha/patcher.c (patcher_wrapper): Patch back machine
+       code.
+       (patcher_aconst): Renamed to patcher_resolve_classref_to_classinfo.
+       (patcher_clinit): Renamed to patcher_initialize_class.
+       (patcher_resolve_native): Renamed to patcher_resolve_native_function.
+       (patcher_athrow_areturn): Renamed to patcher_resolve_class.
+       (patcher_checkcast_instanceof_class): Renamed to
+       patcher_resolve_classref_to_vftbl.
+       (patcher_checkcast_instanceof_flags): Renamed to
+       patcher_resolve_classref_to_flags.
+       (patcher_builtin_multianewarray): Removed.
+       (patcher_builtin_arraycheckcast): Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Use new patcher functions.
+
+2006-09-04 16:33  twisti
+
+       * src/vm/jit/alpha/emit.c (vm/builtin.h): Added.
+       (vm/jit/abi-asm.h): Likewise.
+       (vm/jit/replace.h): Likewise.
+       (emit_verbosecall_enter): New method.
+       (emit_verbosecall_exit): Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Use emit functions to generate
+       call trace code.
+       (createnativestub): Likewise.
+
+2006-09-04 15:48  twisti
+
+       * src/vm/jit/powerpc/emit.c (config.h): Added.
+       [ENABLE_THREADS] (threads/native/lock.h): Likewise.
+       (vm/builtin.h): Likewise.
+       (vm/jit/abi-asm.h): Likewise.
+       (vm/jit/asmpart.h): Likewise.
+       (vm/jit/replace.h): Likewise.
+       (emit_exception_stubs): New method.
+       (emit_patcher_stubs): Likewise.
+       (emit_replacement_stubs): Likewise.
+       (emit_verbosecall_enter): Likewise.
+       (emit_verbosecall_exit): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Use emit functions to
+       generate stubs and call trace code.
+       (createnativestub): Likewise.
+
+2006-09-04 14:21  twisti
+
+       * src/vm/jit/powerpc/asmpart.S (asm_call_jit_compiler): We don't save
+       an argument on the stack anymore, offsets adjusted.
+       (asm_handle_exception): Use md_codegen_get_pv_from_pc instead of
+       assembler code and temporary variables as on other RISC architectures.
+
+2006-09-04 12:38  tbfg
+
+       * src/vm/jit/powerpc64/emit.c (emit_verbosecall_enter): Fixed off
+       by one stackslot overwrite some stuff bug.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen): Fix parameter passing
+       in.
+
+2006-09-02 14:26  tbfg
+
+       * src/vm/jit/powerpc64/arch.h: Reenabled platfrom features.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen): Fixed native calls.
+       (createnativestub): Likewise.
+
+2006-08-31 19:58  tbfg
+
+       * srv/vm/jit/powerpc64/asmpart.S (asm_vm_call_method): Fixed argument
+       handling.
+
+2006-08-31 13:32  tbfg
+
+       * src/vm/jit/powerpc64/emit.c (emit_verbosecall_enter): Moved from
+       codegen.c refactored into function, and made it work.
+       (emit_verbosecall_exit): Likewise.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen_trace_args): Moved into
+       emit.c and renamed it to emit_verbosecall_enter.
+       (codegen): Using emit_verbosecall_* instead of inline code, and
+       various fixes to make verbose:call work.
+       (createnativestub): Likewise.
+
+2006-08-28 19:31  tbfg
+
+       * src/vm/jit/powerpc64/linux/md-abi.h: New REG_TOC name needed to
+       call builtins due to ppc64 function descriptors (ELF ABI).
+       
+       * src/vm/jit/powerpc64/codegen.c (createnativestub): Big endian
+       requires M_LLD and M_IST to copy s4 values from dseg to stack.
+       (codegen): gen_method needs to create function descriptor call.
+       
+       * src/vm/jit/powerpc64/asmpart.S: When linking statically
+       non function descriptor calls are generated by compiler.
+       Some ifdefs added to fix static linking.
+
+2006-08-28 15:18  twisti
+
+       * src/vm/jit/patcher.h (patcher_resolve_class): Added.
+       (patcher_initialize_class): Likewise.
+       (patcher_resolve_classref_to_classinfo): Likewise.
+       (patcher_resolve_classref_to_vftbl): Likewise.
+       (patcher_resolve_classref_to_flags): Likewise.
+       (patcher_resolve_native_function): Likewise.
+       
+       * src/vm/jit/powerpc/patcher.c (patcher_wrapper): Patch back machine
+       code.
+       (patcher_aconst): Renamed to patcher_resolve_classref_to_classinfo.
+       (patcher_clinit): Renamed to patcher_initialize_class.
+       (patcher_resolve_native): Renamed to patcher_resolve_native_function.
+       (patcher_athrow_areturn): Renamed to patcher_resolve_class.
+       (patcher_checkcast_class): Renamed to
+       patcher_resolve_classref_to_vftbl.
+       (patcher_checkcast_instanceof_flags): Renamed to
+       patcher_resolve_classref_to_flags.
+       (patcher_builtin_multianewarray): Removed.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_instanceof_class): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Use new patcher functions
+       (some of them were already commited accidentally in the last commit).
+
+2006-08-28 13:05  twisti
+
+       * src/vm/jit/emit.h (emit_verbosecall_enter): Added.
+       (emit_verbosecall_exit): Likewise.
+       
+       * src/vm/jit/powerpc/emit.c (vm/builtin.h): Added.
+       (vm/jit/asmpart.h): Likewise.
+       (vm/jit/replace.h): Likewise.
+       (emit_exception_stubs): New method.
+       (emit_patcher_stubs): Likewise.
+       (emit_replacement_stubs): Likewise.
+       (emit_verbosecall_enter): Likewise.
+       (emit_verbosecall_exit): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (vm/jit/abi-asm.h): Added.
+       (codegen_trace_args): Removed.
+       (codegen): Use cd->stackframesize instead of stackframesize, use emit
+       functions to generate stubs and call trace code.
+       (createnativestub): Likewise.
+
+2006-08-25 11:55  tbfg
+
+       * src/vm/jit/show.c (show_method): Stubs are printed green when
+       using -debug-color.
+       
+       * src/vm/jit/powerpc64/linux/md-os.c (md_signal_handler_sigusr2):
+       Moved into #ifdef ENABLE_THREADS conditional compile, as it depends
+       on threadobject.
+       
+       * src/vm/jit/powerpc64/codegen.h: Added M_LADD_IMM and M_AADD_IMM
+       for better reading of code. Fixed M_CLR.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen): Some fixes with ?RETURN,
+       some fixes for -verbose:call (still defunc),
+       (createnativestub): Lots of fixes in stackframe calculations.
+       
+       * src/vm/jit/powerpc64/patcher.c (patch_aconst): Correct asm comment.
+       
+       * src/vm/jit/powerpc64/disass.c (disassinstr): Display 64 bit
+       addresses in disassembled code (-sa).
+       
+       * src/vm/jit/powerpc64/asmpart.S (L_asm_vm_call_method_return):
+       Fixed path for methods returning a value.
+       (L_asm_handle_exception): Fixed path for exception handling.
+       (asm_patcher_wrapper): Fixed path for codepatching.
+
+2006-08-25 07:54  twisti
+
+       * src/vm/exceptions.c (new_illegalmonitorstateexception): Renamed to
+       exceptions_new_illegalmonitorstateexception.
+       (exceptions_throw_illegalmonitorstateexception): New method.
+       * src/vm/exceptions.h: Likewise.
+       
+       * src/threads/native/lock.c (lock_monitor_exit): Use
+       exceptions_throw_illegalmonitorstateexception instead of
+       new_illegalmonitorstateexception.
+       (lock_monitor_wait): Likewise.
+       (lock_monitor_notify): Likewise.
+       
+       * src/cacaoh/headers.c (new_illegalmonitorstateexception): Renamed to
+       exceptions_throw_illegalmonitorstateexception.
+
+2006-08-25 07:29  twisti
+
+       * src/vm/jit/alpha/emit.c (emit_exception_stubs): Bugfix when
+       reallocating the code area.
+       (emit_patcher_stubs): Reuse the asm_patcher_wrapper call code.
+       (emit_replacement_stubs): Removed savedmcodeptr.
+
+2006-08-25 07:14  twisti
+
+       * src/vm/jit/alpha/emit.c (emit_exception_stubs): Bugfix when
+       reallocating the code area.
+       (emit_patcher_stubs): Likewise.
+
+2006-08-24 18:42  twisti
+
+       * src/vm/jit/codegen-common.h (codegendata): Added stackframesize. I
+       think this is more obvious than in jitdata.
+       
+       * src/vm/jit/jit.h (jitdata): Removed stackframesize.
+       
+       * src/vm/jit/alpha/emit.c (emit_exception_stubs): Replaced
+       jd->stackframesize with cd->stackframesize.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/i386/emit.c (emit_exception_stubs): Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+
+2006-08-24 09:29  tbfg
+
+       srv/vm/jit/powerpc/linux/md-os.c (md_signal_handler_sigusr2): Moved
+       inside
+       ENABLE_THREADS ifdef as is depends on threads.
+
+2006-08-23 16:04  twisti
+
+       * src/vm/jit/alpha/emit.c [ENABLE_THREADS] (threads/native/lock.h):
+       Added.
+       (vm/jit/asmpart.h): Likewise.
+       (vm/jit/dseg.h): Likewise.
+       (emit_exception_stubs): New function.
+       (emit_patcher_stubs): Likewise.
+       (emit_replacement_stubs): Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Use jd->stackframesize, removed
+       stub generation code.
+       (createnativestub): Likewise.
+
+2006-08-23 15:55  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_handle_exception): Fixed bug with
+       maybe-leaf stack and use same registers as on MIPS.
+
+2006-08-23 15:45  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_handle_exception): Use
+       md_codegen_get_pv_from_pc.
+
+2006-08-23 15:10  twisti
+
+       * src/vm/jit/mips/asmpart.S (asm_handle_exception): Changed some
+       comments.
+
+2006-08-23 14:55  twisti
+
+       * src/vm/jit/alpha/asmpart.S (L_asm_handle_exception_stack_loop):
+       Don't save xpc.
+
+2006-08-23 14:23  twisti
+
+       * src/boehm-gc/configure.in (AC_C_INLINE): Set CFLAGS properly before.
+
+2006-08-23 14:07  twisti
+
+       * configure.ac (AC_CONFIG_SUBDIRS): Moved to the end of the file and
+       export OPT_CFLAGS/ARCH_CFLAGS instead of CFLAGS.
+       
+       * src/boehm-gc/configure.in: Pass CFLAGS to Makefile's as for CACAO.
+       * src/boehm-gc/Makefile.am (AM_CXXFLAGS, AM_CFLAGS): Commented.
+       (AM_CPPFLAGS): Added.
+
+2006-08-23 12:57  twisti
+
+       * src/vm/jit/alpha/emit.c (config.h): Added.
+       [ENABLE_THREADS] (threads/native/lock.h): Likewise.
+       (vm/jit/asmpart.h): Likewise.
+       (vm/jit/dseg.h): Likewise.
+       (emit_exception_stubs): New function.
+       (emit_patcher_stubs): Likewise.
+       (emit_replacement_stubs): Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Use jd->stackframesize, use
+       new desg_add_* functions, removed stub generation code.
+       (createnativestub): Likewise.
+
+2006-08-23 12:29  twisti
+
+       * src/vm/vm.c (OPT_ALL, OPT_METHOD, OPT_SIGNATURE): #ifndef NDEBUG.
+       (usage): Don't print -all, -m, -sig options.
+
+2006-08-23 12:12  twisti
+
+       * src/vm/jit/emit.h (emit_replacement_stubs): Added.
+
+2006-08-22 20:48  twisti
+
+       * src/vm/jit/i386/md-emit.h (vm/jit/codegen-common.h): Added.
+
+2006-08-22 19:53  twisti
+
+       * src/vm/jit/emit.h (emit_exception_stubs): Added.
+       (emit_patcher_stubs): Likewise.
+       
+       * src/vm/jit/jit.h (jitdata): Added member stackframesize.
+
+2006-08-22 15:49  tbfg
+
+       * src/vm/jit/powerpc64/linux/md-abi.h: Added PA_SIZE and
+       PA_SIZE_IN_POINTERS defines.
+       
+       * src/vm/jit/powerpc64/arch.h: Enabled machine dependend
+       compare_and_swap implementation for ppc64.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen): Remove lot of PACK_REGS
+       usages, changed stack address calculations from *4 -> *8, added
+       a M_NOP for debugging.
+       
+       * src/vm/jit/powerpc64/machine-instr.h (compare_and_swap): Ported
+       for 64 bit.
+       (atomic_add): Removed.
+       
+       * src/vm/jit/powerpc64/patcher.c (patcher_wrapper): Fixed stack
+       calculations from *4 -> *8
+       (patcher_aconst): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_checkcast_class): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interf): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_get_putfield): Likewise.
+       (patcher_get_putstatic): Likewise.
+       (patcher_instanceof_class): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/powerpc64/asmpart.S (asm_patcher_wrapper): Fixed
+       calling convetions, as we callback C. Fixed 32 bit issues.
+       (asm_call_jit_compiler): PPC64 has additional PA_SIZE
+       on stack - fixed that.
+
+2006-08-22 14:39  twisti
+
+       * src/native/vm/java_lang_VMThrowable.c (fillInStackTrace): Removed
+       architecture #ifdef's.
+       (getStackTrace): Likewise.
+
+2006-08-22 12:43  twisti
+
+       * src/native/native.c (dummynativetable): Made non-static, GCC 4.1
+       optimized the table away.
+       (native_init): Removed dummynativetable-hack.
+
+2006-08-22 09:02  tbfg
+
+       * src/vm/options.h: Renamed -verbosecolor to -debug-color,
+       opt_colorverbose to opt_debugcolor and OPT_COLORVERBOSE to
+       OPT_DEBUGCOLOR
+       * src/vm/method.c: Same as above.
+       * src/vm/jit/dseg.c: Same as above.
+       * src/vm/vm.c: Same as above.
+       * src/vm/options.c: Same as above.
+       * src/vm/jit/Makefile.am: Removed options.h dependecy, as deps are
+       tracked automatically.
+
+2006-08-21 17:37  twisti
+
+       * src/lib/vm/reference/gnu/classpath/VMStackWalker.java
+       (firstNonNullClassLoader): Added and made native.
+       
+       * src/native/vm/gnu_classpath_VMStackWalker.c (getClassContext):
+       Removed architecture #ifdef's, as most stacktrace stuff is
+       architecture independent and the dependent stuff is very simple to
+       implement.
+       (getCallingClass): Likewise.
+       (getCallingClassLoader): Likewise.
+       (firstNonNullClassLoader): Added.
+
+2006-08-21 15:25  twisti
+
+       * src/vm/jit/i386/asmpart.S (L_asm_patcher_wrapper_exception): Removed
+       duplicate add line.
+
+2006-08-21 15:17  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Added
+       src/vm/jit/i386/darwin/Makefile.
+       
+       * src/vm/jit/i386/codegen.c (createnativestub): Align stack to
+       16-bytes.
+       
+       * src/vm/jit/i386/darwin/md-os.c: Darwin specific functions.
+       * src/vm/jit/i386/darwin/md-asm.h: Darwin specific assembler defines.
+       * src/vm/jit/i386/darwin/Makefile.am: New file.
+       * src/vm/jit/i386/darwin/.cvsignore: Likewise.
+       
+       * src/vm/jit/i386/linux/md-asm.h: Linux specific assembler defines.
+       * src/vm/jit/i386/freebsd/md-asm.h: FreeBSD specific assembler
+       defines.
+       
+       * src/vm/jit/i386/md-asm.h: Removed.
+       
+       * src/vm/jit/i386/asmpart.S (asm_handle_exception): Align stack to
+       16-bytes.
+       (asm_abstractmethoderror): Likewise.
+       (asm_patcher_wrapper): Likewise.
+       (asm_builtin_f2i, asm_builtin_d2i, asm_builtin_f2l, asm_builtin_d2l):
+       Likewise.
+       
+       * src/vm/jit/i386/Makefile.am (DIST_SUBDIRS): Added darwin.
+       (AM_CPPFLAGS): Added OS_DIR as include.
+       (noinst_HEADERS): Removed md-asm.h.
+       
+       * src/threads/native/threads.c (threads_cast_darwinstop): Use generic
+       defines and machine dependent structures.
+
+2006-08-21 14:52  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h (asm_initialize_thread_stack):
+       Define removed.
+       (asm_perform_threadswitch): Likewise.
+       (asm_switchstackandcall): Likewise.
+
+2006-08-18 18:37  tbfg
+
+       src/vm/options.h: Added the commandlineswitch --verbosecolor which
+       enables
+       colored output of show: -si prints method names in red -sd shows
+       datasegment
+       dump in blue. (use | less -R)
+       
+       src/vm/options.c (options_get): There is a nasty bug in there, read
+       comment.
+
+2006-08-18 13:07  twisti
+
+       * src/toolbox/util.c (util_current_time_millis): Removed.
+       * src/toolbox/util.h: Likewise.
+       
+       * src/vm/vm.c (vm_create): Use builtin_currenttimemillis instead of
+       util_current_time_millis.
+
+2006-08-18 13:01  twisti
+
+       * src/vm/exceptions.c (new_arraystoreexception): Renamed to
+       exceptions_new_arraystoreexception.
+       (exceptions_throw_arraystoreexception): New function.
+       * src/vm/exceptions.h: Likewise.
+       
+       * src/vm/builtin.c (builtintable_init): Reimplemented and added
+       builtintable_function.
+       (builtintable_replace_function): New function.
+       (builtin_arraycopy): Likewise.
+       (builtin_currenttimemillis): Likewise.
+       
+       * src/vm/builtin.h (builtintable_entry): Added some extra members.
+       (builtin_asm_get_exceptionptrptr): Removed.
+       (builtintable_replace_function): Added.
+       (builtin_arraycopy): Likewise.
+       (builtin_currenttimemillis): Likewise.
+       
+       * src/vm/builtintable.inc (builtintable_internal): Use new
+       builtintable_entry structure.
+       (builtintable_automatic): Likewise.
+       (builtintable_function): Added.
+       
+       * src/vm/jit/stack.c (stack_analyse): Call
+       builtintable_replace_function.
+       
+       * src/vm/jit/show.c (new_show_icmd): Print correct variable of builtin
+       calls.
+       (show_icmd): Likewise.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_inline_arraystoreexception): Use
+       exceptions_new_arraystoreexception.
+       
+       * src/native/vm/java_lang_VMSystem.c (arraycopy): Removed
+       implementation and use builtin_arraycopy.
+       
+       * src/cacaoh/headers.c
+       (exceptions_throw_arrayindexoutofboundsexception): Added.
+       (exceptions_new_arraystoreexception): Likewise.
+       (exceptions_throw_arraystoreexception): Likewise.
+
+2006-08-18 12:24  twisti
+
+       * src/vm/class.c (class_java_lang_VMSystem): Added.
+       * src/vm/class.h: Likewise.
+       * src/vm/loader.c (loader_init): Likewise.
+       * src/vm/linker.c (linker_init): Likewise.
+
+2006-08-18 10:22  tbfg
+
+       src/vm/jit/powerpc64/linux/md-os.c: Ported signal handlers to ppc64
+       ucontext.
+
+2006-08-17 17:51  tbfg
+
+       src/vm/jit/powerpc64/md.c (md_get_method_patch_address): Fixed
+       opcodes in
+       casetests.
+       
+       src/vm/jit/powerpc64/arch.h: Temporarily disabled all hardwarefeaturs
+       to
+       make porting easier.
+       
+       src/vm/jit/powerpc64/codegen.c: Started to fix 32/64 bit issues.
+       
+       src/vm/jit/powerpc64/codegen.h: Removing special long handling.
+       
+       src/vm/jit/powerpc64/patcher.c: Changed comment only.
+
+2006-08-17 09:59  twisti
+
+       * src/vm/jit/i386/asmpart.S (asm_patcher_wrapper): Restore REG_ITMP3
+       from stub stack. I missed this when I did the last changes.
+
+2006-08-17 09:26  twisti
+
+       * src/vm/jit/optimizing: Added ignore property.
+
+2006-08-16 15:35  christian
+
+       * src/vm/jit/optimizing/.cvsignore: New file.
+
+2006-08-16 12:21  christian
+
+       * src/vm/jit/stack.c (stack_analyse): Use of real PEI data
+       (op_data[opcode][PEI]) to prevent copy propagation to LOCALVAR with
+       ICMD_XSTORE instead of just regarding INVOKES as PEI's.
+
+2006-08-16 12:11  christian
+
+       * src/toolbox/worklist.h: Comments added.
+
+2006-08-16 12:10  christian
+
+       * src/toolbox/bitvector.c: Comments added.
+       
+       * src/toolbox/bitvector.h: Comments added.
+       
+       * src/toolbox/worklist.c: Comments added.
+
+2006-08-16 11:35  christian
+
+       * src/toolbox/worklist.c: Corrected Header information.
+       
+       * src/toolbox/worklist.h: Likewise.
+       
+       * src/toolbox/bitvector.c: Likewise.
+       
+       * src/toolbox/bitvector.h: Likewise.
+
+2006-08-16 11:31  christian
+
+       * src/vm/jit/allocator/liveness.c: Corrected Header information.
+       
+       * src/vm/jit/allocator/liveness.h: Likewise.
+       
+       * src/vm/jit/allocator/lsra.c: Likewise.
+       
+       * src/vm/jit/allocator/lsra.h: Likewise.
+
+2006-08-16 11:26  christian
+
+       * src/vm/jit/optimizing/dominators.c: Corrected Header information.
+       
+       * src/vm/jit/optimizing/dominators.h: Likewise.
+       
+       * src/vm/jit/optimizing/graph.c: Likewise.
+       
+       * src/vm/jit/optimizing/graph.h: Likewise.
+       
+       * src/vm/jit/optimizing/lifetimes.c: Likewise.
+       
+       * src/vm/jit/optimizing/lifetimes.h: Likewise.
+       
+       * src/vm/jit/optimizing/lsra.c: Likewise.
+       
+       * src/vm/jit/optimizing/lsra.h: Likewise.
+       
+       * src/vm/jit/optimizing/ssa.c: Likewise.
+       
+       * src/vm/jit/optimizing/ssa.h: Likewise.
+
+2006-08-16 11:18  christian
+
+       * src/vm/jit/optimizing/ssa.c (ssa_print_phi): Printing now phi
+       functions correctly for debug output.
+       
+       * src/vm/jit/optimizing/ssa.c (dead_code_elimination): No removal of
+       potential exception throwing instructions (PEI) anymore.
+       
+       * src/vm/jit/jit.h: Renamed op_needs_saved[] to op_data[][NEEDS_SAVED]
+       and introduced the new op_data[][PEI].
+       
+       * src/vm/jit/jit.c (jit_init): Added init of op_data[NEEDS_SAVED|PEI]
+       
+       * src/vm/jit/optimizing/lifetimes.c (LifeOutAtStatement): Renamed
+       op_needs_saved[] to the new op_data[][NEEDS_SAVED]
+
+2006-08-15 14:54  christian
+
+       * src/vm/jit/optimizing/lifetimes.c (LifenessAnalysis): Ignore
+       variables used in phi functions, if they define itself (x =
+       phi(...,x,...)).
+       
+       * src/vm/jit/i386/codegen.c (codegen): Bugfix in code created for
+       ICMD_IINC for SSA.
+       
+       * src/vm/jit/show.c (new_show_method): Regard ENABLE_SSA like
+       ENABLE_LSRA to suppress output of interfaces.
+       
+       * src/vm/jit/show.c (show_method): likewise.
+       
+       * src/vm/jit/show.c (show_icmd): Regard special operand format for
+       ICMD_IINC with SSA.
+
+2006-08-14 18:14  christian
+
+       * src/vm/jit/optimizing/: New directory for optimizing compiler (SSA
+       by now - does not work by now, code merging with svn head introduced
+       some hazardous faults).
+       
+       * src/vm/jit/optimizing/dominators.c: Computation of dominators and
+       domination frontier for SSA.
+       
+       * src/vm/jit/optimizing/dominators.h: Include file for dominators.c.
+       
+       * src/vm/jit/optimizing/graph.c: CFG functions needed for SSA.
+       
+       * src/vm/jit/optimizing/graph.h: Include file for graph.c
+       
+       * src/vm/jit/optimizing/lifetimes.c: Scanning lifetimes for SSA.
+       
+       * src/vm/jit/optimizing/lifetimes.h: Include file for lifetimes.c
+       
+       * src/vm/jit/optimizing/lsra.c: LSRA based on SSA.
+       
+       * src/vm/jit/optimizing/lsra.h: Include file for lsra.c.
+       
+       * src/vm/jit/optimizing/Makefile.am: New Makefile.am for this
+       directory.
+       
+       * src/vm/jit/optimizing/ssa.c: Computation of SSA form.
+       
+       * src/vm/jit/optimizing/ssa.h: Include File for ssa.c.
+
+2006-08-14 18:10  christian
+
+       * src/vm/jit/optimizing: New directory
+
+2006-08-14 17:50  christian
+
+       * src/vm/jit/optimizing/: New directory for optimizing compiler (SSA
+       by now - does not work by now, code merging with svn head introduced
+       some hazardous faults).
+       
+       * src/vm/jit/optimizing/dominators.c: Computation of dominators and
+       domination frontier for SSA.
+       
+       * src/vm/jit/optimizing/dominators.h: Include file for dominators.c.
+       
+       * src/vm/jit/optimizing/graph.c: CFG functions needed for SSA.
+       
+       * src/vm/jit/optimizing/graph.h: Include file for graph.c
+       
+       * src/vm/jit/optimizing/lifetimes.c: Scanning lifetimes for SSA.
+       
+       * src/vm/jit/optimizing/lifetimes.h: Include file for lifetimes.c
+       
+       * src/vm/jit/optimizing/lsra.c: LSRA based on SSA.
+       
+       * src/vm/jit/optimizing/lsra.h: Include file for lsra.c.
+       
+       * src/vm/jit/optimizing/Makefile.am: New Makefile.am for this
+       directory.
+       
+       * src/vm/jit/optimizing/ssa.c: Computation of SSA form.
+       
+       * src/vm/jit/optimizing/ssa.h: Include File for ssa.c.
+       
+       * src/vm/jit/allocator/lsra.c: Moved from src/vm/jit. Quite complete
+       code change (including: no more allocation of unused reserved
+       registers, possibility of exact lifetime analysis, removal of old
+       lifetime test functions).
+       
+       * src/vm/jit/allocator/lsra.h: Moved from src/vm/jit.
+       
+       * src/vm/jit/allocator/liveness.c: New File. Exact lifetime analysis
+       for LSRA.
+       
+       * src/vm/jit/allocator/liveness.h: New File. Include File for
+       liveness.c. The #define LV enables by now the exact liveness analysis.
+       
+       * src/vm/jit/allocator/Makefile.am: Adopted for new/moved files in
+       src/vm/jit/allocator.
+       
+       * sc/vm/jit/Makefile.am: Adopted for above new/moved files.
+       
+       * configure.ac: Introduced ENABLE_SSA: new option --enable-ssa.
+       Changes for ENABLE_LSRA (--enable-lsra). New Makefile in
+       src/vm/jit/optimizing added.
+       
+       * src/vm/jit/allocator/simplereg.c (reg_make_statistics): Support for
+       ENABLE_SSA for statistics.
+       
+       * src/vm/options.h: opt_lsra is used with ENABLE_SSA like with
+       ENABLE_LSRA.
+       
+       * src/vm/options.c: opt_lsra is used with ENABLE_SSA like with
+       ENABLE_LSRA.
+       
+       * src/vm/global.h: New struct imm for union imm_union to get another
+       operand for IINC in combination with SSA added.
+       
+       * src/vm/vm.c: opt_lsra and the option -lsra is used with ENABLE_SSA
+       like with ENABLE_LSRA.
+       
+       * src/vm/jit/stack.c (stack_analyse): No stack element lifetimes
+       counting anymore for lsra/ssa (m->maxlifetimes).
+       
+       * src/vm/jit/stack.h: No stack lifetime counting anymore for lsra/ssa
+       (m->maxlifetimes).
+       
+       * src/vm/jit/i386/codegen.c: Support for ENABLE_SSA added.
+       
+       * src/vm/jit/i386/codegen.c (codegen_insert_phi_moves): New function
+       to insert phi moves for SSA at the end of Basic Blocks.
+       
+       * src/vm/jit/i386/codegen.c (cg_move): New function to create the
+       instructions for the actual move for codegen_insert_phi_moves).
+       
+       * src/vm/jit/i386/codegen.c (codegen): Logic and calls to use
+       codegen_insert_phi_moves for SSA added. With SSA for parameters in
+       memory this memory positions cannot be reused to avoid copying. Checks
+       added to prevent moves to or from stackslots removed by the dead code
+       elimination. Special handling for the new ICMD_IINC operand format
+       used by SSA added.
+       
+       * src/vm/jit/i386/codegen.h (M_COPY): Checks added to prevent moves to
+       or from stackslots removed by the dead code elimination. Original
+       M_COPY renamed to _M_COPY.
+       
+       * src/vm/jit/jit.c (jit_init): Populate op_needs_saved. Regard
+       ENABLE_SSA.
+       
+       * src/vm/jit/jit.h: Support for ENABLE_SSA added. Added an array which
+       shows which ICMD's need a SAVEDVAR for SSA and the new LSRA with exact
+       liveness analysis. src/toolbox/Makefile.am: Changed to include the
+       following new files:
+       
+       * src/toolbox/bitvector.c: Bitvector implementation for SSA.
+       
+       * src/toolbox/bitvector.h: Include file for bitvector.c.
+       
+       * src/toolbox/worklist.c: Worklist implementation for SSA.
+       
+       * src/toolbox/worklist.h: Include file for worklist.c.
+
+2006-08-14 10:59  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_findmethod): Renamed to
+       codegen_get_pv_from_pc.
+       
+       * src/vm/jit/codegen-common.h (codegen_findmethod): Likewise.
+       (md_codegen_findmethod): Renamed to md_codegen_get_pv_from_pc.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_create_stackframeinfo):
+       Likewise.
+       (stacktrace_create_inline_stackframeinfo): Likewise.
+       (stacktrace_create_extern_stackframe): Likewise.
+       (stacktrace_create): Likewise.
+       
+       * src/vm/jit/alpha/md.c (md_codegen_findmethod): Renamed to
+       md_codegen_get_pv_from_pc.
+       * src/vm/jit/i386/md.c: Likewise.
+       * src/vm/jit/mips/md.c: Likewise.
+       * src/vm/jit/powerpc/md.c: Likewise.
+       * src/vm/jit/powerpc64/md.c: Likewise.
+       * src/vm/jit/sparc64/md.c: Likewise.
+       * src/vm/jit/x86_64/md.c: Likewise.
+       
+       * src/vm/jit/i386/asmpart.S: Likewise.
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
+       * src/vm/jit/intrp/asmpart.c: Likewise.
+       
+       * src/vm/jit/i386/patcher.c (patcher_wrapper): Fixed comment.
+       * src/vm/jit/x86_64/patcher.c: Likewise.
+
+2006-08-11 13:11  tbfg
+
+       * src/vm/jit/powerpc64/linux/md-abi.h: LA_WORD_SIZE renamed to
+       LA_SIZE_IN_POINTERS, value fixed
+       * src/vm/jit/powerpc64/linux/md-abi.c: LA_SIZE_IN_POINTERS rename
+       * src/vm/jit/powerpc64/linux/md.c (md_codegen_findmethod): PPC64 uses
+       r14
+       instead of r13 (as PPC) for PV so opcodes changed.
+       * src/vm/jit/powerpc64/asmpart.S: Using LA_SIZE instead of
+       LA_WORD_SIZE,
+       LA_SIZE_IN_POINTERS for SAVE_*_REGISTERS macros only.
+
+2006-08-11 10:13  twisti
+
+       * src/vm/jit/powerpc/linux/md-abi.h (LA_WORD_SIZE): Renamed to
+       LA_SIZE_IN_POINTERS.
+       
+       * src/vm/jit/powerpc/darwin/md-abi.h (LA_WORD_SIZE): Likewise.
+       
+       * src/vm/jit/powerpc/linux/md-abi.c (md_param_alloc): Use
+       LA_SIZE_IN_POINTERS instead of LA_WORD_SIZE.
+       
+       * src/vm/jit/powerpc/darwin/md-abi.c (md_param_alloc): Likewise.
+       
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Likewise.
+       (stack_analyse): Likewise.
+       
+       * src/vm/jit/reg.c (reg_setup): Likewise.
+
+2006-08-10 19:45  tbfg
+
+       * src/vm/jit/powerpc64/linux/md-abi.h: fixed linkage area defines for
+       64bit abi.
+       * src/vm/jit/powerpc64/linux/md-asm.h: fixed register name defines
+       and
+       SAVE/RESTORE macros.
+       * src/vm/jit/powerpc64/asmpart.S (asm_vm_call_method): fixed no
+       argument method
+       call path, coming back to C now.
+
+2006-08-10 09:10  twisti
+
+       * src/boehm-gc/darwin_stop_world.c: Updated to version 6.8.
+       * src/boehm-gc/doc/README.changes: Likewise.
+       * src/boehm-gc/doc/README: Likewise.
+       * src/boehm-gc/include/gc.h: Likewise.
+       * src/boehm-gc/include/gc_config_macros.h: Likewise.
+       * src/boehm-gc/include/private/gcconfig.h: Likewise.
+       * src/boehm-gc/configure.in: Likewise.
+       * src/boehm-gc/version.h: Likewise.
+       * src/boehm-gc/malloc.c: Likewise.
+       * src/boehm-gc/pthread_support.c: Likewise.
+       * src/boehm-gc/os_dep.c: Likewise.
+       * src/boehm-gc/dyn_load.c: Likewise.
+
+2006-08-09 15:11  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Fixed ICMD_LMUL bug.
+
+2006-08-09 15:10  twisti
+
+       * src/vm/jit/i386/emit.c (emit_load_s1): Coding style changes.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_load_s1_low): Likewise.
+       (emit_load_s2_low): Likewise.
+       (emit_load_s1_high): Likewise.
+       (emit_store): Likewise.
+
+2006-08-08 19:57  edwin
+
+       * src/vm/jit/jit.c (stackreq): Initialize this table statically.
+       (jit_init): Removed dynamic initialization of stackreq table.
+
+2006-08-08 19:23  edwin
+
+       * src/native/vm/java_lang_reflect_Method.c
+       (Java_java_lang_reflect_Method_invokeNative): Removed unused
+       variables.
+       
+       * src/native/vm/java_lang_reflect_Constructor.c (vm/access.h):
+       Include to fix warning.
+
+2006-08-08 19:18  edwin
+
+       * src/native/vm/java_lang_reflect_Field.c (cacao_get_field_address):
+       Use access_check_caller.
+
+2006-08-08 16:21  edwin
+
+       * src/vm/access.h, src/vm/access.c (access_check_caller): Added.
+       
+       * src/native/vm/java_lang_reflect_Method.c
+       (Java_java_lang_reflect_Method_invokeNative): Use access_check_caller
+       for the access check.
+       
+       * src/native/vm/java_lang_reflect_Constructor.c
+       (Java_java_lang_reflect_Constructor_constructNative): Likewise. This
+       should fix the mauve test case
+       java.lang.reflect.AccessibleObject.security.
+       
+       * src/cacaoh/headers.c (stacktrace_getClassContext): Added dummy
+       implementation.
+
+2006-08-08 14:24  twisti
+
+       * src/vm/jit/parse.h (new_block_insert): Renamed to
+       NEW_MARK_BASICBLOCK.
+       (block_insert): Renamed to MARK_BASICBLOCK.
+       
+       * src/vm/jit/parse.c (new_fillextable): Likewise.
+       (fillextable): Likewise.
+       (new_parse): Likewise.
+       (parse): Likewise.
+
+2006-08-08 13:25  twisti
+
+       * src/vm/jit/stack.c (new_stack_analyse): Replaced debug_nr with nr.
+       
+       * src/vm/jit/verify/typecheck.c (typestate_reach): Likewise.
+       (verify_basic_block): Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       * src/vm/jit/powerpc/codegen.c (codegen): Likewise.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+
+2006-08-08 13:03  twisti
+
+       * src/vm/jit/cfg.c (cfg_insert_predecessors): New method.
+       (cfg_build): Use cfg_insert_predecessors for TABLESWITCH and
+       LOOKUPSWITCH.
+
+2006-08-08 13:01  edwin
+
+       * src/vm/resolve.h, src/vm/resolve.c (new_resolve_method_lazy):
+       Removed curstack parameter.
+       (new_resolve_field_lazy): Likewise.
+       (new_constrain_unresolved_field): New function.
+       (new_constrain_unresolved_method): Likewise.
+       
+       * src/vm/jit/parse.c (new_parse): Use new_resolve_field_lazy and
+       new_resolve_method_lazy.
+
+2006-08-08 12:56  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): For INVOKE* instructions,
+       store the live-through stack slots as additional arguments after
+       the live-in slots. These live-through slots are needed by the
+       verifier and by on-stack replacement in order to create a replacement
+       point at the call site.
+       NOTE: Currently the live-through slots are also stored for builtins.
+       This should change in the final version.
+
+2006-08-08 12:46  edwin
+
+       * src/vm/jit/jit.h (NEW_INSTRUCTION_IS_RESOLVED): New macro.
+       (NEW_INSTRUCTION_IS_UNRESOLVED): Likewise.
+       (NEW_INSTRUCTION_MUST_CHECK): Likewise.
+
+2006-08-08 12:45  twisti
+
+       * src/vm/jit/cfg.h (CFG_UNKNOWN_PREDECESSORS): Defined.
+       
+       * src/vm/jit/stack.c (vm/jit/cfg.h): Added.
+       (new_stack_analyse): Set predecessorcount for EXH blocks to
+       CFG_UNKNOWN_PREDECESSORS.
+       (stack_analyse): Likewise.
+       
+       * src/vm/jit/show.c (new_show_basicblock): Print predecessor block
+       numbers.
+       (show_basicblock): Likewise.
+
+2006-08-07 16:10  twisti
+
+       * src/vm/jit/reorder.c (reorder): Iterate to m->basicblockcount + 1,
+       so we kind of set the last basic block too.
+
+2006-08-07 15:30  twisti
+
+       * src/vm/jit/jit.h (basicblock): Renamed debug_nr to nr.
+       (BASICBLOCK_INIT): Likewise.
+       
+       * src/vm/jit/reorder.c (reorder_place_next_unplaced_block): Likewise.
+       (reorder): Likewise.
+       
+       * src/vm/jit/show.c (new_show_method): Likewise.
+       (show_method): Likewise.
+       (new_show_basicblock): Likewise.
+       (show_basicblock): Likewise.
+       (SHOW_TARGET): Likewise.
+       (show_icmd): Likewise.
+       
+       * src/vm/jit/ifconv/ifconv.c (check): Likewise.
+       
+       * src/vm/jit/loop/analyze.c (insert_exception): Likewise.
+       (copy_handler): Likewise.
+       (create_static_checks): Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Likewise.
+       (typecheck_reset_flags): Likewise.
+       (typecheck): Likewise.
+       
+       * src/vm/jit/verify/typeinfo.c (typeinfo_print): Likewise.
+       (typeinfo_print_short): Likewise.
+       (typeinfo_print_stacktype): Likewise.
+
+2006-08-07 15:12  tbfg
+
+       * src/vm/jit/powerpc64/asmpart.S (asm_vm_call_method, asm_cacheflush):
+       ppc64 abi needs function descriptor for function called from other
+       relocateable modules and uses direct calling for module intern calls.
+
+2006-08-07 11:15  twisti
+
+       * src/vm/jit/reorder.c (reorder): #ifdef debug output.
+
+2006-08-07 11:12  twisti
+
+       * src/vm/jit/Makefile.am (libjit_la_SOURCES): Add cfg.[ch] and
+       reorder.[ch] for debugging.
+
+2006-08-07 11:10  twisti
+
+       * src/vm/jit/jit.c (vm/jit/cfg.h): Added.
+       (vm/jit/reorder.h): Likewise.
+       (jit_recompile): Set JITDATA_FLAG_REORDER flag.
+       (jit_compile_intern): Call cfg_build and reorder.
+       (jit_complement_condition): New function.
+       
+       * src/vm/jit/jit.h (basicblock): Changed type of predecessors and
+       successors.
+       (jit_complement_condition): Added.
+       
+       * src/vm/jit/cfg.c (cfg_allocate_predecessors): New method.
+       (cfg_allocate_successors): Likewise.
+       (cfg_build): Finished implementation.
+       
+       * src/vm/jit/reorder.c (reorder_place_next_unplaced_block): New
+       function.
+       (reorder): Improved, still not working.
+       
+       * src/vm/jit/show.c (new_show_method): Walk the basic block chain to
+       find the last block, as this may change.
+       (show_method): Likewise.
+
+2006-08-04 14:50  twisti
+
+       * src/vm/jit/reorder.c: New file.
+       * src/vm/jit/reorder.h: Likewise.
+
+2006-08-04 14:42  twisti
+
+       * src/vm/jit/parse.c (new_parse): MZERO basicblock array.
+       (parse): Likewise.
+       
+       * src/vm/jit/jit.h (JITDATA_FLAG_REORDER): Added.
+       (JITDATA_HAS_FLAG_REORDER): Likewise.
+       (basicblock): Removed pre_count and added predecessorcount,
+       successorcount, predecessors, successors.
+       (BASICBLOCK_INIT): Don't zero fields.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Renamed pre_count to
+       predecessorcount.
+       (stack_analyse): Likewise and removed predecessor count calculation.
+       
+       * src/vm/jit/show.c (new_show_basicblock): Likewise.
+       (show_basicblock): Likewise.
+       
+       * src/vm/jit/ifconv/ifconv.c (ifconv_static): Likewise.
+
+2006-08-04 14:27  twisti
+
+       * src/vm/jit/cfg.c: New file.
+       * src/vm/jit/cfg.h: Likewise.
+
+2006-08-04 14:10  twisti
+
+       * src/vm/options.c (opt_foo): Added. This is a development option.
+       * src/vm/options.h (opt_foo): Likewise.
+       
+       * src/vm/vm.c (vm_create): Added OPT_FOO.
+
+2006-08-01 20:38  twisti
+
+       * autogen.sh: Recognize autoconf 2.60.
+
+2006-08-01 15:51  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_createnativestub): Set
+       JITDATA_FLAG_INSTRUMENT for opt_prof.
+
+2006-08-01 15:08  twisti
+
+       * src/vm/jit/recompile.c (recompile_thread): Check return value of
+       jit_recompile and print the exception in error case.
+
+2006-08-01 13:10  twisti
+
+       * src/vm/jit/parse.c (new_parse): Replaced opt_verify with
+       JITDATA_HAS_FLAG_VERIFY, because on recompilation we don't turn
+       verifying on.
+
+2006-07-31 20:42  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Load address for INVOKESTATIC
+       from data segment and pass the displacement to the patcher.
+       
+       * src/vm/jit/x86_64/patcher.c (patcher_get_putstatic): Use
+       displacement from patcher, not from the instruction.
+       (patcher_builtin_multianewarray): Don't patch BUILTIN_multianewarray
+       address, it's not required.
+       (patcher_invokestatic_special): Use displacement passed and patch the
+       data segment.
+       
+       * src/vm/jit/x86_64/md.c (md_stacktrace_get_returnaddress): Changed to
+       new INVOKESTATIC calling sequence.
+
+2006-07-31 16:30  twisti
+
+       * src/native/native.c
+       (native/include/java_lang_management_VMManagementFactory.h): Added.
+       (dummynativetable): Added VMManagementFactory methods.
+
+2006-07-31 16:26  twisti
+
+       * src/native/include/.cvsignore: Added
+       java_lang_management_VMManagementFactory.h.
+
+2006-07-31 16:25  twisti
+
+       * src/native/vm/java_lang_management_VMManagementFactory.c: New file.
+       
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       java_lang_management_VMManagementFactory.c.
+       
+       * src/native/include/Makefile.am
+       (ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADERS): Added
+       java_lang_management_VMManagementFactory.h.
+
+2006-07-31 15:35  twisti
+
+       * src/native/include/Makefile.am (DO_HEADER_FILES): Do not depend on
+       CACAO_VM_ZIP.
+
+2006-07-31 15:27  twisti
+
+       * src/native/include/.cvsignore: Added
+       gnu_java_lang_management_VMThreadMXBeanImpl.h and
+       java_lang_management_ThreadInfo.h.
+
+2006-07-31 15:26  twisti
+
+       * src/native/vm/gnu_java_lang_management_VMThreadMXBeanImpl.c: New
+       file.
+       
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       gnu_java_lang_management_VMThreadMXBeanImpl.c.
+       
+       * src/native/include/Makefile.am
+       (ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADERS): Added
+       gnu_java_lang_management_VMThreadMXBeanImpl.h and
+       java_lang_management_ThreadInfo.h.
+       (VM_ZIP): Removed.
+       
+       * src/native/jni.h (_Jv_JavaVM): Added total_started_thread_count.
+       
+       * src/threads/native/threads.c (threads_startup_thread): Count
+       total_started_thread_count.
+       
+       * src/cacao/cacao.c (main): Likewise.
+       
+       * src/cacaoh/headers.c (_Jv_jvm): Added.
+
+2006-07-31 14:43  twisti
+
+       * src/native/include: Updated ignore property.
+
+2006-07-31 14:35  twisti
+
+       * src/native/vm/gnu_java_lang_management_VMClassLoadingMXBeanImpl.c:
+       New file.
+       
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       gnu_java_lang_management_VMClassLoadingMXBeanImpl.c.
+       
+       * src/native/include/Makefile.am
+       (ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADER_FILES): Added
+       gnu_java_lang_management_VMClassLoadingMXBeanImpl.h.
+       
+       * src/native/include/.cvsignore: Likewise.
+       
+       * src/native/jni.h (_Jv_JavaVM): Added
+       Java_gnu_java_lang_management_VMClassLoadingMXBeanImpl_verbose.
+       
+       * src/native/native.c
+       (native/include/gnu_java_lang_management_VMClassLoadingMXBeanImpl.h):
+       Added.
+       (native/include/gnu_java_lang_management_VMMemoryMXBeanImpl.h):
+       Likewise.
+       (dummynativetable): Added VMClassLoadingMXBeanImpl and
+       VMMemoryMXBeanImpl functions.
+
+2006-07-31 14:21  twisti
+
+       * src/vm/classcache.c (classcache_number_of_loaded_classes): New
+       internal function.
+       (classcache_get_loaded_class_count): New function.
+       (classcache_jvmti_GetLoadedClasses): Renamed to
+       classcache_get_loaded_classes and reimplemented.
+       
+       * src/vm/classcache.h (classcache_get_loaded_class_count): Added.
+       (classcache_jvmti_GetLoadedClasses): Renamed to
+       classcache_get_loaded_classes.
+
+2006-07-31 12:29  twisti
+
+       * src/native/include/.cvsignore: Added
+       gnu_java_lang_management_VMMemoryMXBeanImpl.h and
+       java_lang_management_MemoryUsage.h.
+
+2006-07-31 12:28  twisti
+
+       *
+       src/lib/vm/reference/gnu/java/lang/management/VMMemoryMXBeanImpl.java:
+       New file.
+       
+       * src/lib/Makefile.am (VM_JAVA_FILES): Added
+       gnu/java/lang/management/VMMemoryMXBeanImpl.java.
+       (VM_CLASS_FILES): Likewise.
+       
+       * src/native/include/Makefile.am
+       (ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADERS): Added
+       gnu_java_lang_management_VMMemoryMXBeanImpl.h and
+       java_lang_management_MemoryUsage.h.
+       
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       gnu_java_lang_management_VMMemoryMXBeanImpl.c.
+       
+       * src/native/vm/gnu_java_lang_management_VMMemoryMXBeanImpl.c
+       (vm/loader.h): Added.
+
+2006-07-31 12:25  twisti
+
+       * src/mm/boehm.c (gc_get_total_bytes): New function.
+       * src/mm/boehm.h (gc_get_total_bytes): Added.
+
+2006-07-31 12:17  twisti
+
+       * src/lib/vm/reference/java/lang/VMClassLoader.java: Merged GNU
+       Classpath changes.
+
+2006-07-31 12:15  twisti
+
+       * src/native/Makefile.am (nativetable.inc): Renamed VM_ZIP to
+       CACAO_VM_ZIP.
+
+2006-07-28 13:24  twisti
+
+       * src/vm/jit/dseg.c (desg_increase): Removed.
+       (dseg_finish): New function.
+       (dseg_find_s4): Likewise.
+       (dseg_find_s8): Likewise.
+       (dseg_find_float): Likewise.
+       (dseg_find_double): Likewise.
+       (dseg_find_address): Likewise.
+       (dseg_add_s4_intern): Likewise.
+       (dseg_add_unique_s4): Likewise.
+       (dseg_add_s4): Likewise.
+       (dseg_add_s8_intern): Likewise.
+       (dseg_add_unique_s8): Likewise.
+       (dseg_add_s8): Likewise.
+       (dseg_add_float_intern): Likewise.
+       (dseg_add_unique_float): Likewise.
+       (dseg_add_float): Likewise.
+       (dseg_add_double_intern): Likewise.
+       (dseg_add_unique_double): Likewise.
+       (dseg_add_double): Likewise.
+       (dseg_add_address_intern): Likewise.
+       (dseg_add_unique_address): Likewise.
+       (dseg_add_address): Likewise.
+       
+       * src/vm/jit/dseg.h (dsegentry): New structure.
+       
+       * src/vm/jit/codegen-common.c (codegen_setup): Don't allocate memory
+       for data segment.
+       (codegen_finish): Call dseg_finish.
+       
+       * src/vm/jit/codegen-common.h (codegendata): Removed dsegtop and
+       dsegsize, added dseg.
+       
+       * src/vm/jit/powerpc/codegen.c: Use new dseg function names.
+       
+       * src/vm/jit/powerpc/emit.c (vm/jit/dseg.h): Added.
+       (emit_iconst): Use new dseg function names.
+
+2006-07-28 10:54  twisti
+
+       * src/vm/jit/powerpc/linux/md-abi.h (REG_ITMP23_PACKED): New define.
+       * src/vm/jit/powerpc/darwin/md-abi.h (REG_ITMP23_PACKED): Likewise.
+
+2006-07-28 10:12  twisti
+
+       * src/vm/loader.c (load_class_from_classbuffer): Enable "Extra bytes
+       at the end of class file"-check, since we are something like Java 1.5.
+
+2006-07-26 15:20  twisti
+
+       * src/vm/jit/jit.h (INSTRUCTION_UNRESOLVED_CLASS): Defined.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): First changes for duplicate
+       patcher removal.
+
+2006-07-26 14:50  twisti
+
+       * src/vm/jit/show.c (new_show_method): Print stub length in method
+       header.
+       (show_method): Likewise.
+       
+       * src/vm/jit/codegen-common.c (codegen_addpatchref): Don't cast to
+       u1*.
+
+2006-07-26 13:27  twisti
+
+       * src/vm/jit/parse.h (code_get_u1, code_get_s1, code_get_u2)
+       (code_get_s2, code_get_u4, code_get_s4): Removed.
+       
+       * src/vm/suck.h (SUCK_BE_S1, SUCK_BE_S2, SUCK_BE_S4, SUCK_BE_S8):
+       Defined.
+       
+       * src/vm/jit/parse.c (vm/suck.h): Added.
+       (new_parse): Use SUCK_BE_* macros instead of code_get_*.
+       (parse): Likewise.
+
+2006-07-26 11:04  twisti
+
+       * src/vm/builtin.c (builtin_print_argument): #ifndef NDEBUG.
+
+2006-07-26 10:16  twisti
+
+       * src/vm/jit/powerpc/linux/md-asm.h: Added register defines.
+
+2006-07-26 10:06  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h: Added fr register defines again,
+       we need them.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_replacement_out): Use internal
+       register defines instead of numbers, as darwin does not understand it.
+       (asm_replacement_in): Likewise.
+
+2006-07-26 09:59  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h (mach/ppc/asm.h): Removed. Don't
+       define the fr register names.
+
+2006-07-26 09:43  twisti
+
+       * src/vm/jit/powerpc/linux/md-asm.h (asm/ppc_asm.h): Removed, it's not
+       an official kernel header.
+       
+       * src/vm/jit/powerpc/asmpart.S: Use CACAO internal register defines or
+       simple register numbers.
+
+2006-07-25 18:30  twisti
+
+       * src/vm/global.h (IS_FLT_TYPE): Added.
+       (IS_DBL_TYPE): Likewise.
+
+2006-07-25 16:00  twisti
+
+       * src/vm/jit/i386/md-emit.h (emit_ialu): Removed.
+       (emit_ialuconst): Likewise.
+       (emit_lalu): Likewise.
+       (emit_laluconst): Likewise.
+       (emit_ishift): Likewise.
+       (emit_ishiftconst): Likewise.
+       (emit_ifcc_iconst): Likewise.
+
+2006-07-25 15:57  twisti
+
+       * src/vm/jit/jit.h (ICMD_ELSE_ICONST): Removed.
+       (ICMD_IFEQ_ICONST): Likewise.
+       (ICMD_IFNE_ICONST): Likewise.
+       (ICMD_IFLT_ICONST): Likewise.
+       (ICMD_IFGE_ICONST): Likewise.
+       (ICMD_IFGT_ICONST): Likewise.
+       (ICMD_IFLE_ICONST): Likewise.
+       
+       * src/vm/jit/jit.c (icmd_names): Set removed ICMDs to UNDEF.
+       
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Removed ICMDs.
+       (allocate_scratch_registers): Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Likewise.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Likewise.
+       (stack_analyse): Likewise.
+       
+       * src/vm/jit/show.c (new_show_icmd): Likewise.
+       (show_icmd): Likewise.
+       
+       * src/vm/jit/alpha/arch.h (CONDITIONAL_LOADCONST): Removed.
+       * src/vm/jit/i386/arch.h: Likewise.
+       * src/vm/jit/mips/arch.h: Likewise.
+       * src/vm/jit/powerpc/arch.h: Likewise.
+       * src/vm/jit/powerpc64/arch.h: Likewise.
+       * src/vm/jit/sparc64/arch.h: Likewise.
+       * src/vm/jit/x86_64/arch.h: Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Removed ICMDs.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/sparc64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       
+       * src/vm/jit/i386/emit.c (emit_ifcc_iconst): Removed.
+
+2006-07-25 15:33  twisti
+
+       * src/vm/jit/x86_64/md.c (md_signal_handler_sigusr2): Fixed comment.
+       
+       * src/vm/jit/i386/linux/md-os.c (md_signal_handler_sigusr2): New
+       function.
+
+2006-07-25 13:52  twisti
+
+       * src/vm/jit/jit.h (TYPE_INT, TYPE_LNG, TYPE_FLT, TYPE_DBL, TYPE_ADR)
+       (IS_INT_LNG_TYPE, IS_FLT_DBL_TYPE, IS_2_WORD_TYPE)
+       (IS_INT_TYPE, IS_LNG_TYPE, IS_ADR_TYPE, IS_VOID_TYPE): Removed.
+       
+       * src/vm/global.h (TYPE_LONG, TYPE_FLOAT, TYPE_DOUBLE, TYPE_ADDRESS):
+       Removed.
+       (TYPE_INT, TYPE_LNG, TYPE_FLT, TYPE_DBL, TYPE_ADR)
+       (IS_INT_LNG_TYPE, IS_FLT_DBL_TYPE, IS_2_WORD_TYPE)
+       (IS_INT_TYPE, IS_LNG_TYPE, IS_ADR_TYPE, IS_VOID_TYPE): Added.
+       
+       * src/vm/loader.c (load_field): Use short TYPE_* defines.
+       (load_newly_created_array): Likewise.
+       
+       * src/vm/descriptor.c (descriptor_to_basic_type): Likewise.
+       (descriptor_typesize): Likewise.
+       (descriptor_to_typedesc): Likewise.
+       (descriptor_pool_parse_method_descriptor): Likewise.
+       (descriptor_debug_print_typedesc): Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (typestack_copy): Likewise.
+       (typestack_put_retaddr): Likewise.
+       (typestack_merge): Likewise.
+       (verify_basic_block): Likewise.
+       (verify_init_locals): Likewise.
+       
+       * src/vm/jit/verify/typeinfo.c (typevectorset_copymergedtype):
+       Likewise.
+       (typevectorset_store_retaddr): Likewise.
+       (typevectorset_store_twoword): Likewise.
+       (typevector_merge): Likewise.
+       (typeinfos_init_from_methoddesc): Likewise.
+       (typeinfo_test_parse): Likewise.
+       (typeinfo_print_type): Likewise.
+       (typeinfo_print_stacktype): Likewise.
+       
+       * src/vm/jit/verify/typeinfo.h (TYPE_IS_RETURNADDRESS): Likwise.
+       (TYPE_IS_REFERENCE): Likwise.
+       
+       * src/native/jni.c (_Jv_jni_vmargs_from_objectarray): Likewise.
+
+2006-07-25 12:33  twisti
+
+       * src/mm/memory.c (memory_cnew): When MAP_ANONYMOUS and MAP_ANON are
+       not defined, we use simply malloc. This is required for IRIX.
+
+2006-07-25 11:38  twisti
+
+       * configure.ac (AC_FUNC_MMAP): Added.
+       (AC_CHECK_FUNCS): Removed mprotect.
+       
+       * src/mm/memory.c (DEFAULT_CODEMEM_SIZE): Renamed to
+       DEFAULT_CODE_MEMORY_SIZE.
+       (codememlock): Renamed to lock_code_memory.
+       (codememptr): Renamed to code_memory.
+       (codememsize): Renamed to code_memory_size.
+       (pagesize): Added global static variable.
+       (memory_init): Use new variable names and set pagesize.
+       (memory_cnew): Don't use malloc/mprotect as this makes some problems
+       with selinux enabled distributions. Instead use mmap.
+
+2006-07-21 14:40  twisti
+
+       * src/boehm-gc/configure.in (MY_CFLAGS): Commented. We want to use the
+       top-level CFLAGS.
+       * src/boehm-gc/Makefile.am (LTCOMPILE): Likewise.
+       (LINK): Likewise.
+
+2006-07-21 14:15  twisti
+
+       * src/vm/jit/powerpc/linux/md-asm.h (__ASSEMBLY__): Defined. It's
+       required for <asm/ppc_asm.h> on my Debian system.
+
+2006-07-21 10:09  twisti
+
+       * src/vm/exceptions.c (new_verifyerror): Renamed to
+       exceptions_new_verifyerror.
+       (exceptions_throw_verifyerror): New function.
+       * src/vm/exceptions.h (new_verifyerror): Renamed to
+       exceptions_new_verifyerror.
+       (exceptions_throw_verifyerror): Added.
+       
+       * src/vm/resolve.c: Use exceptions_throw_verifyerror instead of
+       new_verifyerror.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/stack.c: Likewise.
+       * src/vm/jit/verify/typecheck.c: Likewise.
+       * src/vm/jit/verify/typeinfo.c: Likewise.
+       
+       * src/cacaoh/headers.c (new_verifyerror): Renamed to
+       exceptions_throw_verifyerror.
+
+2006-07-21 09:24  twisti
+
+       * src/vm/builtin.c (builtin_asm_get_exceptionptrptr): Removed.
+       * src/vm/builtin.h (builtin_get_exceptionptrptr): Likewise.
+
+2006-07-19 15:54  twisti
+
+       * src/vm/jit/mips/patcher.c (assert.h): Added.
+       (vm/exceptions.h): Added.
+       (vm/jit/methodheader.h): Likewise.
+       (patcher_wrapper): New function.
+       (patcher_get_putstatic): Removed monitor enter/exit, this is now done
+       by the wrapper.
+       (patcher_get_putfield): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/mips/asmpart.S (asm_call_jit_compiler): Use
+       exceptions_get_and_clear_exception.
+       (asm_abstractmethoderror): Added missing .ent/.end.
+       (asm_wrapper_patcher): Use patcher_wrapper.
+
+2006-07-19 13:38  twisti
+
+       * src/vm/jit/show.c (new_show_method): Print data length.
+       (show_method): Likewise.
+
+2006-07-19 13:07  tbfg
+
+       * src/vm/jit/powerpc64/* (global): changed all powerpc references to
+       powerpc64.
+
+2006-07-19 12:09  twisti
+
+       * src/vm/jit/show.c (new_show_method): Print method's code length.
+       (show_method): Likewise.
+
+2006-07-19 09:13  twisti
+
+       * src/vm/jit/alpha/patcher.c (patcher_wrapper): Patch back the
+       original instruction on successful returns.
+       (patcher_get_putstatic): Removed instruction patching.
+       (patcher_get_putfield): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+
+2006-07-18 18:38  tbfg
+
+       * src/vm/jit/powerpc64/linux/md-abi.c (md_return_alloc): isleafmethod
+       has been moved to jitdata.
+       
+       * src/vm/jjit/powerpc64/codegen.c (global): fixes for isleafmethod
+       changes, BUILTIN_monitor* renamed to LOCK_monitor_*
+       codegen_add_classcastexception_ref api changed.
+       
+       * src/vm/jit/powerpc64/asmpart.S (global): fixed R_PPC64_ADDR32
+       issues (32 bit adresses) all jump tables data types from
+       long to quad and synched with powerpc asmpart.S.
+
+2006-07-18 14:05  twisti
+
+       * src/mm/memory.c (memory_cfree): New function.
+       * src/mm/memory.h (CFREE): Define to memory_cfree.
+       (memory_cfree): Added.
+
+2006-07-18 11:09  twisti
+
+       * src/native/jvmti/Makefile.am (lib_LTLIBRARIES): Removed libjdwp.la.
+       (libjdwp_la_SOURCES): Removed.
+       
+       * src/native/jvmti/VMjdwp.c: Removed.
+       * src/native/jvmti/VMjdwp.h: Likewise.
+       
+       * src/native/vm/Makefile.am [ENABLE_JVMTI] (lib_LTLIBRARIES): Added
+       libjdwp.la.
+       (libjdwp_la_SOURCES): Added.
+       
+       * src/native/vm/VMFrame.c: Removed.
+       * src/native/vm/VMMethod.c: Likewise.
+       * src/native/vm/VMVirtualMachine.c: Likewise.
+       
+       * src/native/vm/VMjdwp.c: Added.
+       * src/native/vm/VMjdwp.h: Likewise.
+       * src/native/vm/gnu_classpath_jdwp_VMVirtualMachine.c: Likewise.
+       * src/native/vm/gnu_classpath_jdwp_VMFrame.c: Likewise.
+       * src/native/vm/gnu_classpath_jdwp_VMMethod.c: Likewise.
+
+2006-07-18 11:02  motse
+
+       * src/native/jvmti/VMjdwp.c (Breakpoint): adapt BreakpointEvent
+       signature to changed gnu classpath jdwp implementation.
+       (fillidcache): idem
+
+2006-07-18 08:56  twisti
+
+       * src/vm/builtin.c (builtin_trace_args): Added missing
+       TRACE_ARGS_NUM >= 4 case.
+
+2006-07-18 08:36  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h (asm_wrapper_patcher): Renamed to
+       asm_patcher_wrapper.
+
+2006-07-18 08:19  twisti
+
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added package
+       prefix to filenames.
+       
+       * src/native/vm/VMClassLoader.c: Removed.
+       * src/native/vm/VMThrowable.c: Likewise.
+       * src/native/vm/VMAccessController.c: Likewise.
+       * src/native/vm/VMString.c: Likewise.
+       * src/native/vm/VMObject.c: Likewise.
+       * src/native/vm/VMStackWalker.c: Likewise.
+       * src/native/vm/Field.c: Likewise.
+       * src/native/vm/VMSystem.c: Likewise.
+       * src/native/vm/VMSystemProperties.c: Likewise.
+       * src/native/vm/VMClass.c: Likewise.
+       * src/native/vm/VMThread.c: Likewise.
+       * src/native/vm/Method.c: Likewise.
+       * src/native/vm/VMProxy.c: Likewise.
+       * src/native/vm/Constructor.c: Likewise.
+       * src/native/vm/VMRuntime.c: Likewise.
+       
+       * src/native/vm/gnu_classpath_VMStackWalker.c: Added.
+       * src/native/vm/java_lang_VMSystem.c: Likewise.
+       * src/native/vm/java_lang_reflect_Method.c: Likewise.
+       * src/native/vm/java_lang_VMObject.c: Likewise.
+       * src/native/vm/java_lang_VMString.c: Likewise.
+       * src/native/vm/gnu_classpath_VMSystemProperties.c: Likewise.
+       * src/native/vm/java_lang_VMRuntime.c: Likewise.
+       * src/native/vm/java_lang_reflect_Field.c: Likewise.
+       * src/native/vm/java_lang_VMThrowable.c: Likewise.
+       * src/native/vm/java_lang_VMClassLoader.c: Likewise.
+       * src/native/vm/java_lang_VMClass.c: Likewise.
+       * src/native/vm/java_lang_VMThread.c: Likewise.
+       * src/native/vm/java_security_VMAccessController.c: Likewise.
+       * src/native/vm/java_lang_reflect_VMProxy.c: Likewise.
+       * src/native/vm/java_lang_reflect_Constructor.c: Likewise.
+
+2006-07-18 08:16  twisti
+
+       * src/native/vm/gnu_java_lang_management_VMMemoryMXBeanImpl.c: New
+       file.
+
+2006-07-18 08:14  twisti
+
+       * src/native/vm/gnu_java_lang_management_VMRuntimeMXBeanImpl.c
+       (vm/vm.h): Added.
+       (getStartTime): Implemented.
+
+2006-07-18 08:05  twisti
+
+       * src/native/vm/VMSystemProperties.c (preInit): Added
+       gnu.java.compiler.name property.
+
+2006-07-17 16:11  twisti
+
+       * src/vm/jit/jit.h (IS_VOID_TYPE): Added.
+       
+       * src/vm/builtin.c (builtin_print_argument): New function.
+       (builtin_trace_args): Rewritten. Uses builtin_trace_args and prints
+       arguments much better.
+       (builtin_displaymethodstop): Likewise.
+
+2006-07-17 15:14  twisti
+
+       * src/native/jvmti/.cvsignore (TAGS): Added.
+       (cacaodbgserver): Likewise.
+
+2006-07-17 15:11  twisti
+
+       * configure.ac (CACAO_LIBDIR): Added.
+       
+       * src/vm/classcache.c [ENABLE_JVMTI] (lock_hashtable_classcache):
+       Don't export it.
+       (classcache_jvmti_GetLoadedClasses): New method.
+       
+       * src/vm/classcache.h (CLASSCACHE_LOCK): Don't define it.
+       (CLASSCACHE_UNLOCK): Likewise.
+       (lock_hashtable_classcache): Don't export it.
+       (classcache_jvmti_GetLoadedClasses): Added.
+       
+       * src/vm/vm.c (vm_create): Use CACAO_LIBDIR in OPT_XRUNJDWP.
+       
+       * src/native/jvmti/jvmti.c (GetLoadedClasses): Use
+       classcache_jvmti_GetLoadedClasses.
+       (jvmti_agentload): Some code cleanup.
+
+2006-07-17 13:50  twisti
+
+       * src/native/include/include/Makefile.am (GEN_JVMTI_HEADER_FILES):
+       Reordered.
+       
+       * src/native/include/include/.cvsignore
+       (gnu_classpath_jdwp_VMMethod.h): Added.
+       (gnu_classpath_jdwp_util_VariableTable.h): Likewise.
+
+2006-07-17 11:48  twisti
+
+       * src/vm/jit/asmpart.h (asm_wrapper_patcher): Renamed to
+       asm_patcher_wrapper.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/alpha/asmpart.S (asm_wrapper_patcher): Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/i386/asmpart.S (asm_wrapper_patcher): Likewise.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/mips/asmpart.S (asm_wrapper_patcher): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/powerpc/asmpart.S (asm_wrapper_patcher): Likewise.
+       
+       * src/vm/jit/powerpc64/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/powerpc64/asmpart.S (asm_wrapper_patcher): Likewise.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+       (createnativestub): Likewise.
+       * src/vm/jit/x86_64/asmpart.S (asm_wrapper_patcher): Likewise.
+
+2006-07-17 11:09  twisti
+
+       * src/mm/boehm.c (heap_allocate): Changed signature. Some cleanup.
+       * src/mm/boehm.h (heap_allocate): Likewise.
+
+2006-07-17 10:00  twisti
+
+       * src/native/vm/VMRuntime.c (maxMemory): Comment fix.
+       (availableProcessors): Likewise.
+
+2006-07-17 09:47  twisti
+
+       * src/vm/jit/x86_64/patcher.c (vm/jit/x86_64/codegen.h): Added.
+       (vm/exceptions.h): Likewise.
+       (patcher_get_putstatic): Removed monitor enter/exit and return address
+       calculation, this is now done by the wrapper.
+       (patcher_get_putfield): Likewise.
+       (patcher_putfieldconst): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_class): Likewise.
+       (patcher_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_wrapper_patcher): Use
+       patcher_wrapper.
+
+2006-07-16 15:58  twisti
+
+       * src/native/jvmti/jvmti.c (DestroyRawMonitor): Don't pass
+       threadobject to lock_monitor_exit.
+       (RawMonitorEnter): Changed builtin_monitorenter to lock_monitor_enter.
+       (RawMonitorExit): Changed builtin_monitorexit to lock_monitor_exit.
+
+2006-07-16 15:38  twisti
+
+       * src/vm/jit/recompile.c (recompile_threadobject): Renamed to
+       recompile_vmthread and changed type to java_lang_VMThread.
+       (recompile_start_thread): Changed initialization of the thread
+       object. This fixes the not-exit bug.
+       
+       * src/vm/jit/profile/profile.c (profile_threadobject): Renamed to
+       profile_vmthread.
+       (profile_thread): Call codegen_get_pv_from_pc_nocheck instead of
+       codegen_findmethod.
+       (profile_start_thread): Changed initialization of the thread
+       object.
+       
+       * src/vm/jit/codegen-common.c (codegen_findmethod): Print a stacktrace
+       if no function was found and exit the VM.
+       (codegen_get_pv_from_pc_nocheck): New function. Like
+       codegen_findmethod, but can return NULL.
+       * src/vm/jit/codegen-common.h (codegen_get_pv_from_pc_nocheck): Added.
+
+2006-07-14 17:08  edwin
+
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Fixed dupslots indices for ICMD_SWAP.
+
+2006-07-14 17:07  edwin
+
+       * src/vm/jit/show.c (new_show_icmd): General handling of
+       INS_FLAG_UNRESOLVED.
+
+2006-07-14 17:06  edwin
+
+       * src/vm/jit/show.c (new_show_icmd): Fixed showing of LASTORECONST.
+
+2006-07-14 17:05  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Fixed propagation of
+       INS_FLAG_UNRESOLVED for PUTFIELDCONST/PUTSTATICCONST.
+
+2006-07-14 17:03  edwin
+
+       * src/vm/jit/stack.c (DUP_SLOT): Copy only TEMPVARs directly.
+
+2006-07-14 17:02  edwin
+
+       * src/vm/jit/parse.c (new_parse): No exception check for
+       MONITORENTER.
+
+2006-07-14 16:58  edwin
+
+       * src/vm/jit/show.c (new_show_stackvar): Show varkind and varnum for
+       variables with an invalid varkind.
+
+2006-07-14 16:56  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Use POPANY for DUP*
+       instructions, in order to set varkind correctly. The repeated
+       POPANY macros should probably be replaced by more efficient
+       code.
+
+2006-07-14 16:54  edwin
+
+       * src/vm/jit/allocator/simplereg.c (new_allocate_scratch_registers):
+       Fixed dupslots indices for ICMD_DUP_X1.
+
+2006-07-14 16:52  edwin
+
+       * src/vm/jit/parse.h (NEW_OP_STORE_ONEWORD): Store index in dst,
+       not in s1.
+       (NEW_OP_STORE_TWOWORD): Likewise.
+
+2006-07-13 11:54  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Use lock_monitor_enter/exit
+       instead of builtin_monitorenter/exit.
+
+2006-07-13 11:17  motse
+
+       * doc/handbook/jvmti.tex: documentation of the cacao jvmti
+       implementation added to the cacao handbook
+       * doc/handbook/arch.eps: idem
+       * doc/handbook/cacao.tex: idem
+       * doc/handbook/java.bib: idem
+       * doc/handbook/arm.tex: added bounding box for arm-double-memory.png
 
-2005-10-20 12:16  edwin
+2006-07-13 10:26  twisti
 
-       * src/vm/jit/: alpha/patcher.c, i386/patcher.c, intrp/patcher.c,
-         mips/patcher.c, powerpc/patcher.c, x86_64/patcher.c: include
-         vm/resolve.h in patchers
+       * src/vm/jit/mips/codegen.c (codegen): Use lock_monitor_enter/exit
+       instead of builtin_monitorenter/exit.
+       (createnativestub): Don't use builtin_get_exceptionptrptr, but
+       codegen_finish_native_call for exception check.
 
-2005-10-20 12:07  edwin
+2006-07-12 22:55  twisti
 
-       * src/vm/jit/: Makefile.am, alpha/patcher.c, i386/patcher.c,
-         intrp/patcher.c, mips/patcher.c, powerpc/patcher.c,
-         x86_64/codegen.c, x86_64/patcher.c: removed helper.h #includes
-         removed helper.[ch] from Makefile.am
+       * src/mm/memory.c (vm/vm.h): Added.
+       (memory_cnew): Replaced throw_cacao_exception_exit with vm_abort.
+       (dump_release): Likewise.
+       
+       * src/toolbox/util.c (_Jv_getcwd): Likewise.
 
-2005-10-20 11:59  edwin
+2006-07-12 22:12  twisti
 
-       * src/vm/jit/: helper.c, helper.h: removed helper.[ch]
+       * src/vm/jit/alpha/codegen.c (codegen): Use lock_monitor_enter/exit
+       instead of builtin_monitorenter/exit.
 
-2005-10-20 11:52  edwin
+2006-07-12 21:59  twisti
 
-       * src/vm/jit/: alpha/patcher.c, i386/patcher.c, intrp/patcher.c,
-         mips/patcher.c, powerpc/patcher.c, x86_64/patcher.c: replace
-         helper_* calls in the pathers with calls to resolve_*_eager
+       * src/vm/jit/i386/codegen.c (codegen): Use lock_monitor_enter/exit
+       instead of builtin_monitorenter/exit.
 
-2005-10-20 11:34  edwin
+2006-07-12 21:45  twisti
 
-       * src/vm/: linker.c, loader.c, resolve.c, resolve.h, jit/helper.c:
-         added resolve_*_eager functions reduced jit/helpers to bare minimum
-         in order to prepare removal cleaned up resolve.[ch], doc comments
-         are now in resolve.c
+       * src/vm/builtin.c (builtin_monitorenter): Removed.
+       (builtin_staticmonitorenter): Likewise.
+       (builtin_monitorexit): Likewise.
+       * src/vm/builtin.h: Likewise.
+       
+       * src/threads/native/lock.c (lock_monitor_enter): Don't pass
+       threadobject, get it in this function.
+       (lock_monitor_exit): Likewise.
+       
+       * src/threads/native/lock.h (lock_monitor_enter): Changed signature.
+       (lock_monitor_exit): Likewise.
+       (LOCK_monitor_enter): Defined.
+       (LOCK_monitor_exit): Likewise.
+       (LOCK_MONITOR_ENTER): Likewise.
+       (LOCK_MONITOR_EXIT): Likewise.
+       
+       * src/vm/suck.c: Use lock_monitor_enter/exit instead of
+       builtin_monitorenter/exit.
+       * src/vm/string.c: Likewise.
+       * src/vm/finalizer.c: Likewise.
+       * src/vm/classcache.c: Likewise.
+       * src/vm/initialize.c: Likewise.
+       * src/vm/jit/recompile.c: Likewise.
+       * src/vm/jit/show.c: Likewise.
+       * src/vm/jit/patcher.h: Likewise.
+       * src/vm/jit/parse.c: Likewise.
+       * src/vm/jit/x86_64/md.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/jit.c: Likewise.
+       * src/vm/builtintable.inc: Likewise.
+       * src/vm/exceptions.c: Likewise.
+       * src/vm/linker.c: Likewise.
+       * src/vm/utf8.c: Likewise.
+       * src/native/jni.c: Likewise.
+       * src/native/native.c: Likewise.
+       * src/toolbox/avl.c: Likewise.
+       * src/toolbox/list.c: Likewise.
+       * src/mm/memory.c: Likewise.
+       * src/cacaoh/headers.h: Likewise.
+
+2006-07-12 21:33  twisti
+
+       * src/threads/Makefile.am: Added path to header.
+
+2006-07-12 21:32  twisti
+
+       * src/vm/jit/Makefile.am (RECOMPILE_SOURCES): Added, compile recompile
+       only if threads are enabled.
+       
+       * src/vm/vm.c (vm_create): Call recompile_init only if threads are
+       enabled.
+
+2006-07-12 21:27  twisti
+
+       * src/threads/none/.cvsignore: New file.
+
+2006-07-12 21:26  twisti
+
+       * src/threads/none/Makefile.am: New file.
+       * src/threads/none/lock.h: Likewise.
+       * src/threads/Makefile.am (DIST_SUBDIRS): Added.
+       * configure.ac (AC_CONFIG_FILES): Added src/threads/none/Makefile.
+
+2006-07-12 20:27  twisti
+
+       * src/vm/jit/powerpc/darwin/md-abi.c (md_return_alloc): Use
+       jd->isleafmethod.
+
+2006-07-12 20:14  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Use jd->isleafmethod.
+       * src/vm/jit/powerpc/linux/md-abi.c (md_return_alloc): Likewise.
+
+2006-07-12 15:02  twisti
+
+       * src/vm/jit/recompile.c (recompile_replace_vftbl): #ifndef NDEBUG
+       debugging code.
+
+2006-07-12 14:55  twisti
+
+       * src/vm/jit/powerpc/linux/md-abi.c (vm/jit/abi.h): Added.
+       * src/vm/jit/powerpc/netbsd/md-abi.c: Likewise.
+       * src/vm/jit/powerpc/darwin/md-abi.c: Likewise.
+       * src/vm/jit/alpha/md-abi.c: Likewise.
+       * src/vm/jit/powerpc64/linux/md-abi.c: Likewise.
+       * src/vm/jit/i386/md-abi.c: Likewise.
+       
+       * src/vm/jit/sparc64/md-abi.c: Added GNU header.
+       (vm/jit/abi.h): Added.
+
+2006-07-12 14:53  twisti
+
+       * src/vm/jit/mips/codegen.c (codegen): Use jd->isleafmethod. Pass
+       register number to codegen_add_classcastexception_ref.
+       
+       * src/vm/jit/mips/md-abi.c (vm/jit/abi.h): Added.
+       (md_return_alloc): Changed signature.
+
+2006-07-12 14:42  edwin
+
+       * src/vm/jit/emit.h (emit_load): New function. This is a general
+       function for emitting loads that will keep its stackvar argument
+       after switching to the new instruction format. It will be used
+       for instructions with variable arguments, for example.
+       
+       * src/vm/jit/x86_64/emit.c (emit_load): New function.
+
+2006-07-12 13:52  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Use jd->isleafmethod.
+       * src/vm/jit/x86_64/md-abi.c (md_return_alloc): Likewise.
+
+2006-07-12 13:47  twisti
+
+       * src/vm/jit/code.c (code_get_stack_frame_size): Commented code, we
+       need another implementation.
+
+2006-07-11 22:23  twisti
+
+       * src/vm/jit/x86_64/asmpart.S (asm_call_jit_compiler): Use
+       exceptions_get_and_clear_exception.
+       (asm_wrapper_patcher): Likewise.
+
+2006-07-11 19:17  twisti
+
+       * src/vm/jit/i386/emit.c: Changed prefix from i386_ to emit_.
+       (vm/jit/emit.h): Added.
+       (emit_load_s1_low): New function.
+       (emit_load_s2_low): New function.
+       
+       * src/vm/jit/i386/md.c (md_get_method_patch_address): Changed
+       instruction byte.
+       
+       * src/vm/jit/i386/md-emit.h: Changed prefix from i386_ to emit_. Added
+       architecture defines.
+       
+       * src/vm/jit/i386/codegen.c Changed the code generator to produce
+       RISC-like code. These are way too much changes to name them.
+       
+       * src/vm/jit/i386/codegen.h: Removed a lot of architecture stuff.
+       
+       * src/vm/jit/i386/patcher.c (vm/exceptions.h): Added.
+       (patcher_wrapper): New function.
+       (patcher_get_putstatic): Removed monitor enter/exit and return address
+       calculation, this is now done by the wrapper.
+       
+       (patcher_getfield): Likewise.
+       (patcher_putfield): Likewise.
+       (patcher_putfieldconst): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_class): Likewise.
+       (patcher_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/i386/asmpart.S (asm_vm_call_method): Changed calling
+       sequence of asm_call_jit_compiler.
+       (asm_call_jit_compiler): Use jit_asm_compile.
+       (asm_wrapper_patcher): Use patcher_wrapper.
+
+2006-07-11 18:39  twisti
+
+       * src/vm/jit/emit.h [SIZEOF_VOID_P == 4] (emit_store_low): Added.
+       [SIZEOF_VOID_P == 4] (emit_store_high): Likewise.
+
+2006-07-11 18:35  twisti
+
+       * src/vm/jit/i386/md-asm.h (mptr): Added.
+
+2006-07-11 18:34  twisti
+
+       * src/vm/jit/i386/md-abi.h (REG_METHODPTR): Added.
+       (REG_ITMP12_PACKED): Likewise.
+       (REG_ITMP13_PACKED): Likewise.
+       (REG_ITMP23_PACKED): Likewise.
+       (REG_RESULT_PACKED): Likewise.
+       (EAX_EDX_PACKED): Likewise.
+
+2006-07-11 17:10  twisti
+
+       * src/vm/jit/alpha/patcher.c (patcher_wrapper): Added return address
+       calculation.
+       (patcher_get_putstatic): Removed return address calculation.
+       (patcher_get_putfield): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+
+2006-07-10 17:22  twisti
+
+       * configure.ac (disassembler): Disabled by default, made too many
+       problems.
+       
+       * src/vm/vm.c (toolbox/util.h): Added.
+       (vm_create): Save VM start time, #ifdef disassembler stuff.
+       
+       * src/native/jni.h (_Jv_JavaVM): Added starttime and
+       Java_gnu_java_lang_management_VMMemoryMXBeanImpl_verbose.
+       
+       * src/toolbox/util.c (config.h): Added.
+       (sys/time.h): Likewise.
+       (vm/vm.h): Likewise.
+       (util_current_time_millis): New function.
+       
+       * src/toolbox/util.h (config.h): Added.
+       (vm/types.h): Likewise.
+       (util_current_time_millis): New function.
+
+2006-07-10 14:47  twisti
+
+       * src/vm/jit/alpha/codegen.c codegen): CHECKCAST: Load s1 again before
+       exception check.
+
+2006-07-10 14:42  twisti
+
+       * src/vm/jit/i386/emit.c (i386_call_mem): Removed.
+
+2006-07-10 14:41  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): CHECKCAST: Load s1 again before
+       exception check.
+       (callgetexceptionptrptr): Removed.
+
+2006-07-10 14:22  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Use jd->isleafmethod.
+
+2006-07-10 14:20  twisti
+
+       * src/vm/jit/jit.c (jit_jitdata_new): New function.
+       (jit_compile): Use jit_jitdata_new.
+       (jit_recompile): Likewise.
+
+2006-07-10 14:11  twisti
+
+       * NEWS: Added ClassCastException and system assertions.
+       * src/vm/jit/stack.c (new_stack_analyse): Changed missing
+       jd->isleafmethod.
+       (stack_analyse): Likewise.
+
+2006-07-10 14:02  twisti
+
+       * src/vm/jit/code.h (codeinfo): Removed basicblocks and isleafmethod.
+       * src/vm/jit/jit.h (jitdata): Added isleafmethod.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Use jd->isleafmethod. Pass
+       register number to codegen_add_classcastexception_ref.
+       
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Use
+       jd->isleafmethod.
+       (local_regalloc): Likewise.
+       
+       * src/vm/jit/parse.c (new_parse): Likewise.
+       (parse): Likewise.
+       
+       * src/vm/jit/parse.h (NEW_OP_BUILTIN_CHECK_EXCEPTION): Likewise.
+       (NEW_OP_BUILTIN_NO_EXCEPTION): Likewise.
+       (NEW_OP_BUILTIN_ARITHMETIC): Likewise.
+       (BUILTIN): Likewise.
+
+2006-07-10 13:53  twisti
+
+       * src/vm/jit/powerpc64/linux/.cvsignore: New file.
+       * src/vm/jit/powerpc64/.cvsignore: Likewise.
+
+2006-07-10 13:51  twisti
+
+       * src/vm/jit/alpha/patcher.c (assert.h): Added.
+       (vm/exceptions.h): Added.
+       (vm/jit/methodheader.h): Likewise.
+       (patcher_wrapper): New function.
+       (patcher_get_putstatic): Removed monitor enter/exit, this is now done
+       by the wrapper.
+       (patcher_get_putfield): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_wrapper_patcher): Use
+       patcher_wrapper.
+       
+       * src/vm/jit/alpha/md-abi.c (md_return_alloc): Changed signature.
+
+2006-07-10 13:36  twisti
+
+       * src/vm/statistics.c (count_class_infos): Renamed to size_classinfo.
+       (size_fieldinfo): Added.
+       (size_methodinfo): Likewise.
+       (size_codeinfo): Likewise.
+       (print_stats): Print new variables.
+       
+       * src/vm/statistics.h (count_class_infos): Renamed to size_classinfo.
+       (size_fieldinfo): Added.
+       (size_methodinfo): Likewise.
+       (size_codeinfo): Likewise.
+       
+       * src/vm/class.c (class_create_classinfo): Renamed count_class_infos
+       to size_classinfo.
+       
+       * src/vm/loader.c (load_class_from_classbuffer): Likewise and use new
+       variables.
+       
+       * src/vm/jit/code.c [ENABLE_STATISTICS] (code_codeinfo_new): Add
+       codeinfo size.
+       [ENABLE_STATISTICS] (code_codeinfo_free): Subtract codeinfo size.
+
+2006-07-10 10:18  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Pass register number to
+       codegen_add_classcastexception_ref.
+
+2006-07-10 10:01  twisti
+
+       * src/lib/vm/reference/java/lang/VMClassLoader.java
+       (defaultAssertionStatus): Made native.
+       * src/native/vm/VMClassLoader.c (defaultAssertionStatus): Added.
+       
+       * src/native/jni.h (_Jv_JavaVM): Added
+       Java_java_lang_VMClassLoader_defaultAssertionStatus.
+       
+       * src/vm/vm.c (OPT_ESA): Added.
+       (OPT_DSA): Likewise.
+
+2006-07-08 22:07  twisti
+
+       * src/vm/jit/methodheader.h (ExEntrySize): Removed.
+       (ExStartPC): Likewise.
+       (ExEndPC): Likewise.
+       (ExHandlerPC): Likewise.
+       (ExCatchType): Likewise.
+
+2006-07-08 20:32  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Pass register number to
+       codegen_add_classcastexception_ref.
+
+2006-07-08 20:16  twisti
+
+       * src/vm/utf8.c (utf_java_lang_ClassCastException): Added.
+       (utf8_init): Initialize utf_java_lang_ClassCastException.
+       * src/vm/utf8.h (utf_java_lang_ClassCastException): Added.
+       
+       * src/vm/class.c (class_java_lang_ClassCastException): Added.
+       * src/vm/class.h (class_java_lang_ClassCastException): Likewise.
+       
+       * src/vm/exceptions.c (exceptions_init): Initialize
+       class_java_lang_ClassCastException.
+       
+       (new_classcastexception): Renamed to
+       exceptions_new_classcastexception, pass the failing class name to the
+       exception.
+       
+       * src/vm/exceptions.h (exceptionptr): Use thread object directly.
+       (new_classcastexception): Renamed to
+       exceptions_new_classcastexception.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_inline_classcastexception):
+       Changed signature.
+       * src/vm/jit/stacktrace.h (stacktrace_inline_classcastexception):
+       Likewise.
+       
+       * src/vm/jit/codegen-common.c (codegen_add_classcastexception_ref):
+       Likewise.
+       * src/vm/jit/codegen-common.h (codegen_add_classcastexception_ref):
+       Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Pass register number to
+       codegen_add_classcastexception_ref.
+
+2006-07-08 19:08  twisti
+
+       * src/vm/jit/i386/codegen.c (createnativestub): Don't use
+       builtin_get_exceptionptrptr, but codegen_finish_native_call for
+       exception check.
+
+2006-07-08 18:28  twisti
+
+       * configure.ac: Use ARCH_CFLAGS and OPT_CFLAGS instead of CFLAGS and
+       pass the flags via AM_CFLAGS to Makefile's.
+
+2006-07-08 14:20  twisti
+
+       * src/vm/jit/stacktrace.c (stacktrace_create): Added another code ==
+       NULL check.
+
+2006-07-06 22:52  twisti
+
+       * src/vm/jit/powerpc/darwin/md-abi.h (REG_ITMP12_PACKED): Added.
+       (REG_RESULT_PACKED): Added.
+       
+       * src/vm/jit/powerpc/darwin/md-asm.h (patcher_wrapper): Added.
+       
+       * src/vm/jit/powerpc/darwin/md-abi.c (md_return_alloc): Changed
+       signature.
+       
+       * src/vm/jit/powerpc/asmpart.S (L_patcher_wrapper$stub): Added.
+
+2006-07-06 14:19  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Use code variables.
+       (createnativestub): Likewise and don't use
+       builtin_get_exceptionptrptr, but codegen_finish_native_call for
+       exception check.
+       
+       * src/vm/jit/x86_64/codegen.h (PROFILE_CYCLE_START): Use code
+       variables.
+       (PROFILE_CYCLE_STOP): Likewise.
+       
+       * src/vm/jit/x86_64/md-abi.c (md_return_alloc): Changed signature.
+
+2006-07-06 14:10  tbfg
+
+       fixed isleafmethod is now part of code issues
+
+2006-07-06 13:59  tbfg
+
+       powerpc64 compiles
+       arch.h and md-abi.h: modified PV register assignment
+
+2006-07-06 12:42  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Use code->isleafmethod.
+       * src/vm/jit/i386/md-abi.c (md_return_alloc): Changed signature.
+
+2006-07-06 11:36  twisti
+
+       * src/vm/method.h (methodinfo): Removed isleafmethod, frequency,
+       bbfrequency and cycles.
+       
+       * src/vm/jit/powerpc/linux/md-abi.c (md_return_alloc): Changed
+       signature, use code->isleafmethod.
+       
+       * src/vm/jit/powerpc/linux/md-abi.h (REG_IFTMP): Changed from 0 to 16.
+       (REG_ITMP12_PACKED): Added.
+       (REG_RESULT_PACKED): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (vm/jit/methodheader.h): Added.
+       (codegen): Use code->isleafmethod, added instrumentation code.
+       
+       * src/vm/jit/abi.h (md_return_alloc): Added.
+       
+       * src/vm/jit/stack.c (new_stack_analyse): Use code->isleafmethod.
+       (stack_analyse): Likewise.
+       
+       * src/vm/jit/stack.h (md_return_alloc): Removed.
+       
+       * src/vm/jit/code.c (code_codeinfo_new): Don't memset as NEW already
+       does that, set isleafmethod to true.
+       
+       * src/vm/jit/code.h (codeinfo): Added basicblockcount and basicblocks.
+       
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Use
+       code->isleafmethod.
+       (local_regalloc): Likewise.
+       
+       * src/vm/jit/parse.c (new_parse): Likewise.
+       (parse): Likewise.
+       
+       * src/vm/jit/parse.h (NEW_OP_BUILTIN_CHECK_EXCEPTION): Likewise.
+       (NEW_OP_BUILTIN_NO_EXCEPTION): Likewise.
+       (NEW_OP_BUILTIN_ARITHMETIC): Likewise.
+       (BUILTIN): Likewise.
+       
+       * src/vm/jit/replace.c (replace_create_replacement_points): Don't set
+       code->isleafmethod, it's already set.
+       
+       * src/vm/jit/profile/profile.c (profile_printstats): Use code
+       variables.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Don't set m->isleafmethod.
+       
+       * src/cacaoh/headers.c: Use stackcount instead of isleafmethod.
+
+2006-07-05 11:48  twisti
+
+       * src/vm/descriptor.h: Removed space.
+
+2006-07-04 19:06  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h
+       (builtin_asm_get_exceptionptrptr): Removed.
+       (_no_threads_exceptionptr): Likewise.
+       (exceptions_get_and_clear_exception): Added.
+       
+       * src/vm/jit/powerpc/patcher.c (vm/exceptions.h): Added.
+       (vm/jit/methodheader.h): Likewise.
+       (patcher_wrapper): New function.
+       (patcher_get_putstatic): Removed monitor enter/exit, this is now done
+       by the wrapper.
+       (patcher_get_putfield): Likewise.
+       (patcher_aconst): Likewise.
+       (patcher_builtin_multianewarray): Likewise.
+       (patcher_builtin_arraycheckcast): Likewise.
+       (patcher_invokestatic_special): Likewise.
+       (patcher_invokevirtual): Likewise.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_flags): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+       (patcher_checkcast_class): Likewise.
+       (patcher_instanceof_class): Likewise.
+       (patcher_clinit): Likewise.
+       (patcher_athrow_areturn): Likewise.
+       (patcher_resolve_native): Likewise.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_call_jit_compiler): Use
+       exceptions_get_and_clear_exception.
+       (asm_wrapper_patcher): Likewise, use patcher_wrapper.
+       (L_builtin_asm_get_exceptionptrptr$stub): Removed.
+       (L_exceptions_get_and_clear_exception$stub): Added.
+       
+       * src/vm/jit/patcher.h (assert.h): Added.
+       (PATCHER_FLAG_PATCHED): Likewise.
+       (PATCHER_MONITORENTER): Added assert and return NULL.
+       (PATCHER_MARK_PATCHED_MONITOREXIT): Use PATCHER_FLAG_PATCHED.
+       (patcher_wrapper): Added.
+
+2006-07-04 18:24  twisti
+
+       * src/vm/jit/powerpc/codegen.c (createnativestub): Don't use
+       builtin_get_exceptionptrptr, but codegen_finish_native_call for
+       exception check.
+
+2006-07-04 16:56  twisti
+
+       * tests/regression/codepatching/test.java: Catch only thrown
+       exceptions.
+
+2006-07-04 16:05  twisti
+
+       * src/vm/jit/powerpc/darwin/md-os.c (md_signal_handler_sigusr2): New
+       function.
+       
+       * src/vm/jit/powerpc/darwin/md-asm.h (asm_handle_nullptr_exception):
+       Removed.
+       (asm_abstractmethoderror): Added.
+       (exceptions_asm_new_abstractmethoderror): Likewise.
+       * src/vm/jit/powerpc/asmpart.S
+       (L_exceptions_asm_new_abstractmethoderror$stub): Added.
+
+2006-07-04 16:02  twisti
+
+       * src/vm/jit/powerpc/darwin/md-abi.c (md_param_alloc): Code
+       beautifying.
+
+2006-07-03 14:06  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_call_jit_compiler): Use
+       exceptions_get_and_clear_exception.
+       (asm_wrapper_patcher): Likewise.
+
+2006-07-03 13:49  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_finish_native_call): Check for
+       exception and return it.
+       * src/vm/jit/codegen-common.h (codegen_finish_native_call): Changed
+       signature.
+       
+       * src/vm/jit/alpha/codegen.c (createnativestub): Don't use
+       builtin_get_exceptionptrptr, but codegen_finish_native_call for
+       exception check.
+       
+       * src/vm/jit/alpha/codegen.h (M_ASUB_IMM): Added.
+
+2006-07-03 13:46  twisti
+
+       * src/vm/jit/alpha/md-abi.c (nregdescint): Added comments.
+
+2006-07-03 13:45  twisti
+
+       * src/vm/jit/alpha/linux/md-os.c (md_signal_handler_sigusr2): New
+       method.
+       (thread_restartcriticalsection): Code cleanup.
+
+2006-07-03 12:06  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_abstractmethoderror): New method.
+
+2006-07-03 10:18  twisti
+
+       * src/vm/exceptions.c (exceptions_get_and_clear_exception): New
+       function.
+       * src/vm/exceptions.h (exceptions_get_and_clear_exception): Added.
+
+2006-07-02 18:31  twisti
+
+       * src/lib/vm/reference/gnu/java: Added.
+       * src/lib/vm/reference/gnu/java/lang: Likewise.
+       * src/lib/vm/reference/gnu/java/lang/management: Likewise.
+       *
+       src/lib/vm/reference/gnu/java/lang/management/VMRuntimeMXBeanImpl.java:
+       New file.
+       * src/lib/Makefile.am (VM_JAVA_FILES): Added
+       src/lib/vm/reference/gnu/java/lang/management/VMRuntimeMXBeanImpl.java.
+       (VM_CLASS_FILES): Added
+       classes/gnu/java/lang/management/VMRuntimeMXBeanImpl.class.
+       (vm.zip, nozip): Removed ecj check.
+       
+       * src/native/vm/gnu_java_lang_management_VMRuntimeMXBeanImpl.c: New
+       file.
+       * src/native/vm/Makefile.am (libnativevm_la_SOURCES): Added
+       gnu_java_lang_management_VMRuntimeMXBeanImpl.c.
+       
+       * src/native/include/.cvsignore: Added
+       gnu_java_lang_management_VMRuntimeMXBeanImpl.h.
+       * src/native/include/Makefile.am
+       (ADDITIONAL_IMPLEMENTED_VM_CLASSES_HEADER_FILES): Added
+       gnu_java_lang_management_VMRuntimeMXBeanImpl.h.
+       
+       * src/native/native.c
+       (native/include/gnu_java_lang_management_VMRuntimeMXBeanImpl.h):
+       Added.
+       (dummynativetable): Added
+       Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments
+       and Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime.
+
+2006-07-02 18:24  twisti
+
+       * m4/ac_prog_javac.m4 (AC_PROG_JAVAC): Add -1.5 option when using ecj.
+
+2006-07-02 11:00  twisti
+
+       * m4/ac_prog_javac.m4 (AC_PROG_JAVAC): Added bootclasspath to compiler
+       checks.
+
+2006-07-02 10:42  twisti
+
+       * src/vm/jit/mips/asmpart.S (asm_abstractmethoderror): New function.
+
+2006-06-28 22:47  twisti
+
+       * NEWS: Added new release.
+
+2006-06-28 22:38  twisti
+
+       * src/lib/vm/reference/java/lang/VMThread.java: Updated to GNU
+       Classpath version.
+
+2006-06-28 21:52  twisti
+
+       * src/vm/jit/powerpc/asmpart.S (asm_abstractmethoderror): New
+       function.
+
+2006-06-28 21:51  twisti
+
+       * src/vm/exceptions.c (exceptions_handle_exception): Typo.
+
+2006-06-28 21:46  twisti
+
+       * src/vm/linker.c (link_class_intern): Fixed compiler warning, added
+       comment.
+       (linker_addinterface): Fixed compiler warning.
+
+2006-06-28 21:44  edwin
+
+       * src/vm/linker.c (link_class_intern): Converted the check against
+       creating a stubroutine twice into an assert. The check became
+       obsolete because abstract methods do no longer get compiler stubs.
+
+2006-06-28 21:01  edwin
+
+       * src/vm/linker.c (link_class_intern): Do not generate compiler
+       stubs for abstract methods.
+
+2006-06-28 20:33  edwin
+
+       * src/vm/jit/intrp/codegen.c (intrp_codegen): Changed MethodPointer
+       in method header to CodeinfoPointer.
+       (intrp_createcompilerstub): Likewise.
+       (intrp_createnativestub): Likewise.
+       (createcalljavafunction): Likewise.
+       
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception):
+       Changed MethodPointer in method header to CodeinfoPointer.
+
+2006-06-28 19:43  twisti
+
+       * src/vm/exceptions.c (exceptions_asm_new_abstractmethoderror): New
+       function.
+       * src/vm/exceptions.h (exceptions_asm_new_abstractmethoderror): Added.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_abstractmethoderror): Use
+       exceptions_asm_new_abstractmethoderror.
+       * src/vm/jit/i386/asmpart.S (asm_abstractmethoderror): Likewise.
+
+2006-06-28 19:11  twisti
+
+       * src/vm/utf8.c (utf_java_lang_AbstractMethodError): Added.
+       (utf8_init): Initialize utf_java_lang_AbstractMethodError.
+       * src/vm/utf8.h (utf_java_lang_AbstractMethodError): Added.
+       
+       * src/vm/class.c (class_java_lang_AbstractMethodError): Added.
+       (class_resolveclassmethod): Use exceptions_throw_abstractmethoderror.
+       * src/vm/class.h (class_java_lang_AbstractMethodError): Added.
+       
+       * src/vm/exceptions.c (exceptions_init): Initialize
+       class_java_lang_AbstractMethodError.
+       (exceptions_new_abstractmethoderror): New function.
+       (exceptions_throw_abstractmethoderror): Likewise.
+       * src/vm/exceptions.h (exceptions_new_abstractmethoderror)
+       (exceptions_throw_abstractmethoderror): Added.
+       
+       * src/vm/resolve.c (resolve_method_invokespecial_lookup): Use
+       exceptions_throw_abstractmethoderror.
+       
+       * src/vm/jit/asmpart.h (asm_abstractmethoderror): Added.
+       
+       * src/vm/jit/i386/asmpart.S (asm_abstractmethoderror): New function.
+       * src/vm/jit/x86_64/asmpart.S (asm_abstractmethoderror): Likewise.
+       
+       * src/vm/linker.c (link_class_intern): Fill empty slots in vftbl with
+       the AbstractMethodError stub.
+       (linker_addinterface): Insert the AbstractMethodError stub if no
+       suitable method was found.
+       
+       * src/cacaoh/headers.c (asm_abstractmethoderror): Added.
+       (exceptions_throw_abstractmethoderror): Likewise.
+
+2006-06-28 17:05  twisti
+
+       * src/vm/jit/jit.h (JITDATA_FLAG_INSTRUMENT)
+       (JITDATA_HAS_FLAG_INSTRUMENT): Likewise.
+       (ICMD_OPCODE_MASK, ICMD_CONDITION_MASK): Removed.
+       
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers):
+       Removed ICMD_OPCODE_MASK.
+       
+       * src/vm/jit/show.c (show_icmd): Commented conditional stuff, maybe I
+       need it again someday.
+       
+       * src/vm/jit/x86_64/emit.c (emit_store): Likewise.
+       (emit_cmovxx): Likewise.
+       * src/vm/jit/codegen-common.c (codegen_reg_of_var): Likewise.
+
+2006-06-28 15:39  twisti
+
+       * src/vm/jit/x86_64/md.c [ENABLE_THREADS] (threads/native/threads.h):
+       Added.
+       (md_signal_handler_sigusr2): New function.
+       (thread_restartcriticalsection): Code cleanup.
+
+2006-06-28 08:24  twisti
+
+       * src/scripts/.cvsignore: Removed cacao, jarsigner, javac and keytool.
+       * src/scripts: Updated svn:ignore.
+       
+       * src/scripts/Makefile.am (bin_SCRIPTS): Removed jarsigner and
+       keytool, there are now wrappers in GNU Classpath.
+       
+       * src/scripts/javac.in: Removed.
+       * src/scripts/jarsigner.in: Likewise.
+       * src/scripts/cacao.in: Likewise.
+       * src/scripts/keytool.in: Likewise.
+       
+       * configure.ac (AC_CONFIG_FILES): Removed src/scripts/jarsigner and
+       src/scripts/keytool.
+
+2006-06-23 12:07  twisti
+
+       * src/vm/string.c (javastring_toutf): Check for NULL and return
+       utf_null.
+       (literalstring_u2): Replaced list_addfirst with list_add_first.
+       
+       * src/vm/builtin.h (BUILTIN_MONITOR_ENTER, BUILTIN_MONITOR_EXIT):
+       Defined.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Don't use
+       BUILTIN_staticmonitorenter, use JITDATA_HAS_FLAG_VERBOSECALL instead
+       of opt_verbosecall.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/code.c: Smaller changes.
+       
+       * src/vm/jit/code.h (codeinfo): Added optlevel.
+       
+       * src/vm/jit/Makefile.am (libjit_la_SOURCES): Added recompile.[ch].
+       * src/vm/jit/recompile.c: New file.
+       * src/vm/jit/recompile.h: Likewise.
+       
+       * src/vm/jit/show.c (new_show_method, show_method)
+       (new_show_basicblock, show_basicblock): Use
+       JITDATA_HAS_FLAG_SHOWDISASSEMBLE instead of opt_showdisassemble.
+       
+       * src/vm/jit/profile/profile.c (vm/jit/jit.h): Added.
+       (list_method_entry): Moved to src/vm/jit/recompile.h.
+       (profile_thread): First real implementation.
+       (profile_start_thread): Better code.
+       (profile_printstats): Use codeinfo frequencies.
+       
+       * src/vm/jit/jit.c (jit_compile): Set jd->flags properly. Moved
+       codeinfo memory freeing before dump_release because we need jd, which
+       is allocated on dump memory.
+       (jit_recompile): New function.
+       (jit_compile_intern): Use jd->flags.
+       
+       * src/vm/jit/codegen-common.c (codegen_createnativestub): Set
+       jd->flags.
+       
+       * src/vm/jit/jit.h (JITDATA_FLAG_PARSE, JITDATA_FLAG_VERIFY)
+       (JITDATA_FLAG_SHOWINTERMEDIATE, JITDATA_FLAG_SHOWDISASSEMBLE)
+       (JITDATA_FLAG_VERBOSECALL): Added.
+       (JITDATA_HAS_FLAG_PARSE, JITDATA_HAS_FLAG_VERIFY)
+       (JITDATA_HAS_FLAG_IFCONV, JITDATA_HAS_FLAG_SHOWINTERMEDIATE)
+       (JITDATA_HAS_FLAG_SHOWDISASSEMBLE, JITDATA_HAS_FLAG_VERBOSECALL):
+       Likewise.
+       (jit_recompile): Likewise.
+       
+       * src/vm/vm.c (vm/jit/recompile.h): Added.
+       (vm_create): Call recompile_init and recompile_start_thread.
+       
+       * src/toolbox/list.h (config.h, vm/types.h, vm/global.h): Added.
+       (list): Added lock.
+       (list_init): Renamed to list_create.
+       (list_addfirst): Renamed to list_add_first.
+       (list_addlast): Renamed to list_add_last.
+       (list_add_last_unsynced): New function.
+       
+       * src/toolbox/list.c (mm/memory.h, threads/native/threads.h)
+       (vm/builtin.h): Added.
+       (list_init): Renamed to list_create.
+       (list_addfirst): Renamed to list_add_first and made synchronized.
+       (list_addlast): Likewise.
+       (list_add_last_unsynced): Likewise.
+       (list_add_before): Made synchronized.
+       (list_remove): Likewise.
+       (list_first): Likewise.
+       (list_last): Likewise.
+       (list_next): Likewise.
+       (list_prev): Likewise.
+       
+       * src/vm/suck.c (suck_init): Replaced list_init with list_create.
+       (suck_add): Replaced list_addlast with list_add_last.
+       
+       * src/vm/loader.c (load_constantpool): Replaced list_addfirst with
+       list_add_first.
+       (load_newly_created_array): Likewise.
+       
+       * src/vm/properties.c (properties_init): Replaced list_init with
+       list_create.
+       (properties_add): Use list_add_last_unsynced, as this is required
+       during bootstrapping.
+       
+       * src/threads/native/threads.h (THREAD_FLAG_JAVA)
+       (THREAD_FLAG_INTERNAL): Added.
+       (threadobject): Added flags.
+       
+       * src/threads/native/threads.c (threads_init): Flag main thread as
+       Java thread (required for profiling sampling).
+       (threads_startup_thread): Flag threads as Java or internal thread.
+
+2006-06-23 09:23  twisti
+
+       * src/vm/linker.c (vm/vm.h): Added.
+
+2006-06-22 18:48  twisti
+
+       * src/vm/utf8.c, src/vm/utf8.h (utf_null): Added.
+
+2006-06-22 14:39  twisti
+
+       * src/vm/utf8.c (utf8_init): Compile fix with ENABLE_STATISTICS.
+
+2006-06-21 16:29  ajordan
+
+       * configure.ac: Added support for compiling on sparc64
+       
+       * src/vm/jit/Makefile.am: Added sparc64 subdirectory
+       
+       * src/vm/jit/sparc64/*: Added files for the sparc64 JIT (which won't
+       compile yet)
+
+2006-06-21 08:30  twisti
+
+       * src/vm/jit/mips/linux/.cvsignore: Added TAGS.
+
+2006-06-20 15:50  twisti
+
+       * src/vm/jit/mips/codegen.c (codegen): Use codeinfo instead of
+       methodinfo.
+       (createcompilerstub): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/mips/asmpart.S (asm_vm_call_method): Likewise.
+
+2006-06-20 11:55  twisti
+
+       * src/vm/jit/alpha/codegen.c (codegen): Use codeinfo instead of
+       methodinfo.
+       (createcompilerstub): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_vm_call_method): Likewise.
+
+2006-06-20 09:10  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Use codeinfo instead of
+       methodinfo.
+       (createcompilerstub): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_vm_call_method): Likewise.
+
+2006-06-19 22:53  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Use codeinfo instead of
+       methodinfo.
+       (createcompilerstub): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/i386/asmpart.S (asm_vm_call_method): Likewise.
+
+2006-06-19 22:23  twisti
+
+       * src/threads/native/threads.h (threadobject): Added pc.
+
+2006-06-19 22:22  twisti
+
+       * src/vm/jit/methodheader.h (MethodPointer): Removed.
+       (CodeinfoPointer): Added.
+       
+       * src/vm/method.c (method_vftbl_lookup): Use CodeinfoPointer.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Use codeinfo instead of
+       methodinfo.
+       (createcompilerstub): Likewise.
+       (createnativestub): Likewise.
+       
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_create_stackframeinfo):
+       Likewise.
+       (stacktrace_create_native_stackframeinfo): Likewise.
+       (stacktrace_add_method): Likewise.
+       (stacktrace_create): Likewise.
+       
+       * src/vm/exceptions.c (exceptions_handle_exception): Likewise.
+       
+       * src/vm/jit/codegen-common.c (codegen_findmethod): Define for all
+       architectures. Removed assert, we have to check that somewhere else.
+       (codegen_finish): Add the method for all architectures.
+       
+       * src/vm/jit/codegen-common.h (methodtree_element): Likewise.
+       
+       * src/vm/jit/profile/profile.c (profile_thread): First implementation.
+       * src/vm/jit/profile/profile.h (vm/global.h): Added.
+       
+       * src/vm/signal.c (signal_init): Install SIGUSR2 for profiling.
+       * src/vm/signallocal.h (md_signal_handler_sigusr2): Added.
+       * src/vm/jit/powerpc/linux/md-os.c (md_signal_handler_sigusr2): New
+       method.
+       
+       * src/vm/vm.c (vm_create): Call profile_start_thread only with
+       opt_prof.
+       
+       * src/cacaoh/headers.c (exceptions_throw_nosuchmethoderror): Added.
+
+2006-06-19 21:39  twisti
+
+       * src/vm/class.c (class_resolveinterfacemethod_intern): Smaller
+       changes.
+       (class_resolveclassmethod): Likewise.
+
+2006-06-19 21:04  twisti
+
+       * src/vm/linker.c (link_class_inter): Smaller changes.
+       (linker_addinterface): Likewise, added some comments about checks we
+       should do.
+
+2006-06-19 21:00  twisti
+
+       * src/vm/jit/powerpc/patcher.c (assert.h): Added.
+       (patcher_invokeinterface): Added XXX comments.
+
+2006-06-19 20:51  twisti
+
+       * configure.ac (profiling): Disable by default.
+
+2006-06-19 12:36  twisti
+
+       * src/native/jni.c (AttachCurrentThread): Removed dummy
+       implementation.
+       (GetEnv): Use switch instead of if's.
+
+2006-06-14 18:55  motse
+
+       * src/native/native.c (native_resolve_function): fix/add to my last
+       incomplete commit.
+
+2006-06-14 18:36  motse
+
+       * src/vm/loader.c (load_class_from_classloader): Add call to jvmti
+       Class Load and Prepare event.
+       
+       * src/native/jni.c (RegisterNatives): Add comment for calling jvmti
+       Native Method Bind event.
+       
+       * src/native/vm/VMClassLoader.c (defineClass): Add call to jvmti
+       Class File Load Hook event.
+       
+       * src/native/vm/VMObject.c (wait): Add call to jvmti Monitor Wait
+       and Waited event.
+       
+       * src/native/native.c (native_resolve_function): Add call to jvmti
+       Native Method Bind event.
+       
+       * src/native/jvmti/cacaodbg.c (jvmti_ClassFileLoadHook): new function
+       to supprt event.
+       (jvmti_ClassLoadPrepare): idem
+       (jvmti_MonitorContendedEntering): idem
+       (jvmti_MonitorWaiting): idem
+       (jvmti_ThreadStartEnd): idem
+       (jvmti_NativeMethodBind): idem
+       
+       * src/native/jvmti/cacaodbg.h: Add function headers for
+       jvmti_ClassFileLoadHook, jvmti_ClassLoadPrepare,
+       jvmti_MonitorContendedEntering, jvmti_MonitorWaiting,
+       jvmti_ThreadStartEnd, jvmti_NativeMethodBind.
+       
+       * src/native/jvmti/jvmti.c (execute_callback): Add support for Class
+       File Load Hook event.
+       (GetOwnedMonitorInfo): Adapt lock record iteration to new
+       data structure.
+       (GetCurrentContendedMonitor): idem
+       
+       * src/threads/native/lock.c (lock_monitor_enter): Add call to jvmti
+       Monitor Contended Enter and Entered event
+       
+       * src/threads/native/threads.c (threads_startup_thread): replace
+       breakpoint by direct call to jvmti Thread Start/End event
+       
+       * src/cacaoh/headers.c add dummy functions jvmti_ThreadStartEnd,
+       jvmti_ClassLoadPrepare and jvmti_MonitorContendedEntering
+
+2006-06-13 10:41  twisti
+
+       * src/lib/vm/reference/java/lang/VMThread.java: Updated and removed
+       our old thread variables.
+       * src/native/include/java_lang_VMThread.h: Regenerated.
+
+2006-06-12 21:34  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyze): Fixed warnings about
+       directive in macro argument.
+
+2006-06-12 21:27  edwin
+
+       * src/vm/jit/show.c (new_show_basicblock): Fixed warnings.
+       (new_show_stackvar): Likewise.
+
+2006-06-12 21:14  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Set dst field for IINC.
+       
+       * src/vm/jit/show.c (new_show_method): Use jitdata.new_rd.
+       Only show locals and interfaces if available.
+       (new_show_basicblock): Changed basicblock output format.
+       (new_show_stackvar): Copied&pasted full stackvar printing.
+       (new_show_icmd): Show some more ICMD operands.
+       
+       * src/vm/jit/allocator/simplereg.c (new_reg_mark_copy): Fixed
+       bug for the case nthrough != 0.
+
+2006-06-12 18:50  edwin
+
+       * src/vm/jit/allocator/simplereg.h, src/vm/jit/allocator/simplereg.c
+       (new_regalloc): New function for new instruction format.
+       (new_allocate_scratch_registers): Likewise.
+       
+       * src/vm/jit/show.c (new_show_stackvar): Show allocated register
+       for stage SHOW_REGS and above.
+       
+       * src/vm/jit/jit.h (jitdata): Added field new_rd for testing the
+       new simplereg allocator.
+
+2006-06-12 14:23  edwin
+
+       * src/vm/jit/stack.c (new_stack_analyse): Fixed new stack analysis
+       for ICMD_JSR.
+       
+       * src/vm/jit/show.c (new_show_icmd): Show operands of new instruction
+       format.
+       (new_show_basicblock): Removed obsolete stack display.
+
+2006-06-10 14:53  edwin
+
+       * src/vm/jit/stack.c (IF_INTRP): New macro.
+       (IF_JIT): New macro.
+       (STATISTICS_STACKDEPTH_DISTRIBUTION): New macro.
+       (new_stack_analyse): New function. Implemented stack analysis for
+       new instruction format. (Not used, yet.)
+       
+       * src/vm/jit/stack.h (NEWSTACK): Enclosed in do { } while(0).
+       
+       * src/vm/jit/show.h, src/vm/jit/show.c (new_show_method): New
+       function.
+       (new_show_basicblock): New function.
+       (new_show_icmd): New function.
+       
+       * src/vm/jit/parse.c (new_fillextable): New function.
+       (parse): Parsing of JSR changed. Fixed bptr->icount setting.
+       
+       * src/vm/jit/jit.h (new_instruction): New field s3.jsrtarget.
+       New field dst.dupslots.
+
+2006-06-08 07:26  twisti
+
+       * tests/regression/codepatching/test.java (aastoreconst): Fixed skip
+       case.
+
+2006-06-07 12:51  twisti
+
+       * src/vm/suck.c (suck_add_from_property): Always set namelist to NULL
+       before scandir.
+
+2006-06-07 12:19  twisti
+
+       * src/vm/global.h (bool): Changed to `unsigned int', as the MIPS Pro
+       compiler complains about signed bit fields. And I think that warning
+       is really ok.
+       
+       * src/vm/suck.c (scandir_filter): Changed the signature define, as
+       only linux seems to use const.
+
+2006-06-07 12:10  twisti
+
+       * src/vm/suck.c (suck_add_from_property): Check for scandir return
+       value in error case, as on some systems, like Linux, it returns NULL.
+
+2006-06-06 21:13  motse
+
+       src/native/vm/VMVirtualMachine.c (unregisterEvent): print error
+       message
+       
+       src/native/jvmti/cacaodbg.c (jvmti_cacao_debug_init): set variable
+       jvmti
+       
+       src/native/jvmti/VMjdwp.c: add jmethodID and jclass cache variables.
+       Add new callback functions to jvmti_jdwp_EventCallbacks
+       (ThreadStart/ThreadEnd/ClassPrepare/Breakpoint): add
+       ThreadStart/ThreadEnd event callbackes implementation who notify jdwp.
+       (Exception/MethodEntry): dummy implementation. There are no jdwp
+       exeception/MethodEntry events in gnu classpath yet.
+       (setup_jdwp_thread): use cache variables.
+       FINDCLASSWITHEXCEPTION/GETMIDWITHEXCEPTION: helper macros to ease
+       jni findclass and getmethodid.
+       (fillidcache): new function that fills valid jmethodIDs and jclasses
+       in the cache variables.
+       (VMInit): add call to fillidcache.
+       (Agent_OnLoad): do not enable all jvmti callbacks anymore. Only
+       enable needed VMInit callback. The other callbacks will be enable
+       with VMVirtualMachine.registerEvent by need.
+       
+       src/native/jvmti.c (dofireEvent): check if a valid event callback is
+       available before executing it.
+       (SetEventNotificationMode): ThreadStart/End event are no more
+       implemented as breakpoints but have direct function calls to
+       dofireEvent.
+       (SuspendThread/ResumeThread/getcacaostacktrace): sketch for further
+       implementation of this function. Final threads_suspend* functions are
+       not yet available.
+       (GetArgumentsSize): new implementation using parsed descriptors.
+       (GetMethodLocation): add checks for JVMTI_ERROR_NATIVE_METHOD
+       (Samuel Vinson). And return -1 as return values for this dummy
+       implementation.
+       (GetJLocationFormat): JLocationFormat probably will be
+       JVMTI_JLOCATION_OTHER
+       
+       src/native/jvmti/VMjdwp.h: add jdwpthread which stores the thread
+       object for the jdwp listening thread.
+       
+       src/threads/native/threads.h: remove jvmti_get_threads_breakpoints
+       beacause ThreadStart/End events are implemented as direct function
+       calls by now.
+       
+       src/threads/native/threads.c (threads_startup_thread): replace
+       ThreadStart/End event implementation.
+       (jvmti_get_threads_breakpoints): removed.
+       
+       src/cacaoh/headers.c (jvmti_fireEvent): added dummy implementation to
+       enable linking of cacaoh.
+
+2006-06-06 18:51  twisti
+
+       * tests/regression/extest.java: Get the maximum heap size and use it
+       for OOM checks.
+       * tests/regression/extest.2output: Updated.
+
+2006-06-06 18:05  twisti
+
+       * src/vm/jit/alpha/arch.h (SUPPORT_LONG_DIV_POW2)
+       (SUPPORT_LONG_REM_POW2): Added, as we probably support these two
+       instructions while the architecture does not support long division.
+       * src/vm/jit/i386/arch.h: Likewise.
+       * src/vm/jit/mips/arch.h: Likewise.
+       * src/vm/jit/powerpc/arch.h: Likewise.
+       * src/vm/jit/x86_64/arch.h: Likewise.
+       
+       * src/vm/jit/stack.c (stack_analyse): Use SUPPORT_LONG_DIV_POW2 and
+       SUPPORT_LONG_REM_POW2 instead of SUPPORT_LONG_DIV.
+
+2006-06-06 14:32  michi
+
+       * doc/handbook/arm.tex: Added.
+       * doc/handbook/arm-double-memory.png: Image describing doubles in
+       memory.
+       * doc/handbook/cacao.tex, doc/handbook/Makefile.am: Added arm.tex.
+
+2006-06-06 13:13  twisti
+
+       * tests/regression/Makefile.am (JAVAFLAGS): Use flat vm classes and
+       CLASSPATH_GLIBJ_ZIP.
+       * tests/regression/codepatching/Makefile.am: Likewise.
+       * tests/regression/native/Makefile.am: Likewise.
+
+2006-06-06 12:17  twisti
+
+       * .externalToolBuilders/CacaoConfigure.launch: Updated to new
+       configure options.
+
+2006-06-06 11:22  twisti
+
+       * configure.ac (VM_ZIP_STRING): Removed.
+       (--with-vm-zip): Added.
+       (--with-classpath-glibj-zip): Added.
+       (--with-flat-classpath): Removed.
+       
+       * contrib/setenvinstalled.in (BOOTCLASSPATH): Use hardcoded vm.zip and
+       @CLASSPATH_GLIBJ_ZIP@.
+       * contrib/setenvsource.in: Likewise.
+       
+       * src/vm/global.h (CACAO_VM_ZIP_PATH): Removed.
+       (CLASSPATH_GLIBJ_ZIP_PATH): Likewise.
+       * src/vm/vm.c (CACAO_VM_ZIP_PATH): Replaced with CACAO_VM_ZIP.
+       (CLASSPATH_GLIBJ_ZIP_PATH): Replaced with CLASSPATH_GLIBJ_ZIP.
+       * src/cacaoh/cacaoh.c: Likewise.
+       
+       * src/lib/Makefile.am (GLIBJ_ZIP): Removed and replaced with
+       CLASSPATH_GLIBJ_ZIP.
+       * src/native/include/Makefile.am (VM_ZIP): Removed and replaced with
+       flat classes in builddir.
+       (GLIBJ_ZIP): Removed and replaced with CLASSPATH_GLIBJ_ZIP.
+       * src/native/Makefile.am: Likewise.
+
+2006-06-01 22:53  edwin
+
+       * src/vm/jit/stack.h (NEW_CHECKOVERFLOW): New macro.
+
+2006-06-01 22:52  edwin
+
+       * src/vm/jit/parse.c (new_parse): Use temporary fields in jitdata,
+       instead of methodinfo fields. Check exceptions for MONITORENTER/EXIT.
+       Cleaned up.
+
+2006-06-01 22:49  edwin
+
+       * src/vm/jit/parse.h (new_block_insert): New macro.
+
+2006-06-01 22:46  edwin
+
+       * src/vm/jit/jit.h (jitdata): Added temporary fields for development
+       of new instruction format.
+       (NEW_INSTRUCTION_GET_METHODDESC): New macro.
+
+2006-06-01 16:00  edwin
+
+       * src/vm/resolve.c (new_resolve_field_lazy): New method. This will
+       become the resolve_field_lazy for the new instruction format.
+       (new_resolve_method_lazy): New method. This will
+       become the resolve_method_lazy for the new instruction format.
+       (new_create_unresolved_field): New method. This will
+       become the create_unresolved_field for the new instruction format.
+       (new_create_unresolved_method): New method. This will
+       become the create_unresolved_method for the new instruction format.
+       
+       * src/vm/jit/parse.c (new_parse): Further work for new format.
+       
+       * src/vm/jit/jit.h (NEW_INSTRUCTION_GET_FIELDREF): New macro.
+       (NEW_INSTRUCTION_GET_METHODREF): New macro.
+
+2006-06-01 15:09  edwin
+
+       * src/vm/jit/jit.c (jcommandsize): Reformatted prettily. Use comments
+       instead of duplicated #defines.
+
+2006-06-01 14:36  edwin
+
+       * src/vm/jit/jit.h (ICMD_CHECKNULL_POP): New ICMD.
+       * src/vm/jit/jit.c (ICMD_CHECKNULL_POP): Likewise.
+       
+       * src/vm/jit/parse.c (new_parse): Further work on parsing for new
+       instruction format. Zero flags where necessary. Clarify policy of
+       at most one instruction per byte of original bytecode. Use the new
+       ICMD_CHECKNULL_POP for MONITORENTER/EXIT without threads.
+
+2006-06-01 13:00  edwin
+
+       * src/vm/jit/parse.h: Reworked and documented macros for new
+       instruction set.
+
+2006-05-31 23:18  edwin
+
+       * src/vm/jit/jit.h: Whitespace cleanup and comments.
+
+2006-05-31 23:03  edwin
+
+       * src/vm/jit/parse.c (parse): Removed unnecessary variable `s4ptr`.
+
+2006-05-31 22:56  edwin
+
+       * src/vm/jit/parse.c (new_parse): Implement LOOKUPSWITCH and
+       TABLESWITCH for the new instruction format.
+       
+       * src/vm/jit/jit.h (branch_target_t): New union.
+       (lookup_target_t): New struct.
+       (s3_operand_t): lookupdefault is now a branch_target_t.
+       (dst_operand_t): Changed some field names and types.
+
+2006-05-31 22:07  twisti
+
+       * src/native/jvmti/Makefile.am (INCLUDES): Renamed to AM_CPPFLAGS.
+       (LIBS): Added, required for darwin.
+       (libjdwp_la_SOURCES): Removed trailing \.
+
+2006-05-31 21:31  edwin
+
+       * src/vm/jit/ifconv/ifconv.c (show.h): Include this instead of
+       stack.h.
+       * src/vm/jit/verify/typecheck.c (show.h): Likewise.
+       * src/vm/jit/inline/inline.c (show.h): Include.
+       * src/vm/jit/jit.c (show.h): Include.
+
+2006-05-31 21:10  edwin
+
+       * src/vm/jit/show.c (show_init): Do not define this function for
+       NDEBUG.
+
+2006-05-31 20:28  edwin
+
+       * src/vm/jit/show.h: New file.
+       * src/vm/jit/show.c: New file.
+       
+       * src/vm/jit/stack.h (stack_show_method): Moved to show.h, renamed to
+       show_method.
+       (stack_show_basicblock): Moved to show.h, renamed to show_basicblock.
+       (stack_show_icmd): Moved to show.h, renamed to show_icmd.
+       
+       * src/vm/jit/stack.c (lock_stack_show_icmd): Moved to show.c, renamed
+       to show_global_lock.
+       (stack_show_method): Moved to show.c, renamed to show_method.
+       (stack_show_basicblock): Moved to show.c, renamed to show_basicblock.
+       (stack_show_icmd): Moved to show.c, renamed to show_icmd.
+       (stack_init): This function is now empty.
+       
+       * src/vm/jit/ifconv/ifconv.c (stack_show_basicblock): Renamed to
+       show_basicblock.
+       
+       * src/vm/jit/inline/inline.c (stack_show_method): Renamed to
+       show_method.
+       (stack_show_icmd): Renamed to show_icmd.
+       
+       * src/vm/jit/inline/inline_debug.inc (stack_show_icmd): Renamed to
+       show_icmd.
+       
+       * src/vm/jit/jit.c (jit_init): Call show_init.
+       (stack_show_method): Renamed to show_method.
+       
+       * src/vm/jit/Makefile.am (show.c): Added.
+       (show.h): Added.
+       
+       * src/threads/native/lock.h (pthread.h): Included.
+
+2006-05-31 19:25  edwin
+
+       * src/vm/jit/jit.h (s3_operant_t): Typo fixed to s3_operand_t.
+       Thanks, twisti.
+
+2006-05-31 13:53  motse
+
+       src/native/vm/VMVirtualMachine.c (suspendThread): print error message
+       with printjvmtierror
+       (resumeThread): idem
+       (getAllLoadedClassCount): idem
+       (getAllLoadedClasses): idem
+       (getClassStatus): idem
+       (getAllClassMethods): idem
+       (getFrameCount): idem
+       (getThreadStatus): idem
+       (getSourceFile): idem
+       (registerEvent): idem
+       
+       src/native/vm/VMMethod.c (printjvmtierror): new helper function for
+       getting and print error messages
+       (getName): print error message with printjvmtierror, remove
+       signature, generic signature
+       (getSignature): print error message with printjvmtierror, remove
+       name, generic signature
+       (getModifiers): print error message with printjvmtierror
+       (getlinetable): idem
+       (fillVariableTable): new function for converting
+       jvmtiLocalVariableEntry to arguments for
+       gnu.classpath.jdwp.util.VariableTable constructor
+       (getVariableTable): new implementation. tries to get local variable
+       table and return gnu.classpath.jdwp.util.VariableTable.
+       
+       src/native/include/Makefile.am: add VariableTable
+       
+       src/native/jvmti/VMjdwp.c (printjvmtierror) new function (duplicate)
+       - this is a work around
+       (VMInit): print error message with printjvmtierror
+       
+       src/native/jvmti/jvmti.c (InterruptThread): new implentation
+       (GetThreadInfo): switch form using javastring_tochar (uses malloc)
+       to javastring_toutf/utf_sprint_convert_to_latin1
+       (GetOwnedMonitorInfo): fix error handling
+       (GetFrameLocation): idem
+       (DestroyRawMonitor): use heap_free
+       (GetClassSignature): fix error handling
+       (GetSourceFileName): use utf_bytes
+       (GetFieldName): fix error handling
+       (GetFieldDeclaringClass): add error handling
+       (GetFieldModifiers): idem
+       (GetMethodName): fix error handling
+       (GetClassLoaderClasses): idem
+       (GenerateEvents): add CHECK_CAPABILITY
+       can_generate_compiled_method_load_events
+       
+       src/native/jvmti/VMjdwp.h add printjvmtierror
+
+2006-05-31 13:10  twisti
+
+       * src/vm/jit/x86_64/md-emit.h (IS_IMM8, IS_IMM32): Removed.
+       * src/vm/jit/emit.h (IS_IMM8, IS_IMM32): Added.
+
+2006-05-31 12:33  twisti
+
+       * src/vm/jit/x86_64/emit.c: Use new emit methods, saves about 6k code
+       size.
+       (emit_membase32): New method.
+       (emit_memindex): Likewise.
+       * src/vm/jit/x86_64/md-emit.h (emit_membase32): Removed.
+       (emit_memindex): Likewise.
+
+2006-05-30 23:38  edwin
+
+       * src/vm/jit/parse.c (new_parse): Worked on implementing parsing for
+       the new instruction format. (Not used, yet.)
+       * src/vm/jit/parse.h: Likewise.
+       
+       * src/vm/jit/jit.h (INS_FLAG_UNRESOLVED, INS_FLAG_CLASS)
+       (INS_FLAG_ARRAY, INS_FLAG_NOCHECK): Added flag constants for new
+       instruction format.
+
+2006-05-30 12:24  edwin
+
+       * src/vm/jit/parse.h (new_instruction): Moved `bte` field to s3.
+       * src/vm/jit/jit.h: Likewise.
+
+2006-05-29 23:59  edwin
+
+       * src/vm/jit/jit.h (subroutineinfo): Removed unused typedef.
+
+2006-05-29 23:47  edwin
+
+       * src/vm/jit/parse.h: New macros for new instruction format (not
+       used,
+       yet).
+       
+       * src/vm/jit/jit.h (new_instruction, ...): Further development of new
+       instruction format (not used, yet).
+
+2006-05-29 22:37  edwin
+
+       * src/vm/jit/parse.h: Reordered and commented macros. No functional
+       changes.
+       (Changes): Added my name.
+
+2006-05-29 21:48  edwin
+
+       * src/vm/jit/parse.c (new_parse): New function. This will become the
+       parse function for the new instruction format.
+       (parse): Removed obsolete variable `gp`. (Was used for old inlining).
+       
+       * src/vm/jit/jit.h (jitdata): Added temporary fields
+       `new_instructions` and `new_instructioncount` for parallel
+       development of the new instruction format.
+
+2006-05-29 20:22  edwin
+
+       * src/vm/jit/jit.h (new_instruction): Committed the new instruction
+       struct (with name `new_instruction` so it can co-exist with the old
+       format `instruction`).
+       (resolve.h): Include for new instruction format.
+       
+       * src/vm/resolve.h (typeinfo.h): Include to resolve dependencies.
+       
+       * src/vm/jit/parse.h: Added a reminder comment.
+
+2006-05-29 19:28  twisti
+
+       * configure.ac (AC_INIT): Changed to 0.96+svn.
+       (CFLAGS): Changed to -O0.
+
+2006-05-29 18:53  twisti
 
-2005-10-20 02:49  edwin
-
-       * src/: cacaoh/headers.c, vm/exceptions.c, vm/exceptions.h: Added
-         new_noclassdeffounderror and a function to convert
-         ClassNotFoundException to NoClassDefFoundError.  (This is the first
-         of a series of commits to clean up the creation/handling of loader
-         exceptions.)
-
-2005-10-20 01:38  twisti
-
-       * src/native/vm/Field.c:
-         * cacao_get_field_address: Check if we should bypass security
-           checks, pass this instead of c and f.
-         * set: Use local variables (it's better this way, thanks anton).
-
-2005-10-20 00:11  twisti
-
-       * src/native/vm/Field.c:
-         * set: Assigment bugfix, wrong variable used.  Maybe i should think
-           about the way i'm using variables...
-
-2005-10-20 00:06  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * callingMethodCollector: Return [1] element since it's called from
-           a native method (maybe this needs checking again).
-
-2005-10-20 00:04  twisti
-
-       * src/native/vm/Field.c:
-         * Second part of the rewrite, seems quite ok now and codesize is
-         smaller.
-
-2005-10-20 00:03  twisti
-
-       * src/vm/: exceptions.c, exceptions.h:
-         * new_illegalargumentexception: Added.
-
-2005-10-20 00:03  twisti
-
-       * src/vm/: utf8.c, utf8.h:
-         * utf_java_lang_IllegalArgumentException: Added.
-
-2005-10-20 00:02  twisti
-
-       * src/vm/: class.c, class.h:
-         * class_java_lang_IllegalArgumentException: Added.
-
-2005-10-20 00:01  twisti
-
-       * src/vm/: access.c, access.h, resolve.c:
-         * is_accessible_class: Renamed to access_is_accessible_class.
-         * is_accessible_member: Renamed to access_is_accessible_member.
-
-2005-10-19 23:35  twisti
-
-       * src/native/vm/Constructor.c:
-         * config.h, vm/types.h: Added.
-
-2005-10-19 21:56  twisti
-
-       * src/toolbox/list.h:
-         * Fixed file path.
-         * Added Changes.
-
-2005-10-19 21:56  twisti
-
-       * src/toolbox/chain.c:
-         * Smaller fixes, nothing important.
-
-2005-10-19 16:35  twisti
-
-       * src/native/include/Makefile.am:
-         * Use noinst_DATA target for header files since all does only work
-           for plain make.
-
-2005-10-19 13:40  twisti
-
-       * src/native/vm/Field.c:
-         * Arghhh! Sorry...
-
-2005-10-19 13:28  twisti
-
-       * src/native/: native.c, native.h:
-         * class_findfield_approx, class_findfield_index_approx: Removed.
-
-2005-10-19 13:27  twisti
-
-       * src/native/vm/Field.c:
-         * First part of rewrite, get/setXXX functions are now correct (mauve
-           test).  Still some stuff left to do (access checks, get and set
-         functions).
-
-2005-10-18 14:42  twisti
-
-       * configure.in:
-         * We have to configure all sub packages, otherwise we can't do any
-           dist stuff like distclean.
-         * Removed different mips flags.
-         * src/vm/jit/mips/linux/Makefile: Added.
-
-2005-10-18 14:38  twisti
-
-       * src/vm/jit/mips/linux/md-os.c:
-         * types.h: Fixed include path.
-
-2005-10-18 14:22  twisti
-
-       * src/vm/jit/mips/disass.c:
-         * disassinstr: 32-bit output and warning fixes.
-
-2005-10-17 13:52  edwin
-
-       * src/vm/jit/verify/typeinfo.h: make NDEBUG disable TYPEINFO_DEBUG
-         and TYPECHECK_DEBUG
-
-2005-10-14 13:28  twisti
-
-       * src/boehm-gc/: Makefile.am, alpha_mach_dep.S, configure.in,
-         dyn_load.c, mach_dep.c, os_dep.c, pthread_stop_world.c,
-         pthread_support.c, version.h, win32_threads.c, doc/README,
-         doc/README.changes, doc/README.linux, include/private/gc_priv.h,
-         include/private/gcconfig.h, include/private/pthread_stop_world.h:
-         * Updated to boehm-gc 6.6
-
-2005-10-14 13:27  twisti
-
-       * src/native/jni.c:
-         * DefineClass, GetSuperclass, NewObjectA: Add return value to local
-           refs (taken from gcj).
-
-2005-10-14 12:42  twisti
-
-       * src/native/vm/VMClass.c:
-         * getDeclaredClasses, getDeclaringClass: Fixes the case with
-           unresolved inner classes (mauve fixes).
-
-2005-10-13 18:48  edwin
-
-       * src/vm/resolve.c: do not throw exceptions for missing
-         fields/methods when resolving lazily
-
-2005-10-13 18:25  edwin
-
-       * src/vm/jit/verify/typeinfo.c: replaced
-         TYPEINFO_INIT_FROM_CLASSREF_OR_CLASSINFO with typeinfo_init_class
-
-2005-10-13 18:10  twisti
-
-       * src/native/jni.c:
-         * NewLocalRef: Keep the compiler happy, return a value.
-
-2005-10-13 18:08  twisti
-
-       * src/vm/jit/mips/asmpart.S:
-         * asm_call_jit_compiler: Use md_assembler_get_patch_address, so we
-           can omit some assembler code.
-
-2005-10-13 18:08  twisti
-
-       * src/vm/jit/mips/md.c:
-         * md_assembler_get_patch_address: Added.
-
-2005-10-13 18:04  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * createnativestub: Local references table changes.
-
-2005-10-13 16:59  twisti
-
-       * tests/stack/.cvsignore:
-         * Ignore *.class
-
-2005-10-13 15:48  edwin
-
-       * src/native/jni.c: fix bug when calling Java method with return
-         type long
-
-2005-10-13 11:50  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * createnativestub: Local references changes.
-
-2005-10-13 11:39  twisti
-
-       * src/cacao/cacao.c:
-         * -mx options fix.
-         * main: Do jni_init after all other stuff, since we now call Java
-           code there.
-
-2005-10-12 17:53  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * createnativestub: Local references changes, restore return value
-           before call trace.
-
-2005-10-12 17:33  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * createnativestub: Local references changes.
-
-2005-10-12 17:27  twisti
-
-       * src/native/include/: .cvsignore, Makefile.am,
-         java_lang_VMThrowable.h:
-         * java_lang_VMThrowable.h: Added.
-
-2005-10-12 15:32  twisti
-
-       * src/cacao/cacao.c:
-         * main: Call jni_init().
-
-2005-10-12 15:31  twisti
-
-       * src/mm/boehm.c:
-         * heap_alloc_uncollectable: Clear allocated memory.
-
-2005-10-12 15:31  twisti
-
-       * src/vm/: utf8.c, utf8.h:
-         * utf_remove, utf_put, utf_get, utf_value: Added.
-         * utf_Z, utf_B, utf_C, utf_S, utf_I, utf_J, utf_F, utf_D: Likewise.
-         * utf_java_lang_Object__java_lang_Object: Likewise.
-
-2005-10-12 15:26  twisti
-
-       * src/vm/builtin.c:
-         * builtin_new, builtin_newarray: Don't memset memory, it's done now
-           by the allocate functions itself.
-         * builtin_trace_exception: Print the stacktrace with CACAO internal
-           functions.
-
-2005-10-12 15:24  twisti
-
-       * src/vm/class.c:
-         * class_create_classinfo: Don't set field to 0 values, GCNEW* now
-           clears the memory in boehm.c.
-
-2005-10-12 15:23  twisti
-
-       * src/vm/loader.c:
-         * load_class_from_classbuffer: GCNEW renamed to GCNEW_UNCOLLECTABLE
-           (XXX check if we really need this).
-
-2005-10-12 15:21  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Local references table changes.
-
-2005-10-12 15:20  twisti
-
-       * src/vm/jit/codegen.inc:
-         * codegen_addxcheckarefs: Removed.
-         * codegen_start_native_call, codegen_finish_native_call: Added.
-         * removecompilerstub, removenativestub: Warning fix.
-
-2005-10-12 15:19  twisti
-
-       * src/vm/jit/codegen.inc.h:
-         * codegendata: xcheckarefs removed.
-
-2005-10-12 15:07  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * stacktrace_dump_trace: Use stacktrace_print_trace to print the
-         trace.
-         * stacktrace_print_trace: Added.
-
-2005-10-12 15:06  twisti
-
-       * src/cacaoh/headers.c:
-         * stacktrace_print_trace: Added.
-
-2005-10-12 14:54  twisti
-
-       * src/vm/method.c:
-         * method_free: Warning fix.
-
-2005-10-12 14:49  twisti
-
-       * src/vm/signal.c:
-         * Include stdlib.h
-         * signal_handler_sigint: Print warning message when SIGINT catched
-         twice.
-
-2005-10-12 14:45  twisti
-
-       * src/vm/jit/: alpha/arch.h, i386/arch.h, intrp/arch.h,
-         mips/arch.h, powerpc/arch.h, x86_64/arch.h:
-         * USE_CODEMMAP: Removed.
-
-2005-10-12 13:28  twisti
-
-       * src/native/jni.c:
-         * Added local references stuff.
-         * jni_init: Return bool value, initialize global references and
-           direct buffer stuff.
-         * jclass_findfield: Removed.
-         * DeleteLocalRef, NewLocalRef, EnsureLocalCapacity: Implemented.
-         * PushLocalFrame, PopLocalFrame: Added assert.
-         * NewGlobalRef, DeleteGlobalRef: Reimplemented, don't use JNI
-         functions.
-         * jni_init1, jni_init2: Removed.
-
-2005-10-12 10:47  twisti
-
-       * src/native/jni.h:
-         * localref_table: Added.
-         * jni_init: Returns a bool.
-
-2005-10-12 10:22  twisti
-
-       * src/native/vm/VMStackWalker.c:
-         * Added vm/global.h include.
-
-2005-10-12 10:22  twisti
-
-       * src/native/vm/VMThread.c:
-         * start: If we use no threads, just return a Thread object, so we
-           need no changes in GNU classpath (thanks to mark for suggesting
-         this).
-
-2005-10-12 10:19  twisti
-
-       * src/threads/native/threads.h:
-         * nativethread: _dontfillinexceptionstacktrace, _threadrootmethod
-           removed, _localref_table added.
-
-2005-10-12 10:17  twisti
-
-       * src/mm/memory.h:
-         * GCNEW renamed to GCNEW_UNCOLLECTABLE.
-         * GCNEW: Allocates now normal heap memory.
-
-2005-10-12 10:17  twisti
-
-       * src/mm/memory.c:
-         * USE_CODEMMAP: Removed.
-
-2005-10-11 16:41  twisti
-
-       * src/cacaoh/Makefile.am:
-         * bindir: Removed.
-         * bin_PROGRAMS changed to noinst_PROGRAMS: cacaoh does not produce
-           user-usable headers, so we just need it for compilation.
-
-2005-10-11 16:40  twisti
-
-       * src/cacao/Makefile.am:
-         * bindir: Removed, install in cnofigured bindir.
-
-2005-10-11 16:40  twisti
-
-       * src/scripts/: java.in, rmiregistry.in:
-         * exec_prefix, bindir: Added.
-
-2005-10-11 16:39  twisti
-
-       * src/scripts/Makefile.am:
-         * bindir: Removed, install in configured bindir.
-         * bin_SCRIPTS: cacao, javac removed.
-
-2005-10-11 16:38  twisti
-
-       * configure.in:
-         * src/scripts/cacao, src/scripts/javac: Removed.
-
-2005-10-11 15:29  twisti
-
-       * src/mm/: memory.c, memory.h:
-         * Removed mmap stuff, which was not thread safe (maybe our random
-           crashes bug?) and was not required anymore.
-
-2005-10-11 10:30  twisti
-
-       * tests/regression/: jctest.java, jctest.output:
-         * Added some array instanceof checks, suggested by edwin.
-
-2005-10-11 01:59  edwin
-
-       * src/vm/builtin.c: builtin_arrayinstanceof: return 0 if object ==
-         NULL
-
-2005-10-10 19:11  edwin
-
-       * src/vm/jit/parse.c: for ATHROW and ARETURN: set iptr->val.a =
-         NULL in parse.c
-
-2005-10-10 15:45  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * ICMD_ATHROW, ICMD_ARETURN: Generate a call to the
-           patcher_athrow_areturn if required.  The iptr->val.a value should be
-         set by the verifier.
-
-2005-10-10 15:40  twisti
-
-       * src/vm/jit/: patcher.h, i386/patcher.c:
-         * patcher_athrow_areturn: Added.
-
-2005-10-10 15:34  twisti
-
-       * src/vm/jit/i386/codegen.h:
-         * M_CALL_IMM: Added.
-
-2005-10-07 17:36  twisti
-
-       * src/threads/green/threads.c:
-         * allocThreadStack: Renamed GCNEW to GCNEW_UNCOLLECTABLE.
-
-2005-10-07 17:35  twisti
-
-       * src/native/include/Makefile.am:
-         * VM_ZIP, GLIBJ_ZIP: Added.
-         * Added dependencies to the make target.
-
-2005-10-07 17:26  twisti
-
-       * src/mm/boehm.c:
-         * heap_allocate: Clear memory allocated.
-
-2005-10-07 16:03  edwin
-
-       * src/vm/jit/verify/typecheck.c: verify that first argument of
-         instance method is of reference type
-
-2005-10-07 16:02  edwin
-
-       * src/vm/: descriptor.c, loader.c: check against method descriptors
-         used for fields and vice versa
-
-2005-10-07 01:34  edwin
-
-       * src/vm/jit/parse.c: check for invalid opcode 203 (decimal)
-
-2005-10-07 01:32  edwin
-
-       * src/vm/jit/parse.c: check for invalid opcode 186 (decimal) throw
-         verifyerror instead of internalerror on invalid opcode
-
-2005-10-06 17:00  edwin
-
-       * src/vm/jit/parse.c: honor return value of fillextable
-
-2005-10-06 17:00  edwin
-
-       * src/vm/jit/parse.h: removed debug print
-
-2005-10-06 16:04  edwin
-
-       * src/vm/resolve.c: in resolve_and_check_subtype_set: skip types
-         that cannot be resolved
-
-2005-10-06 15:48  edwin
-
-       * src/vm/descriptor.c: check return value of
-         descriptor_pool_add_class
-
-2005-10-06 15:47  edwin
-
-       * src/vm/jit/stack.c: do not dump the method on exception
-
-2005-10-06 15:14  twisti
-
-       * src/vm/signal.c:
-         * signal_init: Added SA_NODEFER to SIGINT.
-         * signal_handler_sigint: Check for cacao_exiting, so shutdown can be
-           done immediately.
-
-2005-10-06 15:13  twisti
-
-       * src/cacao/cacao.c:
-         * cacao_exiting, opt_verboseclass: Added.
-
-2005-10-06 15:12  twisti
-
-       * src/cacao/cacao.h:
-         * cacao_exiting: Added.
-
-2005-10-06 15:12  twisti
-
-       * src/vm/: options.c, options.h:
-         * opt_verboseclass: Added.
-
-2005-10-06 15:11  twisti
-
-       * src/vm/: class.c, class.h:
-         * class_findfield, class_findfield_by_name,
-           class_findfield_index_by_name: Added.
-
-2005-10-06 15:10  twisti
-
-       * src/vm/loader.h:
-         * classbuffer: path added, for -verbose:class.
-
-2005-10-06 15:10  twisti
-
-       * src/vm/loader.c:
-         * SUN compatible -verbose:class implemented.
-         * class_findfield: Moved to class.c
-
-2005-10-06 15:09  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Forgot to load the return value for
-         -verbosecall.
-
-2005-10-06 12:31  edwin
-
-       * src/vm/: descriptor.c, loader.c, jit/stack.c: use
-         new_internalerror where possible
-
-2005-10-06 12:29  edwin
-
-       * src/vm/jit/verify/typecheck.c: check param types *before* calling
-         constrain_unresolved_method
-
-2005-10-06 11:40  edwin
-
-       * src/vm/: loader.c, loader.h, jit/inline/parseRTstats.c: throw
-         classformaterror instead of assert(0) removed functions which are
-         not suitable for exception handling
-
-2005-10-06 11:23  edwin
-
-       * src/vm/jit/: stack.c, stack.h: throw verifyerror instead of
-         assert(0)
-
-2005-10-06 11:12  edwin
-
-       * src/vm/jit/parse.c: throw verify errors instead of assert(0)
-
-2005-10-06 10:42  edwin
-
-       * src/vm/: loader.c, jit/parse.c, jit/inline/inline.c,
-         jit/inline/parseRT.c, jit/inline/parseXTA.c: always check return
-         value of class_getconstant
-
-2005-10-06 10:09  edwin
-
-       * src/vm/jit/parse.c: throw verify error instead of assertion
-
-2005-10-06 02:11  edwin
-
-       * src/vm/jit/verify/typecheck.c: added case for verifying
-         unresolved arrayinstanceof
-
-2005-10-06 01:03  edwin
-
-       * src/vm/jit/verify/typecheck.c: code cleanup, moved flag init to
-         separate function
-
-2005-10-06 00:31  edwin
-
-       * src/vm/jit/verify/typecheck.c: verify unresolved array references
-         in MULTIANEWARRAY
-
-2005-10-05 23:47  edwin
-
-       * src/vm/jit/verify/typecheck.c: verify invocations of generic
-         builtin methods
-
-2005-10-05 19:52  edwin
-
-       * src/vm/jit/verify/typecheck.c: code cleanup, moved some code into
-         separate functions
-
-2005-10-05 18:12  twisti
-
-       * src/libffi/src/powerpc/ppc_closure.S:
-         * Changed # comments to /* */, so we can compile with -ansi
-         -pendantic.
-
-2005-10-05 18:05  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-         * ICMD_BUILTIN: Check for exception if iptr->op1 == true (mauve
-         fix).
-         * ICMD_MULTIANEWARRAY: Check for exception (mauve fix).
-         * Removed NegativeArraySizeException stubs.
-         * createnativestub: Smaller code.
-
-2005-10-05 18:04  twisti
-
-       * src/vm/utf8.c:
-         * is_valid_utf: Don't print Overlong UTF-8 sequence warning.
-
-2005-10-05 17:44  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-         * ICMD_BUILTIN: Check for exception if iptr->op1 == true (mauve
-         fix).
-         * ICMD_MULTIANEWARRAY: Check for exception (mauve fix).
-         * Removed NegativeArraySizeException stubs.
-         * createnativestub: Smaller code.
-
-2005-10-05 16:16  twisti
-
-       * src/vm/jit/stack.c:
-         * analyse_stack: Set iptr->op1 to false for automatic builtins.
-
-2005-10-05 15:30  edwin
-
-       * src/vm/: resolve.c, jit/helper.c, jit/helper.h,
-         jit/alpha/patcher.c, jit/i386/patcher.c, jit/intrp/patcher.c,
-         jit/mips/patcher.c, jit/powerpc/patcher.c,
-         jit/verify/typecheck.c, jit/x86_64/patcher.c: verify that
-         abstract classes are not instantiated
-
-2005-10-05 14:28  edwin
-
-       * src/vm/jit/verify/typecheck.c: verify that the right <init> is
-         called for uninitialized references
-
-2005-10-05 13:53  edwin
-
-       * src/vm/: classcache.c, linker.c, jit/verify/typecheck.c: cache
-         self-reference of class in link_class_intern verify that the right
-         <init> method is called in <init> methods
-
-2005-10-05 13:15  twisti
-
-       * src/vm/jit/stack.c:
-         * show_icmd: Print string or classname for ACONSTs.
-
-2005-10-05 12:37  twisti
-
-       * src/vm/string.c:
-         * literalstring_u2: Bugfix when reorganizing the string hashtable,
-           the pointer to the current string was used as temp variable.
-
-2005-10-05 11:20  edwin
-
-       * src/vm/: resolve.c, jit/verify/typecheck.c: for INVOKESPECIAL:
-         check that it may only call <init>, a method of the current class,
-         or a method of a super class of the current class
-
-2005-10-05 02:33  edwin
-
-       * src/vm/: resolve.c, resolve.h: fix checking of protected members
-         (removed bogus test in resolve_method and skip array types in
-         resolve_and_check_subtype_set)
-
-2005-10-05 00:41  edwin
-
-       * src/vm/: loader.c, resolve.c, resolve.h: implement special lookup
-         for INVOKESPECIAL and super.* methods
-
-2005-10-05 00:14  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-         * ICMD_BUILTIN: Check for exception if iptr->op1 == true (mauve
-         fix).
-         * ICMD_MULTIANEWARRAY: Check for exception (mauve fix).
-         * Removed NegativeArraySizeException stubs.
-         * createnativestub: Smaller code.
-
-2005-10-04 23:54  twisti
-
-       * src/vm/linker.c:
-         * config.h, types.h: Added.
-         * link_class_intern: Removed resolving of thrown exceptions.  This
-           is not required here, native.c (native_get_exceptiontypes) does this
-           on request (fixes jetty).  Normal exceptions are still left.
-
-2005-10-04 23:40  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-         * ICMD_BUILTIN: Check for exception if iptr->op1 == true (mauve
-         fix).
-         * ICMD_MULTIANEWARRAY: Check for exception (mauve fix).
-         * Removed NegativeArraySizeException stubs.
-         * createnativestub: Smaller code.
-
-2005-10-04 23:36  twisti
-
-       * src/vm/jit/i386/codegen.h:
-         * M_BNE: Added.
-
-2005-10-04 23:13  twisti
-
-       * src/vm/jit/i386/icmd_uses_reg_res.inc:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-
-2005-10-04 22:19  twisti
-
-       * src/vm/signal.c:
-         * Include cacao/cacao.h for cacao_exit.
-
-2005-10-04 22:19  twisti
-
-       * src/vm/initialize.c:
-         * initialize_class_intern: Removed unused variable i.
-
-2005-10-04 21:38  twisti
-
-       * tests/regression/: clinitexception.2output, extest.2output:
-         * Adapted output.
-
-2005-10-04 21:38  twisti
-
-       * tests/regression/jctest.java:
-         * Print exception in catch.
-
-2005-10-04 21:36  twisti
-
-       * tests/regression/extest.java:
-         * Changed and added NegativeArraySizeException tests.
-
-2005-10-04 21:03  edwin
-
-       * src/vm/jit/verify/typecheck.c: added a large comment explaining
-         the typechecker
-
-2005-10-04 20:57  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-         * ICMD_BUILTIN: Check for exception if iptr->op1 == true (mauve
-         fix).
-         * ICMD_MULTIANEWARRAY: Check for exception (mauve fix).
-         * Removed NegativeArraySizeException stubs.
-         * createnativestub: Smaller code.
-
-2005-10-04 20:55  twisti
-
-       * src/vm/jit/verify/typecheck.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-
-2005-10-04 20:54  twisti
-
-       * src/vm/jit/loop/tracing.c:
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-
-2005-10-04 20:53  twisti
-
-       * src/vm/jit/: reg.inc, stack.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * ICMD_BUILTIN, ICMD_INVOKE*: Use md->paramcount instead of
-         iptr->op1.
-
-2005-10-04 20:52  twisti
-
-       * src/vm/jit/parse.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * BUILTIN: Set iptr->op1 to true if we have to check for an
-         exception.
-
-2005-10-04 20:51  twisti
-
-       * src/vm/jit/lsra.inc:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * Added an #error for the iptr->op1 changes, i don't know if lsra
-           compiles or even works, so...
-
-2005-10-04 20:50  twisti
-
-       * src/vm/jit/jit.h:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-
-2005-10-04 20:49  twisti
-
-       * src/vm/jit/jit.c:
-         * ICMD_CHECKASIZE, ICMD_CHECKEXCEPTION: Removed.
-         * Compile warning fix.
-
-2005-10-04 20:47  twisti
-
-       * src/vm/jit/parse.h:
-         * OP, OP1, OP2I: Reformatted.
-
-2005-10-04 20:45  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * stacktrace_inline_negativearraysizeexception: Removed.
-
-2005-10-04 20:45  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_XOR, M_BNE: Added.
-
-2005-10-04 20:33  twisti
-
-       * src/vm/jit/mips/: asmpart.S, codegen.c, codegen.h, disass.c,
-         md-abi.c, md.c, patcher.c, irix/md-os.c:
-         * types.h: Include path fixes.
-
-2005-10-04 20:31  twisti
-
-       * src/vm/jit/mips/Makefile.am:
-         * asmoffsets.h, types.h: Removed.
-
-2005-10-04 12:00  twisti
-
-       * src/vm/initialize.c:
-         * initialize_class_intern: Do not initialize interfaces implemented
-           (VM Spec 2.17.4 and mauve test).
-
-2005-09-30 14:16  twisti
-
-       * src/lib/Makefile.am:
-         * Forgot to prefix the java files with $(top_srcdir)/src/lib/.
-
-2005-09-30 13:17  twisti
-
-       * configure.in:
-         * setenvinstalled, setenvsource: Added.
-
-2005-09-30 13:16  twisti
-
-       * contrib/: .cvsignore, Makefile.am, debugSetPathes,
-         setenvinstalled.in, setenvsource.in:
-         * debugSetPathes: Removed.
-         * setenvinstalled, setenvsource: Added, set the environment
-           variables for both cases: GNU classpath and CACAO not installed
-           (setenvsource) and GNU classpath installed, but CACAO's not
-         (setenvinstalled).
-
-2005-09-29 16:46  twisti
-
-       * tests/: .cvsignore, native/.cvsignore:
-         * Added *.class
-
-2005-09-29 16:38  twisti
-
-       * tests/: extest.2output, extest.java, extest.output:
-         * Now in regression.
-
-2005-09-29 16:36  twisti
-
-       * tests/regression/Makefile.am:
-         * GNU classpath removal changes.
-
-2005-09-29 16:36  twisti
-
-       * tests/regression/.cvsignore:
-         * Added *.class
-
-2005-09-29 16:31  twisti
-
-       * src/native/: Makefile.am, vm/VMSystemProperties.c:
-         * GNU classpath removal changes.
-
-2005-09-29 16:29  twisti
-
-       * src/vm/jit/Makefile.am:
-         * DIST_SUBDIRS: Removed arm.
-
-2005-09-29 16:28  twisti
-
-       * src/vm/loader.c:
-         * loader_load_all_classes: Also skip *.png files.
-
-2005-09-29 16:28  twisti
-
-       * src/vm/: builtin.c, global.h:
-         * GNU classpath removal changes.
-
-2005-09-29 16:23  twisti
-
-       * m4/: accross.m4, iconv.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4:
-         * Taken from GNU classpath for stuff we need in our configure too.
-
-2005-09-29 16:22  twisti
-
-       * src/native/tools/Makefile.am:
-         * GNU classpath removal changes.
-
-2005-09-29 16:22  twisti
-
-       * src/native/tools/gennativetable.c:
-         * types.h: Path fix.
-
-2005-09-29 16:17  twisti
-
-       * src/: cacao/Makefile.am, cacao/cacao.c, cacaoh/Makefile.am,
-         cacaoh/cacaoh.c, native/include/Makefile.am:
-         * GNU classpath removal changes.
-
-2005-09-29 16:13  twisti
-
-       * autogen.sh:
-         * Removed src/classpath.
-
-2005-09-29 16:13  twisti
-
-       * configure.in:
-         * Changes related to GNU classpath removal.
-
-2005-09-29 16:12  twisti
-
-       * Makefile.am:
-         * ACLOCAL_AMFLAGS: Removed -I src/classpath/m4.
-
-2005-09-29 15:08  twisti
-
-       * src/Makefile.am:
-         * classpath: Removed.
-         * fdlibm: Added.
-
-2005-09-29 15:07  twisti
-
-       * src/lib/Makefile.am:
-         * JAVA_VM_FILES: Fixed pathes.
-         * vm.zip: Install in pkgdata directory.
-
-2005-09-29 15:06  twisti
-
-       * src/lib/vm/reference/: gnu/classpath/VMStackWalker.java,
-         gnu/classpath/VMSystemProperties.java,
-         gnu/classpath/jdwp/VMFrame.java,
-         gnu/classpath/jdwp/VMIdManager.java,
-         gnu/classpath/jdwp/VMVirtualMachine.java,
-         gnu/java/nio/VMPipe.java, gnu/java/nio/VMSelector.java,
-         java/io/VMFile.java, java/io/VMObjectInputStream.java,
-         java/io/VMObjectStreamClass.java, java/lang/VMClass.java,
-         java/lang/VMClassLoader.java, java/lang/VMCompiler.java,
-         java/lang/VMDouble.java, java/lang/VMFloat.java,
-         java/lang/VMObject.java, java/lang/VMProcess.java,
-         java/lang/VMRuntime.java, java/lang/VMString.java,
-         java/lang/VMSystem.java, java/lang/VMThread.java,
-         java/lang/VMThrowable.java, java/lang/reflect/Constructor.java,
-         java/lang/reflect/Field.java, java/lang/reflect/Method.java,
-         java/lang/reflect/VMProxy.java, java/net/VMInetAddress.java,
-         java/net/VMNetworkInterface.java,
-         java/nio/VMDirectByteBuffer.java,
-         java/nio/channels/VMChannels.java,
-         java/security/VMAccessController.java, java/util/VMTimeZone.java:
-         * VM interface classes, copied from src/classpath.
-
-2005-09-29 15:01  twisti
-
-       * src/cacaoh/.cvsignore:
-         * cacaoh: Added.
-
-2005-09-29 15:01  twisti
-
-       * src/cacao/.cvsignore:
-         * cacao: Added.
-
-2005-09-29 14:16  twisti
-
-       * src/fdlibm/: .cvsignore, Makefile.am, e_fmod.c, fdlibm.h,
-         ieeefp.h, java-assert.h, mprec.h, s_copysign.c, s_finite.c,
-         w_fmod.c:
-         * Slim fdlibm version from GNU classpath, we need these functions
-           (finite, fmod, copysign) since on some OSs the fmod does not work
-           like java would like to have it (e.g. IRIX).  So we do not link
-           against the system libm, but this one.
-
-2005-09-29 14:04  twisti
-
-       * src/vm/jit/: alpha/.cvsignore, i386/.cvsignore, mips/.cvsignore,
-         powerpc/.cvsignore, x86_64/.cvsignore:
-         * offsets.h: Added.
-
-2005-09-29 14:01  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Renamed _exceptionptr to
-           _no_threads_exceptionptr, fixed compile warnings with
-         --disable-threads.
-
-2005-09-28 16:04  twisti
-
-       * configure.in:
-         * src/scripts/kjc, src/vm/jit/arm/Makefile: Removed.
-
-2005-09-28 16:03  twisti
-
-       * src/scripts/: .cvsignore, Makefile.am:
-         * kjc: Removed.
-
-2005-09-28 16:01  twisti
-
-       * contrib/Makefile.am:
-         * java-getopt, kjc: Removed, since debian does not accept binary
-         stuff.
-
-2005-09-28 14:10  twisti
-
-       * configure.in:
-         * Added armv4tl.
-
-2005-09-28 12:36  twisti
-
-       * src/vm/: class.c, class.h, linker.c, loader.c:
-         * class_java_lang_Thread, class_java_lang_VMThread: Added.
-
-2005-09-28 01:04  twisti
-
-       * src/vm/builtin.c:
-         * methodindent: Made it an s4, caused a problem on 32-bit (i386).
-
-2005-09-28 01:03  twisti
-
-       * src/vm/signal.c:
-         * signal_handler_sigint: Added, exits properly on <ctrl>-c.
-
-2005-09-28 00:40  twisti
-
-       * src/scripts/kjc.in:
-         * We don't need it.
-
-2005-09-28 00:39  twisti
-
-       * contrib/: java-getopt-1.0.11.jar, kjc-2.2C-bin.jar:
-         * Debian does not allow binary stuff, so we just remove it. And i
-           think we don't need it actually.
-
-2005-09-28 00:11  twisti
-
-       * src/native/vm/VMClass.c:
-         * getDeclaredMethods: Removed setfield_critical, set instance fields
-           directly; fixed code indent.
-         * getModifiers: Implemented correctly, return the inner class flags.
-           Mauve test and tomcat 4 are ok.
-
-2005-09-28 00:07  twisti
-
-       * src/vm/jit/i386/asmpart.S:
-         * asm_calljavafunction2: Fixed stackframe size bug.
-         * Fixed code indent.
-
-2005-09-27 16:12  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, disass.c, md-abi.c, md.c,
-         patcher.c:
-         * types.h: Include fixes.
-
-2005-09-27 16:08  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * createnativestub: Fixed stackframeinfo offset.
-         * Include fixes.
-
-2005-09-27 16:05  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * types.h: Fixed include path.
-
-2005-09-27 16:03  twisti
-
-       * src/vm/jit/alpha/Makefile.am:
-         * types.h: Removed.
-
-2005-09-25 00:52  twisti
-
-       * src/vm/jit/intrp/engine.c:
-         * builtin_throw: Don't pass line to builtin_trace_exception.
-
-2005-09-22 01:10  twisti
-
-       * src/native/include/Makefile.am:
-         * java_nio_DirectByteBufferImpl.h: Added.
-
-2005-09-22 01:06  twisti
-
-       * src/native/jni.c:
-         * callLongMethod: Fixed argcount.
-         * cacao_jni_CallVoidMethod: Added.
-         * NewObject: Use cacao_jni_CallVoidMethod and support varargs.
-         * GetPrimitiveArrayCritical, ReleasePrimitiveArrayCritical:
-         Implemented.
-         * NewDirectByteBuffer, GetDirectBufferAddress,
-           GetDirectBufferCapacity: Likewise.
-
-2005-09-21 23:25  twisti
-
-       * src/cacaoh/headers.c:
-         * new_classnotfoundexception: Added.
-
-2005-09-21 23:24  twisti
-
-       * src/cacao/cacao.c:
-         * Renamed verboseexception to opt_verboseexception.
-
-2005-09-21 23:20  twisti
-
-       * src/vm/jit/x86_64/asmpart.S:
-         * Renamed _exceptionptr to _no_threads_exceptionptr.
-         * asm_handle_exception: Pass indent flag correctly to
-           builtin_trace_exception.
-         * asm_wrapper_patcher: Changes stackframe size due to size change of
-           stackframeinfo.
-
-2005-09-21 23:17  twisti
-
-       * autogen.sh:
-         * libffi: Added.
-
-2005-09-21 23:16  twisti
-
-       * src/vm/jit/x86_64/: dis-asm.h, disass.c, codegen.h:
-         * types.h include fixes.
-
-2005-09-21 23:14  twisti
-
-       * src/vm/jit/x86_64/Makefile.am:
-         * types.h: Removed.
-
-2005-09-21 23:13  twisti
-
-       * src/vm/jit/x86_64/emitfuncs.c:
-         * Includes fixed.
-         * addi-lea optimization added, but not enabled.
-
-2005-09-21 23:12  twisti
-
-       * src/vm/jit/x86_64/: patcher.c, md-abi.c, emitfuncs.h:
-         * Include fixes.
-
-2005-09-21 22:24  twisti
-
-       * src/vm/: options.c, options.h:
-         * Renamed verboseexception to opt_verboseexception.
-
-2005-09-21 22:23  twisti
-
-       * src/vm/loader.c:
-         * Mauve test fixes: check for bad array name and stuff like that.
-         * Started to remove LOADER_INC/LOADER_DEC, i don't think this is
-           required anymore and pollutes the code.
-
-2005-09-21 22:22  twisti
-
-       * src/vm/method.h:
-         * config.h, vm/types.h: Added.
-
-2005-09-21 22:21  twisti
-
-       * src/vm/linker.c:
-         * link_primitivetype_table: Set correct flags (taken from jamvm,
-           maybe without ACC_ABSTRACT, not mentioned in VM Spec), don't add
-           primitives to the classcache, throw exception instead of an assert
-         (mauve test).
-
-2005-09-21 22:20  twisti
-
-       * src/vm/linker.h:
-         * Added comments.
-
-2005-09-21 22:19  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * builtin_trace_exception: Don't pass line, renamed noindent to
-           indent, check for opt_verboseexception and print stacktrace. TODO:
-           print stacktrace in C code.
-
-2005-09-21 22:18  twisti
-
-       * src/vm/: exceptions.c, exceptions.h:
-         * new_classnotfoundexception: Added.
-
-2005-09-21 22:18  twisti
-
-       * src/vm/classcache.c:
-         * classcache_lookup_name, classcache_new_name: Speed up lookup in
-           external chain.
-         * Some reformatting.
-
-2005-09-21 22:02  twisti
-
-       * src/vm/: utf8.c, utf8.h:
-         * utf_add: Added.
-
-2005-09-21 22:01  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * nativeLoad: Use lt_dlopen instead of lt_dlopenext.
-         * mapLibraryName: Append platform specific suffix.
-
-2005-09-21 21:41  twisti
-
-       * src/vm/class.c:
-         * class_set_packagename: Set the packagename of an array class to
-           the one of the component.
-
-2005-09-21 21:41  twisti
-
-       * src/vm/class.h:
-         * Include fixes.
-
-2005-09-21 21:38  twisti
-
-       * src/vm/access.c:
-         * is_accessible_class: Removed array comment.
-
-2005-09-21 21:36  twisti
-
-       * src/native/vm/VMClass.c:
-         * forName: Mauve fix, check for '/' in class name.
-         * getModifiers: Mauve fix, return innerclass modifiers if requested.
-
-2005-09-21 21:34  twisti
-
-       * src/native/vm/VMClassLoader.c:
-         * nativeGetResources: Mauve fix, check for classes.
-         * findLoadedClass: Mauve fix, replace '.' by '/' and call
-           classcache_lookup_defined first.
-
-2005-09-21 21:30  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * Added comments.
-
-2005-09-21 20:37  twisti
-
-       * src/vm/jit/intrp/java.vmg:
-         * Added 1000 static superinstructions.
-
-2005-09-21 19:49  twisti
-
-       * src/Makefile.am:
-         * Added libffi stuff.
-
-2005-09-21 19:49  twisti
-
-       * src/libffi/src/x86/ffi.c:
-         * -ansi -pedantic compile fixes.
-
-2005-09-21 17:33  twisti
-
-       * src/threads/native/generic-primitives.h:
-         * atomic_add, compare_and_swap: Generic implementation (pthreads).
-
-2005-09-21 17:33  twisti
-
-       * src/threads/native/threads.c:
-         * Added interpreter stack stuff.
-
-2005-09-21 17:32  twisti
-
-       * src/threads/native/threads.h:
-         * nativethread: Added _global_sp for interpreter.
-
-2005-09-21 17:32  twisti
-
-       * src/native/jni.c:
-         * callObjectMethod, callIntegerMethod,
-           jni_method_invokeNativeHelper: Fixed argcount value.
-         * callLongMethod, callFloatMethod: Added assert, implement them
-           correctly when they occur.
-         * FindClass: Architecture defines fixed.
-
-2005-09-21 16:59  twisti
-
-       * src/vm/jit/intrp/: codegen.c, engine.c, intrp.h, java.vmg:
-         * Bugfixes, some optimizations.
-
-2005-09-21 16:59  twisti
-
-       * src/vm/jit/intrp/arch.h:
-         * Fixed header text.
-
-2005-09-21 16:59  twisti
-
-       * src/vm/jit/intrp/patcher.c:
-         * Fixed includes.
-
-2005-09-21 16:58  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Added interpreter stuff.
-
-2005-09-21 16:55  twisti
-
-       * src/vm/: options.c, options.h:
-         * opt_stacksize, opt_static_supers: Added.
-
-2005-09-21 16:54  twisti
-
-       * src/cacao/cacao.c:
-         * STACK_SIZE, intrp_main_stack: Added.
-         * OPT_STATIC_SUPERS, OPT_TRACE: Added.
-
-2005-09-21 16:46  twisti
-
-       * src/cacao/Makefile.am:
-         * FFI_LIB: Added.
-
-2005-09-21 16:45  twisti
-
-       * src/cacao/cacao.h:
-         * intrp_main_stack: Declared.
-
-2005-09-21 16:09  twisti
-
-       * src/vm/: builtin.c, string.c, tables.c, tables.h:
-         * types.h include fixes.
-
-2005-09-21 15:39  twisti
-
-       * configure.in:
-         * Check for --disable-jit/--disable-intrp and
-         --enable-jit/--enable-intrp.
-         * Use libffi.
-
-2005-09-21 15:22  twisti
-
-       * src/vm/jit/x86_64/: asmpart.S, codegen.c:
-         * Include methodheader.h instead of asmoffsets.h.
-
-2005-09-21 15:22  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * thread_restartcriticalsection: Removed, should be declared
-           somewhere else.
-
-2005-09-21 15:17  twisti
-
-       * src/libffi/: .cvsignore, ChangeLog, ChangeLog.libgcj,
-         ChangeLog.v1, LICENSE, Makefile.am, README, acinclude.m4,
-         autogen.sh, configure.ac, configure.host, fficonfig.h.in,
-         libtool-version, include/.cvsignore, include/Makefile.am,
-         include/ffi.h.in, include/ffi_common.h, m4/accross.m4,
-         m4/gcc-version.m4, src/.cvsignore, src/debug.c, src/ffitest.c,
-         src/java_raw_api.c, src/prep_cif.c, src/raw_api.c, src/types.c,
-         src/alpha/.cvsignore, src/alpha/ffi.c, src/alpha/ffitarget.h,
-         src/alpha/osf.S, src/arm/.cvsignore, src/arm/ffi.c,
-         src/arm/ffitarget.h, src/arm/sysv.S, src/frv/.cvsignore,
-         src/frv/eabi.S, src/frv/ffi.c, src/frv/ffitarget.h,
-         src/ia64/.cvsignore, src/ia64/ffi.c, src/ia64/ffitarget.h,
-         src/ia64/ia64_flags.h, src/ia64/unix.S, src/m32r/.cvsignore,
-         src/m32r/ffi.c, src/m32r/ffitarget.h, src/m32r/sysv.S,
-         src/m68k/.cvsignore, src/m68k/ffi.c, src/m68k/ffitarget.h,
-         src/m68k/sysv.S, src/mips/.cvsignore, src/mips/ffi.c,
-         src/mips/ffitarget.h, src/mips/n32.S, src/mips/o32.S,
-         src/pa/.cvsignore, src/pa/ffi.c, src/pa/ffitarget.h,
-         src/pa/linux.S, src/powerpc/.cvsignore, src/powerpc/aix.S,
-         src/powerpc/aix_closure.S, src/powerpc/asm.h,
-         src/powerpc/darwin.S, src/powerpc/darwin_closure.S,
-         src/powerpc/ffi.c, src/powerpc/ffi_darwin.c,
-         src/powerpc/ffitarget.h, src/powerpc/linux64.S,
-         src/powerpc/linux64_closure.S, src/powerpc/ppc_closure.S,
-         src/powerpc/sysv.S, src/s390/.cvsignore, src/s390/ffi.c,
-         src/s390/ffitarget.h, src/s390/sysv.S, src/sh/.cvsignore,
-         src/sh/ffi.c, src/sh/ffitarget.h, src/sh/sysv.S,
-         src/sh64/.cvsignore, src/sh64/ffi.c, src/sh64/ffitarget.h,
-         src/sh64/sysv.S, src/sparc/.cvsignore, src/sparc/ffi.c,
-         src/sparc/ffitarget.h, src/sparc/v8.S, src/sparc/v9.S,
-         src/x86/.cvsignore, src/x86/ffi.c, src/x86/ffi64.c,
-         src/x86/ffitarget.h, src/x86/sysv.S, src/x86/unix64.S,
-         src/x86/win32.S, testsuite/.cvsignore, testsuite/Makefile.am,
-         testsuite/config/default.exp, testsuite/lib/libffi-dg.exp,
-         testsuite/libffi.call/call.exp,
-         testsuite/libffi.call/closure_fn0.c,
-         testsuite/libffi.call/closure_fn1.c,
-         testsuite/libffi.call/closure_fn2.c,
-         testsuite/libffi.call/closure_fn3.c,
-         testsuite/libffi.call/closure_fn4.c,
-         testsuite/libffi.call/closure_fn5.c,
-         testsuite/libffi.call/cls_12byte.c,
-         testsuite/libffi.call/cls_16byte.c,
-         testsuite/libffi.call/cls_18byte.c,
-         testsuite/libffi.call/cls_19byte.c,
-         testsuite/libffi.call/cls_1_1byte.c,
-         testsuite/libffi.call/cls_20byte.c,
-         testsuite/libffi.call/cls_20byte1.c,
-         testsuite/libffi.call/cls_24byte.c,
-         testsuite/libffi.call/cls_2byte.c,
-         testsuite/libffi.call/cls_3_1byte.c,
-         testsuite/libffi.call/cls_3byte1.c,
-         testsuite/libffi.call/cls_3byte2.c,
-         testsuite/libffi.call/cls_4_1byte.c,
-         testsuite/libffi.call/cls_4byte.c,
-         testsuite/libffi.call/cls_5byte.c,
-         testsuite/libffi.call/cls_64byte.c,
-         testsuite/libffi.call/cls_6byte.c,
-         testsuite/libffi.call/cls_7byte.c,
-         testsuite/libffi.call/cls_8byte.c,
-         testsuite/libffi.call/cls_9byte1.c,
-         testsuite/libffi.call/cls_9byte2.c,
-         testsuite/libffi.call/cls_align_double.c,
-         testsuite/libffi.call/cls_align_float.c,
-         testsuite/libffi.call/cls_align_longdouble.c,
-         testsuite/libffi.call/cls_align_pointer.c,
-         testsuite/libffi.call/cls_align_sint16.c,
-         testsuite/libffi.call/cls_align_sint32.c,
-         testsuite/libffi.call/cls_align_sint64.c,
-         testsuite/libffi.call/cls_align_uint16.c,
-         testsuite/libffi.call/cls_align_uint32.c,
-         testsuite/libffi.call/cls_align_uint64.c,
-         testsuite/libffi.call/cls_double.c,
-         testsuite/libffi.call/cls_float.c,
-         testsuite/libffi.call/cls_multi_schar.c,
-         testsuite/libffi.call/cls_multi_sshort.c,
-         testsuite/libffi.call/cls_multi_sshortchar.c,
-         testsuite/libffi.call/cls_multi_uchar.c,
-         testsuite/libffi.call/cls_multi_ushort.c,
-         testsuite/libffi.call/cls_multi_ushortchar.c,
-         testsuite/libffi.call/cls_schar.c,
-         testsuite/libffi.call/cls_sint.c,
-         testsuite/libffi.call/cls_sshort.c,
-         testsuite/libffi.call/cls_uchar.c,
-         testsuite/libffi.call/cls_uint.c,
-         testsuite/libffi.call/cls_ulonglong.c,
-         testsuite/libffi.call/cls_ushort.c,
-         testsuite/libffi.call/ffitest.h, testsuite/libffi.call/float.c,
-         testsuite/libffi.call/float1.c, testsuite/libffi.call/float2.c,
-         testsuite/libffi.call/float3.c, testsuite/libffi.call/many.c,
-         testsuite/libffi.call/many_win32.c,
-         testsuite/libffi.call/negint.c,
-         testsuite/libffi.call/nested_struct.c,
-         testsuite/libffi.call/nested_struct1.c,
-         testsuite/libffi.call/nested_struct2.c,
-         testsuite/libffi.call/nested_struct3.c,
-         testsuite/libffi.call/problem1.c,
-         testsuite/libffi.call/promotion.c,
-         testsuite/libffi.call/pyobjc-tc.c,
-         testsuite/libffi.call/return_ll.c,
-         testsuite/libffi.call/return_ll1.c,
-         testsuite/libffi.call/return_sc.c,
-         testsuite/libffi.call/return_uc.c,
-         testsuite/libffi.call/strlen.c,
-         testsuite/libffi.call/strlen_win32.c,
-         testsuite/libffi.call/struct1.c, testsuite/libffi.call/struct2.c,
-         testsuite/libffi.call/struct3.c, testsuite/libffi.call/struct4.c,
-         testsuite/libffi.call/struct5.c, testsuite/libffi.call/struct6.c,
-         testsuite/libffi.call/struct7.c, testsuite/libffi.call/struct8.c,
-         testsuite/libffi.call/struct9.c,
-         testsuite/libffi.special/ffitestcxx.h,
-         testsuite/libffi.special/special.exp,
-         testsuite/libffi.special/unwindtest.cc:
-         * Import libffi from gcc-4.0.0.
-
-2005-09-21 14:11  twisti
-
-       * src/vm/jit/powerpc/: Makefile.am, asmpart.S, codegen.c, disass.c,
-         md.c, patcher.c, linux/md-abi.c, linux/md-os.c:
-         * types.h include fixes.
-
-2005-09-21 13:49  twisti
-
-       * src/vm/jit/powerpc/darwin/: md-abi.h, md-abi.inc, md-asm.h:
-         * REG_ITMP3 changes: We cannot use r0 anymore, now it's r16.
-
-2005-09-19 16:13  twisti
-
-       * src/vm/Makefile.am:
-         * noinst_HEADERS: Added types.h.
-
-2005-09-19 16:09  twisti
-
-       * src/vm/jit/intrp/asmpart.c:
-         * Fixed includes.
-
-2005-09-19 16:07  twisti
-
-       * src/vm/jit/intrp/Makefile.am:
-         * AM_CFLAGS, noinst_HEADERS: Removed.
-         * INCLUDES: Added libffi include.
-
-2005-09-19 16:04  twisti
-
-       * src/vm/jit/intrp/md.c:
-         * Changed vm/jit/intrp/types.h include to vm/types.h.
-
-2005-09-19 16:04  twisti
-
-       * src/vm/jit/intrp/types.h:
-         * We now use a global vm/types.h.
-
-2005-09-19 16:03  twisti
-
-       * src/vm/jit/i386/: codegen.c, dis-asm.h, emitfuncs.c, emitfuncs.h,
-         md-abi.c, md.c, patcher.c, linux/md-os.c:
-         * Changed vm/jit/i386/types.h include to vm/types.h.
-
-2005-09-19 16:03  twisti
-
-       * src/vm/jit/i386/Makefile.am:
-         * asmoffsets.h, types.h: Removed.
-
-2005-09-19 15:58  twisti
-
-       * src/vm/jit/jit.c:
-         * Fixed includes.
-
-2005-09-19 15:57  twisti
-
-       * src/vm/jit/: inline/sets.c, parse.c:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:55  twisti
-
-       * src/vm/jit/codegen.inc:
-         * Fixed includes (types.h, disass.h).
-
-2005-09-19 15:54  twisti
-
-       * src/vm/jit/disass.h:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:51  twisti
-
-       * src/vm/jit/verify/typecheck.c:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:48  twisti
-
-       * src/vm/jit/patcher.h:
-         * Changed types.h include to vm/types.h.
-         * patcher_resolve_native: Enclose in !defined(ENABLE_STATICVM).
-
-2005-09-19 15:31  twisti
-
-       * src/vm/jit/tools/genoffsets.c:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:31  twisti
-
-       * src/vm/jit/stacktrace.h:
-         * Changed types.h include to vm/types.h.
-         * exceptionentry: Added.
-         * stacktrace_create_stackframeinfo: Added.
-
-2005-09-19 15:27  twisti
-
-       * src/native/jni.h:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:27  twisti
-
-       * src/vm/jit/reg.h:
-         * Fixed includes.
-
-2005-09-19 15:25  twisti
-
-       * src/vm/jit/stack.c:
-         * Disabled some stuff for the interpreter.
-         * Fixed includes.
-
-2005-09-19 15:11  twisti
-
-       * src/vm/jit/codegen.inc.h:
-         * Changed types.h include to vm/types.h.
-         * codegendata: Added last_compiled for intrp.
-
-2005-09-19 15:05  twisti
-
-       * src/: toolbox/util.c, cacaoh/cacaoh.c, mm/boehm.h, mm/memory.h:
-         * Changed types.h include to vm/types.h.
-
-2005-09-19 15:05  twisti
-
-       * src/native/: vm/Method.c, vm/VMClass.c, vm/VMClassLoader.c,
-         vm/VMThread.c, native.c:
-         * Changes types.h include to vm/types.h.
-
-2005-09-19 15:02  twisti
-
-       * src/vm/: jit/alpha/types.h, jit/i386/types.h, jit/mips/types.h,
-         jit/powerpc/types.h, jit/x86_64/types.h, types.h:
-         * Use one global vm/types.h and check unknow pointer size in that
-         file.
-
-2005-09-19 14:59  twisti
-
-       * src/native/vm/FileChannelImpl.c:
-         * Unused since... a long time.
-
-2005-09-19 13:30  twisti
-
-       * src/vm/jit/intrp/intrp.h:
-         * Double_Store: 32-bit fix.
-
-2005-09-19 13:29  twisti
-
-       * src/vm/jit/i386/asmpart.S:
-         * Include methodheader.h instead of asmoffsets.h.
-
-2005-09-19 13:29  twisti
-
-       * src/vm/jit/i386/codegen.c: # Fixed includes.
-         * codegen_stubcalled: Removed.
-
-2005-09-19 13:14  twisti
-
-       * src/cacao/cacao.c:
-         * Removed unsued threadrootmethod.
-
-2005-09-19 11:21  twisti
-
-       * src/native/native.h:
-         * Fixed comments.
-
-2005-09-19 11:20  twisti
-
-       * src/native/include/: .cvsignore, Makefile.am:
-         * gnu_classpath_Pointer32.h, gnu_classpath_Pointer64.h,
-           java_nio_Buffer.h: Added.
-
-2005-09-19 11:03  twisti
-
-       * src/lib/Makefile.am:
-         * JAVA_VM_FILES: Added some new 0.18 files and ordered.
-
-2005-09-19 11:02  twisti
-
-       * src/mm/memory.c:
-         * Use DUMPINFO macro to get non-/threaded dumpinfo.
-
-2005-09-17 13:15  twisti
-
-       * src/vm/jit/stacktrace.h:
-         * stackframeinfo: Removed addressOfThreadspecificHead, renamed
-           oldThreadspecificHeadValue to prev and changed type to
-           stackframeinfo*.
-
-2005-09-17 13:14  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Include methodheader.h instead of asmoffsets.h.
-         * STACKFRAMEINFO, _no_threads_stackframeinfo: Added.
-
-2005-09-17 12:37  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * _threadrootmethod, _thread_nativestackframeinfo,
-           builtin_get_dontfillinexceptionstacktrace,
-           builtin_get_threadrootmethod, builtin_get_stackframeinfo,
-         builtin_stacktrace_copy: Removed.
-
-2005-09-17 12:27  twisti
-
-       * src/vm/exceptions.h:
-         * _exceptionptr: Renamed to _no_threads_exceptionptr.
-         * _dontfillinexceptionstacktrace, _threadrootmethod: Removed.
-
-2005-09-17 12:25  twisti
-
-       * src/vm/exceptions.c:
-         * Renamed _exceptionptr to _no_threads_exceptionptr.
-         * Removed _dontfillinexceptionstacktrace.
-
-2005-09-17 12:25  twisti
-
-       * src/cacaoh/headers.c:
-         * Renamed _exceptionptr to _no_threads_exceptionptr.
-
-2005-09-16 19:12  twisti
-
-       * src/vm/builtin.c:
-         * builtin_clone_array: Cast fix.
-         * builtin_get_stackframeinfo: Renamed from
-         builtin_asm_get_stackframeinfo.
-         * builtin_asm_get_threadrootmethod, builtin_stacktrace_copy:
-         Removed.
-
-2005-09-16 18:47  twisti
-
-       * src/vm/jit/: alpha/asmoffsets.h, methodheader.h,
-         i386/asmoffsets.h, mips/asmoffsets.h, powerpc/asmoffsets.h,
-         x86_64/asmoffsets.h:
-         * Moved asmoffsets.h to a global methodheader.h.
-
-2005-09-16 14:32  twisti
-
-       * src/native/native.h:
-         * native_library_hash_find: Declaration added.
-
-2005-09-16 14:32  twisti
-
-       * src/vm/jit/asmpart.h:
-         * asm_cacheflush: Declaration added.
-
-2005-09-16 14:31  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * asm_cacheflush: Declaration removed.
-         * Compiler warning fixes.
-
-2005-09-16 14:31  twisti
-
-       * tests/regression/extest.2output:
-         * Update.
-
-2005-09-16 14:15  twisti
-
-       * src/vm/jit/codegen.inc:
-         * codegen_createnativestub: Compiler warning fix.
-
-2005-09-16 14:08  twisti
-
-       * src/vm/loader.c:
-         * load_newly_created_array: Set clone() method to ACC_NATIVE, since
-           this is a native function call (required for interpreter). It also
-           gives a better stacktrace.
-
-2005-09-16 14:05  twisti
-
-       * src/vm/statistics.c:
-         * print_time, print_stats: Output reformated.
-
-2005-09-16 13:53  twisti
-
-       * src/native/vm/: VMAccessController.c, VMStackWalker.c:
-         * Fixed architecture and interpreter defines: who supports what in
-           which configuration.
-
-2005-09-16 13:33  twisti
-
-       * src/cacaoh/headers.c:
-         * intrp_main_stack: Added.
-
-2005-09-16 10:42  twisti
-
-       * src/vm/jit/intrp/disass.h:
-         * Unified disassembler interface.
-
-2005-09-16 09:49  twisti
-
-       * src/vm/jit/mips/: disass.c, disass.h:
-         * Unified disassembler interface.
-
-2005-09-16 09:48  twisti
-
-       * src/vm/jit/mips/asmpart.S:
-         * Bugfix: Used wrong register define.
-
-2005-09-15 22:19  twisti
-
-       * src/cacaoh/cacaoh.c:
-         * main: Removed log_cputime call.
-
-2005-09-15 22:07  twisti
-
-       * src/toolbox/: logging.c, logging.h:
-         * log_cputime: Removed (unused).
-
-2005-09-15 21:36  twisti
-
-       * src/vm/jit/alpha/: disass.c, disass.h:
-         * Unified disassembler interface.
-
-2005-09-15 21:19  twisti
-
-       * src/vm/jit/powerpc/: disass.c, disass.h:
-         * Unified disassembler interface.
-
-2005-09-15 17:53  twisti
-
-       * src/vm/jit/intrp/: codegen.c, disass.c, engine.c, intrp.h,
-         java.vmg, peephole.c:
-         * Superinstructions added.
-
-2005-09-14 20:36  twisti
-
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_wrapper_patcher: Fixed 16-byte stackframe alignment (movaps
-           problem, again).
-
-2005-09-14 20:13  twisti
-
-       * src/vm/jit/x86_64/: disass.c, disass.h:
-         * Unified disassembler interface.
-
-2005-09-14 20:03  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h, disass.h, jit.c,
-         stack.c, i386/disass.c, i386/disass.h:
-         * Unified disassembler interface.
-
-2005-09-14 10:51  twisti
-
-       * src/vm/jit/intrp/: asmpart.c, codegen.c, codegen.h, engine.c,
-         intrp.h, java.vmg, md.c, patcher.c, peephole.c:
-         * Most stuff implemented (stacktraces, ...), stuff working: spec
-           jvm98, tomcat{3,4,5} (start up but don't deliver content), some
-           dacapo benchmarks
-
-2005-09-12 23:23  twisti
-
-       * src/Makefile.am:
-         * Removed or commented ffcall stuff, this fixes autogen.sh problems.
-
-2005-09-12 10:59  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * intBitsToFloat, longBitsToDouble: Made static.
-         * Some minor changes.
-
-2005-09-12 10:09  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_get_putstatic: Fixed cast for disp.
-
-2005-09-12 09:42  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * nativeLoad: Call JNI_OnLoad if the functions is available. This
-           fixes the AttachCurrentThread problem with eclipse.
-
-2005-09-11 00:14  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * mapLibraryName: Don't add extension.
-
-2005-09-10 22:33  twisti
-
-       * tests/regression/Test.sh:
-         * Diff unified and with head.
-
-2005-09-10 22:32  twisti
-
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c, codegen.h, patcher.c:
-         * Fixed load displacement overflows (one bug still left).
-         * Pass load/store offset to patcher functions.
-
-2005-09-10 22:31  twisti
-
-       * src/vm/jit/powerpc/darwin/md-abi.inc:
-         * Added comments.
-
-2005-09-10 22:30  twisti
-
-       * src/vm/jit/powerpc/linux/: md-abi.h, md-abi.inc, md-asm.h:
-         * We can't use r0 as REG_ITMP3, use r16 instead.
-
-2005-09-10 18:34  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * Added #include "vm/options.h".
-
-2005-09-10 18:28  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * preInit: Added java.vm.info.
-
-2005-09-10 17:55  twisti
-
-       * Makefile.am:
-         * ACLOCAL_AMFLAGS: Added, fixes problems with aclocal while
-         reconfiguring.
-
-2005-09-10 17:09  twisti
-
-       * src/native/vm/VMStackWalker.c:
-         * getCallingClassLoader: Fixed #ifdef.
-
-2005-09-10 16:33  twisti
-
-       * src/native/vm/VMClassLoader.c:
-         * findLoadedClass: Added.
-
-2005-09-10 16:31  twisti
-
-       * src/native/: include/.cvsignore, include/Makefile.am,
-         vm/Makefile.am, vm/Proxy.c, vm/VMProxy.c:
-         * Proxy to VMProxy changes.
-
-2005-09-10 16:29  twisti
-
-       * src/native/native.c:
-         * Proxy to VMProxy changes.
-         * native_library_hash_find: Added.
-
-2005-09-10 16:07  twisti
-
-       * src/native/include/: .cvsignore, Makefile.am:
-         * Changed RawData to Pointer (classpath-0.18 change).
-
-2005-09-10 15:28  twisti
-
-       * src/native/vm/VMThrowable.c:
-         * fillInStackTrace: Check return value of
-           cacao_stacktrace_NormalTrace.  Removed dontfillinexceptionstacktrace
-         check, i have to think about this.
-
-2005-09-10 15:21  twisti
-
-       * src/native/vm/VMClass.c:
-         * forName: Changed to
-           (Ljava/lang/String;ZLjava/lang/ClassLoader;)Ljava/lang/Class;
-         version and enabled the code (classpath-0.18).
-         * initialize, loadArrayClass: Removed.
-
-2005-09-05 23:58  twisti
-
-       * src/vm/loader.c:
-         * Added ENABLE_INTRP define (this is more like a hack, maybe this
-           should be fixed somewhen).
-
-2005-09-05 23:48  twisti
-
-       * src/vm/jit/: stack.c, stack.h:
-         * Added ENABLE_INTRP defines.
-
-2005-09-05 23:44  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h:
-         * Added __INTRP__ define.
-
-2005-09-05 23:42  twisti
-
-       * src/vm/jit/jit.c:
-         * Added ENABLE_JIT, ENABLE_INTRP defines to handle linking problems.
-
-2005-09-05 23:39  twisti
-
-       * src/vm/: options.c, options.h:
-         * Added opt_jit, opt_intrp
-         * Added temporary vm_debug (for intrp tracing)
-
-2005-09-05 22:20  twisti
-
-       * src/vm/jit/patcher.h:
-         * PATCHER_checkcast_instanceof: Added for intrp.
-
-2005-09-05 22:19  twisti
-
-       * src/native/vm/VMStackWalker.c:
-         * Disable the stackwalker stuff for the intrp for now...
-
-2005-09-05 22:13  twisti
-
-       * src/native/include/Makefile.am:
-         * Bugfix: Use rt.jar in CLASSPATH
-
-2005-09-05 22:12  twisti
-
-       * src/cacao/cacao.c:
-         * Added options: -Xjit, -Xint
-
-2005-09-05 22:11  twisti
-
-       * src/cacao/Makefile.am:
-         * Added ffcall library for intrp.
-
-2005-09-05 22:00  twisti
-
-       * src/Makefile.am:
-         * Added ffcall for intrp
-
-2005-09-05 21:58  twisti
-
-       * configure.in:
-         * Added intrp stuff
-         * Added some additional checks, e.g. so we don't have to configure
-           all subpackages
-
-2005-09-05 19:41  twisti
-
-       * src/vm/signal.c:
-         * Added ENABLE_JIT, ENABLE_INTRP defines.
-
-2005-09-05 17:14  twisti
-
-       * src/vm/jit/Makefile.am:
-         * Added ENABLE_INTRP stuff.
-
-2005-09-05 17:12  twisti
-
-       * src/vm/jit/intrp/codegen.c:
-         * POP/DUP/DUP_Xx fixes for longs: we need to undo our changes in
-         stack.c.
-
-2005-09-02 17:18  twisti
-
-       * src/vm/jit/: alpha/types.h, i386/types.h, mips/types.h,
-         powerpc/types.h:
-         * Changed _TYPES_H define to _CACAO_TYPES_H
-
-2005-09-02 17:17  twisti
-
-       * src/vm/jit/intrp/: codegen.c, intrp.h, java.vmg:
-         * More interpreter files (important ones).
-
-2005-09-02 17:16  twisti
-
-       * src/vm/jit/intrp/.cvsignore:
-         * Ignore some files.
-
-2005-09-02 17:15  twisti
-
-       * src/vm/jit/intrp/: Makefile.am, arch.h, asmpart.c, codegen.h,
-         disasm.c, disass.c, disass.h, engine.c, md.c, patcher.c,
-         peephole.c, types.h: started reintegrating interpreter
-
-2005-08-24 02:11  michi
-
-       * src/native/vm/VMAccessController.c:
-         * added arm defines
-
-2005-08-23 16:54  cacao
-
-       * src/vm/jit/mips/Makefile.am:
-         * SUBDIRS: Changed to OS_DIR
-
-2005-08-23 16:53  cacao
-
-       * src/vm/jit/mips/linux/: .cvsignore, Makefile.am, md-os.c:
-         * MIPS Linux stuff.
-
-2005-08-23 16:45  cacao
-
-       * src/vm/builtin.c:
-         * builtin_multianewarray: Handle MIPS32 correctly (s4 in an s8 slot)
-         * builtin_trace_exception: Removed methodindent, i think we don't
-           need this anymore; Added descriptor output
-         * builtin_trace_args: Support for TRACE_ARGS_NUM == 2
-         * builtin_lxxx: Made functions debug-friendlier, the generated code
-           stays the same, just the source is a bit longer
-
-2005-08-23 16:34  cacao
-
-       * src/vm/builtin.h:
-         * builtin_new: Removed i386 asm_builtin_new define
-         * builtin_trace_args: Added handling of TRACE_ARGS_NUM == 2
-
-2005-08-23 00:41  twisti
-
-       * src/vm/exceptions.c:
-         * throw_exception_exit_intern: Print detail message for an exception
-           case during the printStackTrace() call, if available.
-
-2005-08-18 09:44  twisti
-
-       * tests/regression/: jctest.java, jctest.output:
-         * testlong: added IF_Lxx tests, fixed IF_LCMPxx tests
-
-2005-08-18 01:47  michi
-
-       * src/vm/jit/codegen.inc:
-         * implemented big-endian-arms
-         * dseg_adds8: removed defines (arm now uses it)
-
-2005-08-18 01:43  michi
-
-       * src/vm/jit/parse.c:
-         * removed arm defines (ICMD_FREM and ICMD_DREM cannot be used)
-
-2005-08-15 01:36  michi
-
-       * configure.in:
-         * added armv5b architecture
-
-2005-08-05 11:41  michi
-
-       * src/vm/jit/reg.inc:
-         * reg_setup: fixed typo in register splitting
-
-2005-08-02 23:44  cacao
-
-       * src/vm/jit/mips/patcher.c:
-         * Added MIPS32 support
-         * Use system cacheflush function to flush instruction cache
-
-2005-07-30 14:57  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * Check for branch displacement overflow in patcher stub generation.
-
-2005-07-28 21:56  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Bug #8: Collectors should return a value, so we can catch OOM
-           errors.  Fixes one part of bug #8.
-
-2005-07-28 21:47  twisti
-
-       * src/threads/native/threads.c:
-         * Bug #5: tobj->info.next may be NULL, check that in while.
-
-2005-07-28 21:34  twisti
-
-       * src/threads/native/threads.c:
-         * Bug #5: Don't print threads which are currently in initialization.
-
-2005-07-28 17:39  twisti
-
-       * tests/regression/extest.2output:
-         * New output.
-
-2005-07-28 00:20  twisti
-
-       * src/vm/jit/alpha/codegen.h:
-         * M_FLD, M_DLD: Bugfix, we can't use `a' as temp register since it's
-           a floating pointer register. Use REG_ITMP3 instead.
-
-2005-07-28 00:19  twisti
-
-       * src/vm/jit/alpha/patcher.c:
-         * Removed unnecessary opt_showdisassemble stuff.
-
-2005-07-27 23:18  twisti
-
-       * src/boehm-gc/include/private/gcconfig.h:
-         * Bugfix from arm-linux, boehm works now.
-
-2005-07-27 14:14  twisti
-
-       * configure.in:
-         * Added src/vm/jit/mips/irix/Makefile
-
-2005-07-27 14:14  twisti
-
-       * src/vm/jit/mips/: Makefile.am, md.c, irix/.cvsignore,
-         irix/Makefile.am, irix/md-os.c:
-         * Added irix subdirectory.
-
-2005-07-27 14:13  twisti
-
-       * src/vm/jit/mips/codegen.h:
-         * Bugfix: Include config.h, SIZEOF_VOID_P was not defined
-         * Removed M_LDA for mips32
-
-2005-07-27 14:12  twisti
-
-       * tests/regression/Test.sh:
-         * Print name of test before it's run.
-
-2005-07-27 12:36  twisti
-
-       * src/vm/jit/mips/: asmpart.S, codegen.c, codegen.h, patcher.c:
-         * Handling of overflow in load/store intructions implemented.
-
-2005-07-27 12:35  twisti
-
-       * src/vm/jit/mips/md.c:
-         * codegen_findmethod: Implemented to work with 3 instruction case
-         too.  cvs:
-
-         ----------------------------------------------------------------------
-
-2005-07-27 12:33  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Warning fix
-
-2005-07-26 15:00  twisti
-
-       * tests/regression/: FieldDisplacementOverflow.java,
-         LoadDisplacementOverflow.java:
-         * RISC instruction overflow tests.
-
-2005-07-25 01:07  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * Pass displacement to patcher functions.
-         * Use new M_LDA macros to calculate the current PV after jumps.
-         * Don't use REG_ITMP3 in reg_of_var calls: the new store macros use
-           the REG_ITMP3 register to calculate the address for 2-instruction
-         stores.
-
-2005-07-25 01:04  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, patcher.c:
-         * Pass load/store displacement to the patcher functions. So we don't
-           have to read the displacement from the instruction and have no
-           problems with 2-instructions load/stores.
-
-2005-07-25 01:02  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * codegen_findmethod: Use the new M_LDA macro after jumps.
-
-2005-07-25 01:01  twisti
-
-       * src/vm/jit/alpha/codegen.h:
-         * M_LDA, M_ILD, M_LLD, M_IST, M_LST, M_FLD, M_DLD, M_FST, M_DST:
-           Check for displacement overflow and generate 2 instructions (ldah).
-           Store instructions use REG_ITMP3 to calculate the address. Original
-           macros are now called M_xxx_INTERN.
-
-2005-07-25 00:32  michi
-
-       * src/vm/jit/codegen.inc: reg_of_var: Special handling of splittet
-         variables on arm.
-
-2005-07-25 00:29  twisti
-
-       * tests/regression/: Makefile.am, StackDisplacementOverflow.java,
-         StackDisplacementOverflow.output:
-         * Added StackDisplacementOverflow test.
-
-2005-07-25 00:03  michi
-
-       * src/vm/jit/reg.inc:
-         * reg_setup: Enabled splitting of long arguments across reg/stack on
-         arm.
-         * local_regalloc: Prevented reuse of float arguments as local
-         variables an arm.
-
-2005-07-24 23:04  michi
-
-       * src/vm/jit/stack.c:
-         * ICMD_INVOKE*: Renamed SUPPORT_NO_FLOAT_ARGUMENT_REGISTERS
-           to SUPPORT_PASS_FLOATARGS_IN_INTREGS and added a comment.
-
-2005-07-24 22:18  michi
-
-       * src/vm/loader.c:
-         * suck_double: On little endian ARMs with FPA, doubles
-           have big endian word order.
-
-2005-07-22 17:22  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * codegen_addpatchref: Passing displacement changes.
-         * createnativestub: Load native function before stackframeinfo
-           creation.  This results in a correct stacktrace.
-
-2005-07-22 17:21  twisti
-
-       * src/vm/jit/i386/patcher.c:
-         * patcher_resolve_native: Native function is now loaded different.
-
-2005-07-22 12:54  motse
-
-       * src/threads/native/: threads.c, threads.h: fix warning - bug #6
-
-2005-07-22 12:31  twisti
-
-       * doc/handbook/.cvsignore:
-         * Ignore generated latex files
-
-2005-07-21 16:01  twisti
-
-       * src/vm/jit/x86_64/: codegen.c, asmpart.S, patcher.c:
-         * codegen_addpatchref changes: passing displacement. We do this for
-           non-risc's to have similar code.
-
-2005-07-21 15:51  motse
-
-       * src/native/jni.c: fix DeleteGlobalRef missing argument for
-         IdentityHashMap.put
-
-2005-07-21 15:16  twisti
-
-       * src/vm/jit/codegen.inc.h:
-         * struct patchref: Added disp.
-
-2005-07-21 15:16  twisti
-
-       * src/vm/jit/codegen.inc:
-         * codegen_addpatchref: Added a displacement argument. This is the
-           displacement in the load instructions we have to patch. This way
-           we don't have to read the offset from the machine instruction and
-           don't have problems with offset overflow on risc machines.
-
-2005-07-21 15:06  twisti
-
-       * src/cacao/cacao.c:
-         * exit_handler: Don't free system resources, some threads may still
-           be running. This fixes the exit crashes with eclipse.
-
-2005-07-21 14:25  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * stacktrace_fillInStackTrace_methodRecursive: if no line number was
-           found, check if pc is in the method and add it with 0, otherwise
-         assert
-
-2005-07-21 13:29  twisti
-
-       * src/: cacao/cacao.c, native/vm/VMSystemProperties.c, vm/global.h:
-         * JAVA_VERSION: added, it's defined in global.h
-
-2005-07-21 13:00  twisti
-
-       * src/cacao/cacao.c:
-         * Added -fullversion, required e.g. by jpackage
-
-2005-07-21 02:48  michi
-
-       * configure.in:
-         * removed ENABLE_STATICVM for arm
-
-2005-07-20 21:16  motse
-
-       * src/threads/native/: threads.c, threads.h: fix build error - bug
-         #6
-
-2005-07-20 17:50  twisti
-
-       * tests/regression/: extest.2output, extest.java:
-         * Added 2 tests
-
-2005-07-20 17:35  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: Removed initalize check and code, this is now
-           done by jit_compile.
-
-2005-07-20 17:34  twisti
-
-       * src/vm/jit/jit.c:
-         * jit_compile_intern: Also handle native functions. We let
-           jit_compile initialize the class for static native functions. This
-           results in correct stacktrace and removes some code from
-         createnativestub.
-
-2005-07-20 17:30  twisti
-
-       * src/vm/jit/codegen.inc:
-         * codegen_createnativestub: Save native stub in entrypoint instead
-           of stubroutine.
-
-2005-07-20 17:28  twisti
-
-       * src/vm/loader.c:
-         * load_newly_created_array: Save native stub to m->entrypoint, so
-           that the jit compiler returns it correctly.
-
-2005-07-20 17:25  twisti
-
-       * src/vm/linker.c:
-         * link_class_intern: Create for all methods a compiler stub, even
-           for native functions.
-
-2005-07-20 17:25  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * builtin_dummy: Removed.
-         * builtin_clone_array: Function header comment.
-
-2005-07-20 17:23  twisti
-
-       * src/native/vm/VMObject.c:
-         * Java_java_lang_VMObject_clone: check for OOM in array case
-
-2005-07-20 17:17  twisti
-
-       * src/native/include/: .cvsignore, Makefile.am:
-         * Added java_lang_StackTraceElement.h
-
-2005-07-20 17:16  twisti
-
-       * src/native/vm/VMThrowable.c:
-         * generateStackTraceArray: removed
-         * getStackTrace: set the StackTraceElement fields directly (use the
-         header)
-
-2005-07-20 15:38  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: resolve function symbol before stackframeinfo
-           creation, otherwise the stacktrace is incorrect
-
-2005-07-20 15:37  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_LEA: removed
-         * M_ILEA, M_LLEA, M_ALEA: added
-
-2005-07-20 13:01  twisti
-
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_call_jit_compiler: handle jit compiler exceptions properly
-
-2005-07-20 12:40  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * stacktrace_extern_fillInStackTrace: removed, not required anymore
-
-2005-07-20 12:28  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_LEA: added
-
-2005-07-20 05:09  michi
-
-       * src/vm/jit/stack.c:
-         * ICMD_INVOKE*: prevented precoloring of float argument registers
-         for arm
-
-2005-07-20 02:33  michi
-
-       * src/native/vm/: VMStackWalker.c, VMThrowable.c:
-         * added arm defines
-
-2005-07-19 17:40  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * Removed unused unistd.h include
-
-2005-07-19 17:36  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * Removed unistd.h include
-
-2005-07-19 16:11  twisti
-
-       * src/mm/memory.c:
-         * Use USE_CODEMMAP define
-
-2005-07-19 14:35  twisti
-
-       * configure.in, src/cacao/cacao.c, src/native/Makefile.am,
-         src/native/jni.c, src/native/jvmti/.cvsignore,
-         src/native/jvmti/Makefile.am, src/native/jvmti/jvmti.c:
-         * Added --enable-jvmti configure switch, plus ENABLE_JVMTI define
-
-2005-07-19 13:52  twisti
-
-       * src/native/jni.c:
-         * Fixed jvmti.h include path
-
-2005-07-19 13:52  twisti
-
-       * src/native/Makefile.am:
-         * Removed jvmti.[ch]
-
-2005-07-19 12:20  motse
-
-       * src/native/jvmti/: jvmti.c, jvmti.h: add emacs footer
-
-2005-07-19 12:00  motse
-
-       * src/: cacao/cacao.c, native/Makefile.am, native/jni.c,
-         native/jni.h, threads/native/threads.h, native/jvmti/jvmti.c,
-         native/jvmti/jvmti.h: initial support for jvmti
-
-2005-07-19 10:52  twisti
-
-       * tests/regression/: .cvsignore, HelloWorld.java, Makefile.am,
-         Test.sh, extest.2output, extest.java, fp.java, fp.output,
-         fptest.java, fptest.output, jctest.java, jctest.output:
-         * Added other tests
-
-2005-07-19 10:51  twisti
-
-       * tests/regression/: clinitexception.java, clinitexception.2output:
-         * Ok, now the test is correct
-
-2005-07-19 06:04  michi
-
-       * src/vm/jit/verify/typecheck.c:
-         * added ICMD_IMULPOW2 and ICMD_LMULPOW2
-
-2005-07-19 00:35  twisti
-
-       * configure.in:
-         * Added tests/regression/Makefile
-
-2005-07-19 00:34  twisti
-
-       * tests/Makefile.am:
-         * SUBDIRS: added regression
-
-2005-07-19 00:34  twisti
-
-       * tests/regression/: Makefile.am, clinitexception.java:
-         * Starting to make a regression suite
-
-2005-07-18 23:58  twisti
-
-       * src/vm/jit/mips/asmpart.S:
-         * asm_call_jit_compiler: handle jit compiler exceptions properly
-
-2005-07-18 23:57  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * Set currentline to 0 before basicblock start
-         * Removed some #if 1's
-
-2005-07-18 23:55  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * lineNumberTableEntry: use ptrint as line type, otherwise we ran
-           into alignment problems
-
-2005-07-18 23:54  twisti
-
-       * src/vm/jit/codegen.inc:
-         * dseg_addlinenumbertablesize: better comments, removed this adds4
-           comment (i think it's simpler to do the padding)
-
-2005-07-18 23:42  michi
-
-       * src/vm/jit/codegen.inc:
-         * fixed compiler warning for arm (dseg_adds8 is not used)
-
-2005-07-18 22:07  twisti
-
-       * src/vm/jit/alpha/asmpart.S:
-         * asm_call_jit_compiler: handle jit compiler exceptions properly
-         * some indent changes
-
-2005-07-18 20:52  twisti
-
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_call_jit_compiler: handle jit compiler exceptions properly
-
-2005-07-18 17:07  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Some cleanup, code simplifying, added comments...
-         * cacao_stacktrace_fillInStackTrace: subtract 1 from RA in the jit
-         case
-
-2005-07-18 17:01  twisti
-
-       * configure.in:
-         * Set cacao version to 0.92+cvs
-         * Compile optimization back to -O0
-
-2005-07-18 16:46  twisti
-
-       * src/vm/jit/i386/asmpart.S:
-         * asm_call_jit_compiler: handle jit compiler exceptions properly
-
-2005-07-18 16:35  twisti
-
-       * src/vm/jit/stack.c:
-         * ICMD_INLINE_START: -si display reformatted
-         * -si line reformatted: better display of line number
-
-2005-07-18 13:34  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * cacao_stacktrace_fillInStackTrace: check for m != NULL in
-           inline-stub case, otherwise we get into trouble with
-         asm_calljavafunction
-
-2005-07-13 23:24  twisti
-
-       * ChangeLog:
-         * Changelog for 0.92
-
-2005-07-13 23:13  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * Removed disass.h
-
-2005-07-13 23:07  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * ICMD_IDIV, ICMD_IREM: gcc -O2 workaround: the cast to s8 is
-           missing, so we do it inline
-         * Compiler warning fixes
-
-2005-07-13 21:04  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * Removed unused asmoffsets.h
-
-2005-07-13 20:50  twisti
-
-       * src/vm/jit/i386/patcher.c:
-         * Added #include "mm/memory.h"
-
-2005-07-13 18:12  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * Compiler warning fixes
-         * createnativestub: type in return call trace (m-> to md->)
-
-2005-07-13 14:23  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_PUSH_IMM: added
-
-2005-07-13 14:23  twisti
-
-       * src/vm/jit/stack.c:
-         * stack_init: --disable-threads compilation fix
-
-2005-07-13 14:10  twisti
-
-       * src/native/jni.c:
-         * Compiler warning fix
-
-2005-07-13 13:55  twisti
-
-       * src/lib/Makefile.am:
-         * SUBDIRS: removed
-
-2005-07-13 13:54  twisti
-
-       * src/Makefile.am:
-         * DIST_SUBDIRS: defined explicitly, otherwise we have problems with
-           distclean
-         * CLASSPATH: added classpath/native/fdlibm
-
-2005-07-13 13:52  twisti
-
-       * src/vm/resolve.c:
-         * resolve_classref_or_classinfo: convert ClassNotFoundException in
-           NoClassDefFoundError, there are more functions where this should
-           happen (next release)
-         * Compiler warning fixes
-
-2005-07-13 13:50  twisti
-
-       * src/vm/unzip.c:
-         * Compiler warning fix
-
-2005-07-13 13:45  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * builtintable_entry_debug_dump: removed, sorry edwin, i don't think
-           it was that useful
-
-2005-07-13 13:41  twisti
-
-       * src/vm/jit/: lsra.inc, stack.c, stack.h, stacktrace.c,
-         inline/parseXTA.c, loop/analyze.c, verify/typecheck.c,
-         x86_64/codegen.c:
-         * Compiler warnnig fixes
-
-2005-07-13 13:38  twisti
-
-       * src/native/vm/VMClass.c:
-         * Java_java_lang_VMClass_getDeclaredClasses: bugfix, inner was used
-           instead of outer, thanks go to gcc warnings ;-)
-
-2005-07-13 13:37  twisti
-
-       * src/native/vm/Field.c:
-         * Compiler warning fix
-
-2005-07-13 03:06  twisti
-
-       * configure.in:
-         * Changed cacao version and optimization for 0.92 release
-
-2005-07-13 02:34  twisti
-
-       * configure.in, autogen.sh, m4/acinclude.m4:
-         * AC_C_ATTRIBUTE: check for __attribute__ (required at least by
-         mipspro)
-
-2005-07-13 01:49  twisti
-
-       * src/vm/jit/mips/: asmoffsets.h, asmpart.S, codegen.c, md.c:
-         * Implemented stacktraces
-
-2005-07-13 01:48  twisti
-
-       * src/native/vm/: VMStackWalker.c, VMThrowable.c:
-         * Added mips defines
-
-2005-07-13 01:47  twisti
-
-       * src/vm/jit/codegen.inc:
-         * Removed some defines (line numbers)
-         * Added mips define
-
-2005-07-13 01:46  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Added mips define
-
-2005-07-13 01:44  twisti
-
-       * src/toolbox/util.c:
-         * get_variable_message_length: implemented a irix version, irix
-           returns always -1 if the buffer is null
-
-2005-07-13 00:12  twisti
-
-       * src/vm/jit/i386/Makefile.am:
-         * icmd_uses_reg_res.inc: added
-
-2005-07-12 23:50  twisti
-
-       * src/native/jni.c:
-         * Some functions implemented/corrected
-         * Function header comments
-         * Code formatting
-
-2005-07-12 23:47  twisti
-
-       * src/native/jni.h:
-         * JNI_COMMIT, JNI_ABORT: added
-
-2005-07-12 23:46  twisti
-
-       * contrib/Makefile.am:
-         * Distribute jar's
-
-2005-07-12 23:46  twisti
-
-       * Makefile.am:
-         * Distribute changelogs
-
-2005-07-12 23:34  twisti
-
-       * configure.in:
-         * Removed tests/kaffe/Makefile
-
-2005-07-12 23:03  twisti
-
-       * src/native/vm/VMClass.c:
-         * Compiler warning fix: i leave this, as i want to rewrite the field
-           code, it should throw the exception instead of aborting
-
-2005-07-12 23:02  twisti
-
-       * src/native/include/Makefile.am:
-         * make dist-check fixes
-
-2005-07-12 23:01  twisti
-
-       * src/vm/builtin.c:
-         * builtin_trace_args: remaining paramcount fix
-
-2005-07-12 23:01  twisti
-
-       * src/vm/initialize.c:
-         * Removed JWDEBUG
-
-2005-07-12 23:01  twisti
-
-       * src/vm/builtin.h:
-         * Small typo
-
-2005-07-12 22:58  twisti
-
-       * src/vm/jit/: helper.c, jit.c, stack.c, stack.h:
-         * show_icmd_method: use a monitor since the binutils disassembler is
-           not reentrantable and it would be unreadable if 2 or more thread
-           write assembler
-         * stack_init: added
-
-2005-07-12 21:50  twisti
-
-       * src/vm/Makefile.am:
-         * Typo: renamed string.h to stringlocal.h
-
-2005-07-12 21:36  twisti
-
-       * src/boehm-gc/Makefile.am:
-         * disable check, otherwise make distcheck does not work
-
-2005-07-12 21:36  twisti
-
-       * tests/: Makefile.am, codepatching/Makefile.am,
-         native/Makefile.am:
-         * make dist changes: don't use check but checkall
-
-2005-07-12 18:02  twisti
-
-       * src/vm/jit/mips/: arch.h, asmpart.S, codegen.c, codegen.h, md.c,
-         patcher.c:
-         * Implemented idiv/irem, ldiv/lrem, aastore, arraycheckcast inline
-
-2005-07-12 18:01  twisti
-
-       * src/vm/: builtin.h, builtintable.inc, jit/asmpart.h, jit/parse.c,
-         jit/stack.c, jit/verify/typecheck.c:
-         * Removed stuff for remaining asmpart functions, which are now
-           inlined in jit code.
-
-2005-07-12 17:43  twisti
-
-       * src/vm/jit/i386/freebsd/md-os.c:
-         * New, simpler stacktrace system
-
-2005-07-12 13:20  twisti
-
-       * src/vm/jit/i386/: asmpart.S, codegen.c, linux/md-os.c:
-         * New, simpler, more generic stacktrace system
-
-2005-07-12 11:16  twisti
-
-       * src/vm/jit/powerpc/: codegen.c, md.c, darwin/md-asm.h,
-         darwin/md-os.c:
-         * New, simpler stacktrace system (should be final version)
-
-2005-07-12 10:39  twisti
-
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c, linux/md-os.c:
-         * Newer, simpler stacktrace system
-
-2005-07-12 03:42  michi
-
-       * src/vm/loader.c:
-         * fixed typo when compiled with LOADER_VERBOSE
-
-2005-07-12 03:37  michi
-
-       * src/native/jni.c:
-         * GetEnv: thread_getself is available with native threads only
-
-2005-07-12 00:02  twisti
-
-       * configure.in:
-         * Added alphapca56 architecture
-
-2005-07-12 00:00  twisti
-
-       * src/boehm-gc/alpha_mach_dep.S:
-         * Use C comments instead of #
-
-2005-07-11 23:52  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, codegen.c, md.c:
-         * Again, new and simpler stacktraces
-
-2005-07-11 23:25  twisti
-
-       * src/vm/jit/x86_64/: asmpart.S, codegen.c, md.c:
-         * Newer, simpler, smaller stacktrace system
-
-2005-07-11 23:24  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Again changed the stacktrace system: more specific functions (i
-           hope this is the last time)
-
-2005-07-11 23:23  twisti
-
-       * src/vm/jit/codegen.inc.h:
-         * init_exceptions: removed
-
-2005-07-11 21:27  twisti
-
-       * tests/: extest.java, extest.output:
-         * Updated
-
-2005-07-11 21:01  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * Removed forgotten variable
-
-2005-07-11 20:56  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, codegen.c, codegen.h, md.c,
-         patcher.c:
-         * Implemented new (and new improved) stacktrace system
-
-2005-07-11 20:55  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * More stacktrace changes: mostly to handle exceptions in leaf
-           methods correctly
-
-2005-07-11 19:06  michi
-
-       * src/vm/jit/parse.c: Enabled ICMD_FREM and ICMD_DREM for arm
-
-2005-07-11 13:56  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h:
-         * codegen_findmethod: removed alpha version
-
-2005-07-11 13:14  twisti
-
-       * src/vm/: builtin.h, builtintable.inc, jit/parse.c,
-         jit/verify/typecheck.c:
-         * Added alpha defines for new stacktrace system
-
-2005-07-11 12:35  twisti
-
-       * src/vm/jit/stack.c:
-         * Added alpha defines
-         * show_icmd_method: bugfix when showing exception stubs
-
-2005-07-11 12:13  twisti
-
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c, linux/md-os.c:
-         * Updated stacktrace system again, simpler, smaller and more c code
-
-2005-07-11 11:59  twisti
-
-       * src/toolbox/: util.c, util.h:
-         * get_variable_message_length: the more correct way it to pass the
-           va_list directly
-
-2005-07-11 10:26  twisti
-
-       * src/vm/: linker.c, loader.c:
-         * Comment typos
-
-2005-07-11 00:21  twisti
-
-       * src/vm/jit/x86_64/md.c:
-         * Better (smaller) exception implementation
-
-2005-07-11 00:21  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_MOV_IMM, M_PUSH, M_JMP, M_JMP_IMM, M_CALL: added
-
-2005-07-11 00:20  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Fixed compiler warnings
-
-2005-07-10 23:46  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * stacktrace_new_arithmeticexception,
-           stacktrace_new_arrayindexoutofboundsexception,
-           stacktrace_new_arraystoreexception,
-           stacktrace_new_classcastexception,
-         stacktrace_new_negativearraysizeexception,
-           stacktrace_new_nullpointerexception, stacktrace_fillInStackTrace:
-           added
-         * stacktrace_call_fillInStackTrace: removed
-
-2005-07-10 17:54  twisti
-
-       * src/vm/signal.c:
-         * signal_init: don't install sigquit and sigusr1 handlers for
-           freebsd, we have to find another solution
-
-2005-07-10 17:52  twisti
-
-       * src/vm/jit/i386/freebsd/md-os.c:
-         * Implemented new stacktrace system
-
-2005-07-10 17:33  twisti
-
-       * src/vm/jit/i386/: asmpart.S, codegen.c, codegen.h, patcher.c,
-         linux/md-os.c:
-         * Implemented new stacktrace system
-         * Implemented remaining asmpart functions inline
-
-2005-07-10 17:29  twisti
-
-       * src/vm/jit/i386/md.c:
-         * Fixed typo
-
-2005-07-10 17:24  twisti
-
-       * src/vm/: builtin.h, builtintable.inc, jit/parse.c, jit/stack.c,
-         jit/verify/typecheck.c:
-         * Added i386 defines for new ICMDs
-
-2005-07-10 17:18  twisti
-
-       * src/vm/signal.c:
-         * signal_init: added SA_NODEFER to signal flags for sigsegv and
-         sigfpe
-
-2005-07-10 17:17  twisti
-
-       * src/native/vm/Field.c:
-         * Removed debug output
-
-2005-07-10 13:02  edwin
-
-       * src/vm/jit/verify/typecheck.c: typecheck for ICMD_ARRAYCHECKCAST
-         and ICMD_AASTORE
-
-2005-07-09 20:20  twisti
-
-       * src/: vm/jit/powerpc/darwin/md-os.c, cacaoh/headers.c:
-         * cacao_catch_Handler: removed
-
-2005-07-09 20:10  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * createnativestub: removed linux specific stuff, we just use the
-           darwin stuff, it does not matter, despite that the stack is a little
-         bigger
-
-2005-07-09 20:08  twisti
-
-       * src/vm/jit/powerpc/darwin/md-asm.h:
-         * Added and removed some function name defines
-
-2005-07-09 20:08  twisti
-
-       * src/vm/jit/powerpc/darwin/md-os.c:
-         * Implemented stacktraces
-
-2005-07-09 20:07  twisti
-
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_wrapper_patcher: darwin fixes
-
-2005-07-09 20:06  twisti
-
-       * src/vm/jit/powerpc/md.c:
-         * Wrong md-abi.h was included
-
-2005-07-09 19:30  twisti
-
-       * src/vm/options.c:
-         * Fixed includes
-
-2005-07-09 19:01  twisti
-
-       * tests/extest.java:
-         * Added missing pstacktrace
-
-2005-07-09 17:48  twisti
-
-       * src/vm/jit/powerpc/: arch.h, asmoffsets.h, asmpart.S, codegen.c,
-         codegen.h, patcher.c, linux/md-os.c:
-         * Implemented stacktraces
-         * Remaining asmpart functions inlined
-
-2005-07-09 16:04  twisti
-
-       * src/vm/jit/x86_64/: asmpart.S, codegen.c, codegen.h, md-asm.h,
-         md.c, patcher.c:
-         * Use new, more general, stacktrace system
-         * Implemented remaining asmpart functions inline
-         * Added opt_ prefix to some options
-
-2005-07-09 15:55  twisti
-
-       * src/vm/jit/helper.c:
-         * helper_fillin_stacktrace, helper_fillin_stacktrace_always: removed
-
-2005-07-09 15:49  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Some improvements
-         * Some formatting
-
-2005-07-09 15:38  twisti
-
-       * src/vm/jit/jit.c:
-         * Added opt_ prefix for some options
-
-2005-07-09 15:38  twisti
-
-       * src/vm/jit/stack.c:
-         * Print disassembled code of exception stubs
-
-2005-07-09 15:38  twisti
-
-       * src/vm/jit/codegen.inc:
-         * Added opt_ prefix
-
-2005-07-09 15:37  twisti
-
-       * src/: cacao/cacao.c, vm/options.c, vm/options.h:
-         * opt_showexceptionstubs: added
-         * renamed some options (opt_ prefix)
-
-2005-07-09 14:19  twisti
-
-       * src/vm/: builtin.h, builtintable.inc, jit/parse.c, jit/stack.c,
-         jit/verify/typecheck.c:
-         * Added x86_64 defines
-
-2005-07-09 14:17  twisti
-
-       * src/vm/jit/loop/tracing.c:
-         * ICMD_ARRAYCHECKCAST: added
-
-2005-07-09 14:17  twisti
-
-       * src/vm/jit/i386/asmpart.S:
-         * Fixed some indent
-
-2005-07-09 14:17  twisti
-
-       * src/vm/jit/i386/asmoffsets.h:
-         * Fixed header
-
-2005-07-09 14:16  twisti
-
-       * src/native/vm/VMThrowable.c:
-         * Added powerpc defines
-         * Fixed calculation of trace start, i hope it's correct
-
-2005-07-09 14:15  twisti
-
-       * src/native/vm/VMStackWalker.c:
-         * Added powerpc defines
-
-2005-07-08 17:46  twisti
-
-       * src/vm/jit/verify/typecheck.c:
-         * ICMD_AASTORE, ICMD_ARRAYCHECKCAST: added
-         * powerpc defines for asmpart inlined functions
-
-2005-07-08 17:43  twisti
-
-       * src/vm/builtin.h:
-         * powerpc defines for inlined asmpart functions
-
-2005-07-08 17:42  twisti
-
-       * src/vm/builtintable.inc:
-         * BUILTIN_canstore: added
-
-2005-07-08 17:40  twisti
-
-       * src/vm/loader.c:
-         * loader_load_all_classes: fixed the META-INF bug again, this time
-           it works (i've tested it)
-
-2005-07-08 17:21  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h:
-         * Added xstorerefs
-
-2005-07-08 17:09  twisti
-
-       * src/vm/jit/reg.inc:
-         * ICMD_ARRAYCHECKCAST: added
-
-2005-07-08 17:08  twisti
-
-       * src/vm/jit/parse.c:
-         * changes for inlining asmpart functions
-
-2005-07-08 17:08  twisti
-
-       * src/vm/jit/stack.c:
-         * ICMD_ARRAYCHECKCAST: added
-         * powerpc defines for inlined icmd's from asmpart
-
-2005-07-08 17:06  twisti
-
-       * src/vm/jit/stack.h:
-         * Macro formatting
-
-2005-07-08 14:00  twisti
-
-       * src/vm/jit/tools/genoffsets.c:
-         * Added sizeof(stackframeinfo)
-         * Renamed native_stackframesize to stackframesize
-
-2005-07-08 13:59  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * stacktrace_create_inline_stackframeinfo,
-           stacktrace_create_native_stackframeinfo,
-           stacktrace_remove_stackframeinfo,
-           stacktrace_call_fillInStackTrace: added
-         * Renamed native_stackframeinfo to stackframeinfo
-
-2005-07-08 13:57  twisti
-
-       * src/vm/jit/: jit.c, jit.h:
-         * ICMD_ARRAYCHECKCAST: added
-
-2005-07-08 13:49  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, patcher.c:
-         * Save pv to the position of the patcher function pointer
-
-2005-07-08 13:45  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * md_stacktrace_get_returnaddress: added
-
-2005-07-08 11:40  twisti
-
-       * tests/codepatching/Makefile.am:
-         * Removed -noverify from JAVA
-
-2005-07-07 18:35  christian
-
-       * src/vm/jit/powerpc/: darwin/md-abi.c, linux/md-abi.c: removed
-         typing error (! missing in md_return_alloc)
-
-2005-07-07 17:45  twisti
-
-       * src/vm/loader.c:
-         * loader_load_all_classes: skip META-INF entries
-
-2005-07-07 16:33  christian
-
-       * src/vm/jit/stack.c: Output RA instead of A-1 for allocated return
-         values with -sa
-
-2005-07-07 11:41  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * don't include "md.h", not needed
-
-2005-07-07 11:37  twisti
-
-       * src/vm/jit/powerpc/Makefile.am:
-         * EXTRA_DIST: removed
-         * md.c added
-
-2005-07-07 11:36  twisti
-
-       * src/vm/jit/powerpc/: linux/md.h, darwin/md.h:
-         * Not required
-
-2005-07-07 11:27  twisti
-
-       * src/vm/jit/powerpc/md.c:
-         * Moved os independent stuff here from linux/md.c, darwin/md.c
-
-2005-07-07 11:26  twisti
-
-       * src/vm/jit/powerpc/: darwin/Makefile.am, darwin/md-os.c,
-         darwin/md.c, linux/Makefile.am, linux/md-os.c, linux/md.c:
-         * Renamed md.c to md-os.c
-
-2005-07-06 23:23  twisti
-
-       * src/vm/jit/powerpc/codegen.h:
-         * Formatted some macros a bit
-
-2005-07-05 16:00  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * More changes
-
-2005-07-05 16:00  twisti
-
-       * src/vm/jit/i386/md.c:
-         * Machine dependent, but os independent functions
-
-2005-07-05 16:00  twisti
-
-       * src/vm/jit/i386/Makefile.am:
-         * Added md.c
-
-2005-07-05 15:59  twisti
-
-       * src/vm/jit/i386/: freebsd/Makefile.am, freebsd/md-os.c,
-         freebsd/md.c, linux/Makefile.am, linux/md-os.c, linux/md.c:
-         * Renamed md.c to md-os.c
-
-2005-07-05 15:40  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Cleanup and trying to make the functions a bit simpler and
-         clearer.
-
-2005-07-05 15:39  twisti
-
-       * src/vm/jit/: x86_64/md.c, stacktrace.h:
-         * md_stacktrace_get_returnaddress: added
-
-2005-07-05 13:18  twisti
-
-       * src/native/native.c:
-         * native_resolve_function: bugfix, just always generate overloaded
-           function name, this should not happen that often and it's easier
-         this way
-
-2005-07-05 12:04  twisti
-
-       * src/native/native.c:
-         * native_get_exceptiontypes: bugfix, removed excount and just use
-           the methodinfo data
-
-2005-07-05 10:49  twisti
-
-       * src/vm/jit/alpha/asmpart.S:
-         * asm_calljavafunction/2: calculate pv recalculate value with labels
-         * some cosmetic changes
-
-2005-07-05 10:48  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * INVOKESPECIAL: use software null pointer, checking a register
-           should be faster than accessing memory
-         * createnativestub: save floats with M_FST for native functions
-
-2005-07-05 10:46  twisti
-
-       * src/vm/builtin.c:
-         * builtin_new: removed commented debug output
-
-2005-07-04 23:32  christian
-
-       * tests/native/test.output: New jni Version Number
-
-2005-07-04 23:28  twisti
-
-       * contrib/Makefile.am:
-         * Install kjc and gnu.getopt
-
-2005-07-04 23:27  twisti
-
-       * contrib/.cvsignore:
-         * Ignore generated files
-
-2005-07-04 23:21  twisti
-
-       * configure.in:
-         * rmic: removed
-         * contrib, javac: added
-
-2005-07-04 23:21  twisti
-
-       * Makefile.am:
-         * SUBDIRS: added contrib
-
-2005-07-04 23:20  twisti
-
-       * src/scripts/: .cvsignore, Makefile.am, javac.in, kjc.in:
-         * javac.in: added
-
-2005-07-04 23:09  twisti
-
-       * contrib/: java-getopt-1.0.11.jar, kjc-2.2C-bin.jar:
-         * The compiler we want to use
-
-2005-07-04 23:02  christian
-
-       * src/vm/builtin.c: debug helper removed
-
-2005-07-04 22:45  christian
-
-       * tests/extest.output: output file for extest.java corrected
-
-2005-07-04 22:41  twisti
-
-       * src/threads/native/: threads.c, threads.h:
-         * thread_getself: implemented
-
-2005-07-04 22:40  twisti
-
-       * src/native/jni.c:
-         * GetEnv: call thread_getself, but i don't know if this is correct
-
-2005-07-04 22:39  twisti
-
-       * src/cacao/cacao.c:
-         * Added -verbose:[class|gc|jni], yet only jni works
-
-2005-07-04 22:38  twisti
-
-       * src/mm/boehm.c:
-         * Renamed collectverbose to opt_verbosegc (but it still does not
-         work)
-
-2005-07-04 22:38  christian
-
-       * tests/: Makefile.am, Test.sh, extest.2output, param_test.java,
-         param_test.output, native/Makefile.am, native/checkjni.output,
-         native/test.output, native/testarguments.output: Test script for
-         make chekall added
-
-2005-07-04 22:38  twisti
-
-       * src/vm/: options.c, options.h:
-         * collectverbose: removed
-         * opt_verbosejni, opt_verbosegc: added
-
-2005-07-04 22:35  twisti
-
-       * src/native/vm/: Constructor.c, Method.c, VMClass.c,
-         VMClassLoader.c:
-         * Updated to classpath 0.16
-
-2005-07-04 22:33  twisti
-
-       * src/native/native.h:
-         * stringtable_update, get_type: removed
-         * native_get_parametertypes, native_get_exceptiontypes,
-           native_get_returntype: prefixed with native_
-
-2005-07-04 22:31  twisti
-
-       * src/native/native.c:
-         * native_resolve_function: implemented -verbose:jni
-         * native_get_parametertypes, native_get_exceptiontypes,
-           native_get_returntype: prefixed with native_ and some changes
-
-2005-07-03 18:41  christian
-
-       * src/vm/jit/powerpc/: linux/md-abi.h, darwin/md-abi.h: Register
-         packing Macros moved to codegen.inc.h
-
-2005-07-03 18:40  christian
-
-       * src/vm/jit/powerpc/codegen.c: Both builtin_trace_args calls moved
-         into a function. Call Stack generation for Linux corrected.
-
-2005-07-03 18:38  christian
-
-       * src/vm/builtin.c: Preliminary Bugfix for PowerPC/Linux. Only 3
-         parameters are handled correctly by sprintf in C-Code
-
-2005-07-03 18:37  christian
-
-       * src/vm/jit/codegen.inc.h: Preliminary Bugfix for PowerPC/Linux -
-         only 3 Params are handled correctly by sprintf in C-Code
-
-2005-07-02 16:05  edwin
-
-       * src/vm/jit/verify/typeinfo.c: fix subclass testing in typeinfo.c:
-         check subclass relationship using the merged list if the common type
-         is not a subclass of the destination type.  This has become
-         necessary because of lazy loading since the class hierarchy may
-         change dynamically and there may be unresolved types in the merged
-         list.
-
-2005-07-02 15:59  edwin
-
-       * tests/Makefile.am: removed -noverify option
-
-2005-07-01 00:36  twisti
-
-       * src/vm/jit/powerpc/linux/md-abi.c:
-         * md_param_alloc: simplified a bit
-
-2005-06-30 23:45  twisti
-
-       * src/native/jni.c:
-         * fill_callblock_from_vargs: float passing fix
-
-2005-06-30 22:54  twisti
-
-       * tests/native/testarguments.java:
-         * Use functions for test for better debugability.
-
-2005-06-30 16:42  twisti
-
-       * src/native/jni.c:
-         * Always sign-extend the item values to 8-bytes in the call blocks,
-           made problems on alpha and mips
-
-2005-06-30 12:10  twisti
-
-       * tests/extest.java:
-         * Added native clinit exception, for staticvm just catch the
-           UnsatisfiedLinkError
-
-2005-06-30 11:58  twisti
-
-       * src/cacaoh/cacaoh.c:
-         * OPT_VERBOSE: added load/linkverbose
-         * version: print part of GNU header
-         * Better use strlen("0") instead of 1
-
-2005-06-30 11:55  twisti
-
-       * src/cacaoh/headers.c:
-         * native_findfunction: return non-NULL, otherwise we get an
-         exception
-
-2005-06-30 11:54  twisti
-
-       * src/native/tools/Makefile.am:
-         * Link with fdlibm
-
-2005-06-30 11:18  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * M_RET: added
-
-2005-06-30 11:16  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * Use some risc-style macros
-
-2005-06-29 16:57  twisti
-
-       * src/vm/builtin.c:
-         * builtin_fdiv, builtin_ddiv, builtin_dneg: implemented correcly as
-           described in VM spec (plus comments), more to come!
-
-2005-06-29 16:55  twisti
-
-       * tests/: fptest.java, fptest.output:
-         * Added some tests
-
-2005-06-29 14:42  christian
-
-       * src/vm/jit/: i386/md-abi.c, powerpc/darwin/md-abi.c,
-         powerpc/linux/md-abi.c, x86_64/md-abi.c: md_return_alloc added to
-         precolor the stack slots containing the return values to the return
-         register and regard integer/float argument use.
-
-2005-06-29 14:40  christian
-
-       * src/vm/jit/: alpha/md-abi.c, mips/md-abi.c: md_return_alloc coded
-         to precolour stack slots holding the return register.
-         rd->arg[int|flt]reguse calculation in md_param_alloc corrected.
-
-2005-06-29 14:39  christian
-
-       * src/vm/jit/: stack.c, stack.h: Precoloring of stackslot holding
-         the return value to the return register(s) implemented.  (
-         md_return_alloc )
-
-         ----------------------------------------------------------------------
-
-2005-06-28 21:01  twisti
-
-       * src/mm/nogc.c:
-         * gc_ignore_warnings: removed, it was not used
-
-2005-06-28 20:53  twisti
-
-       * src/vm/linker.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * Check for exception in native_findfunction
-
-2005-06-28 20:52  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Put some logging in JWDEBUG
-
-2005-06-28 20:50  twisti
-
-       * configure.in:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * Don't check for libm, we use fdlibm instead
-         * Build GTK peers by default
-
-2005-06-28 20:47  twisti
-
-       * src/native/vm/VMThread.c:
-         * Java_java_lang_VMThread_isAlive: removed
-         * Java_java_lang_VMThread_nativeInit: removed
-         * Java_java_lang_VMThread_registerNatives: removed
-         * Removed some logging
-
-2005-06-28 20:45  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * Set java.version to 1.4.2
-         * Use strlen("0") instead of 1
-
-2005-06-28 20:44  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-
-2005-06-28 20:39  twisti
-
-       * src/native/native.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * use_class_as_object: changed return type from void to bool
-         * native_findfunction: throw an exception if native function is not
-         found
-
-2005-06-28 20:38  twisti
-
-       * src/native/native.h:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * use_class_as_object: changed return type from void to bool
-
-2005-06-28 20:37  twisti
-
-       * src/native/: Makefile.am, include/Makefile.am:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-
-2005-06-28 20:36  twisti
-
-       * src/cacaoh/Makefile.am:
-         * Link against fdlibm instead of libm
-
-2005-06-28 20:36  twisti
-
-       * src/cacaoh/headers.c:
-         * new_exception_javastring: added
-
-2005-06-28 20:35  twisti
-
-       * src/cacao/Makefile.am:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-         * Link with fdlibm instead of libm
-
-2005-06-28 20:34  twisti
-
-       * src/lib/Makefile.am:
-         * Added SUBDIRS: we have to build fdlibm since this library contains
-           suitable math functions (e.g. IRIX fmod bug)
-
-2005-06-28 20:33  twisti
-
-       * src/vm/jit/: alpha/codegen.c, i386/codegen.c, mips/codegen.c,
-         powerpc/codegen.c:
-         * Renamed STATIC_CLASSPATH to ENABLE_STATICVM
-
-2005-06-28 20:32  twisti
-
-       * src/vm/jit/x86_64/disass.c:
-         * Only cosmetic changes
-
-2005-06-28 20:24  twisti
-
-       * src/native/vm/VMObject.c:
-         * Java_java_lang_VMObject_wait: changed signature in comment,
-           renamed params link in classpath
-
-2005-06-28 20:22  twisti
-
-       * src/lib/.cvsignore:
-         * Ignore classes, vm.zip
-
-2005-06-28 18:05  twisti
-
-       * src/cacao/cacao.c:
-         * Ooops, i should use a java string instead of an utf...
-
-2005-06-28 17:51  twisti
-
-       * src/scripts/.cvsignore:
-         * Ignore kjc, rmic
-
-2005-06-28 17:41  twisti
-
-       * src/cacao/cacao.c:
-         * Added OPT_SHOWVERSION, OPT_HELP, OPT_X
-         * Xusage: implemented, print non-standard Java options
-         * usage: reformatted
-         * version: added first part of GNU header
-         * getmainclassnamefromjar: forget JNI and use cacao internal
-           functions, better error handling
-
-2005-06-28 14:46  twisti
-
-       * src/native/jni.c:
-         * AttachCurrentThread: added function header comment
-
-2005-06-27 22:59  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * Set MCODECHECK sizes much higher, so we don't run into trouble. I
-           think this does not make any performance breakdown, since code
-           segment increase happens first after 32KB.
-
-2005-06-27 21:58  twisti
-
-       * src/boehm-gc/autogen.sh:
-         * Ooops, a darwin accident
-
-2005-06-27 21:55  twisti
-
-       * src/boehm-gc/: Makefile.am, Makefile.direct, aix_irix_threads.c,
-         allchblk.c, alloc.c, autogen.sh, backgraph.c, configure.in,
-         darwin_stop_world.c, dyn_load.c, finalize.c, mach_dep.c,
-         mallocx.c, mark.c, mark_rts.c, misc.c, os_dep.c,
-         powerpc_darwin_mach_dep.s, pthread_stop_world.c,
-         pthread_support.c, reclaim.c, solaris_pthreads.c,
-         solaris_threads.c, specific.c, threadlibs.c, version.h,
-         win32_threads.c, cord/cordprnt.c, cord/cordtest.c, doc/README,
-         doc/README.changes, doc/README.darwin, doc/README.environment,
-         doc/README.solaris2, include/gc.h, include/gc_config_macros.h,
-         include/gc_cpp.h, include/new_gc_alloc.h,
-         include/private/gc_hdrs.h, include/private/gc_locks.h,
-         include/private/gc_priv.h, include/private/gcconfig.h,
-         include/private/pthread_support.h, tests/test.c:
-         * Updated to boehm 6.5
-         * Use DARWIN_DONT_PARSE_STACK on powerpc-darwin
-
-2005-06-27 17:51  twisti
-
-       * src/mm/memory.c:
-         * Added DISABLE_DUMP: use normal malloc in dump functions
-
-2005-06-27 17:50  twisti
-
-       * configure.in:
-         * --disable-dump: added, this disables the use of the dump memory
-           and should ease debugging for heap corruption
-
-2005-06-27 17:03  twisti
-
-       * src/native/native.c:
-         * native_make_overloaded_function: heap corruption bugfix, forgot to
-           add the initial name length + \0
-
-2005-06-27 16:21  christian
-
-       * src/vm/jit/powerpc/codegen.c: Typing error from last commit fixed
-
-2005-06-27 16:19  christian
-
-       * src/vm/jit/powerpc/codegen.c: Reserve stack space for saving
-         return values to survive monitorexit according to the type
-
-2005-06-27 14:07  twisti
-
-       * src/vm/jit/x86_64/md.c:
-         * md_init: added
-
-2005-06-27 12:55  christian
-
-       * src/vm/jit/powerpc/codegen.c: Correct saving of integer return
-         register for [AIL]RETURN for monitorexit
-
-2005-06-27 10:58  twisti
-
-       * src/native/include/.cvsignore:
-         * Ignore ADDITIONAL_STATIC_CLASSPATH_HEADER_FILES
-
-2005-06-27 01:53  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * Bugfix: check return type for IS_2_WORD_TYPE and save more space
-           on stack for monitorexit
-         * use more risc macros
-
-2005-06-27 01:51  twisti
-
-       * src/vm/jit/i386/codegen.h:
-         * M_ALD, M_AST: macros added
-
-2005-06-26 23:48  christian
-
-       * src/vm/jit/powerpc/: darwin/md-abi.c, linux/md-abi.c: correct
-         handling for register usage for return types
-
-2005-06-26 23:48  christian
-
-       * src/vm/jit/powerpc/codegen.h: one M_ILD in var_to_reg_int too
-         much
-
-2005-06-26 23:47  christian
-
-       * src/vm/descriptor.c: md_param_alloc has to be called if
-         paramcount==0, too
-
-2005-06-26 15:06  twisti
-
-       * src/vm/jit/i386/linux/md.c:
-         * md_init: added
-
-2005-06-26 13:39  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * Added md_init
-
-2005-06-25 17:31  twisti
-
-       * src/vm/jit/powerpc/: darwin/md.c, linux/md.c:
-         * Added md_init
-
-2005-06-25 17:29  twisti
-
-       * src/vm/jit/i386/freebsd/md.c:
-         * Removed machine independent stuff
-         * Renamed handlers
-         * Added md_init
-
-2005-06-25 16:47  twisti
-
-       * src/cacao/cacao.c:
-         * Use strlen("0") instead of 1
-         * Call md_init, i think after jit_init is a good place
-
-2005-06-25 15:43  twisti
-
-       * src/vm/jit/mips/md.c:
-         * Removed machine independent stuff
-         * Renamed handler
-         * Added md_init
-
-2005-06-25 15:42  twisti
-
-       * src/vm/jit/jit.h:
-         * Added md_init prototype (i think this is the best place)
-
-2005-06-25 15:37  twisti
-
-       * src/vm/builtin.c:
-         * builtin_displaymethodstop: print hex values of integer/float
-           return values
-
-2005-06-25 15:31  twisti
-
-       * src/vm/jit/stack.c:
-         * ICMD_{GET,PUT}STATIC: print (NOT INITIALIZED) for uninitialized
-         classes
-
-2005-06-25 15:29  twisti
-
-       * src/vm/jit/stack.c:
-         * Print hex value for ICMD_FCONST, ICMD_DCONST
-         * Use %g instead of %f for ICMD_DCONST
-
-2005-06-25 15:25  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         * builtin_asm_get_stackframeinfo: don't declare as inline since this
-           results in linking problems (at least on irix)
-
-2005-06-24 21:46  christian
-
-       * src/vm/jit/reg.inc: Use of unused argument registers in leaf
-         methods enabled, too
-
-2005-06-24 17:11  christian
-
-       * src/vm/jit/reg.inc: Use of unused argument registers as temp
-         registers again enabled
-
-2005-06-24 17:11  christian
-
-       * src/vm/jit/stack.c: Typing error corrected (argINTreguse instead
-         of argFLTreguse)
-
-2005-06-23 19:49  edwin
-
-       * src/vm/jit/verify/: typeinfo.c, typeinfo.h: comments renamed
-         typeinfo_init_from_methoddesc to typeinfos_...
-
-2005-06-23 17:22  twisti
-
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_call_jit_compiler: use store macros on linux and in the
-           meantime inlined code for darwin (till i find something that works)*
-             asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-               asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-                 asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-                 asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-                   asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-                     asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)*
-                       asm_call_jit_compiler: use store macros on linux and in the meantime
-         inlined code for darwin (till i find something that works)
-
-2005-06-23 17:21  twisti
-
-       * src/vm/jit/powerpc/linux/md.c:
-         * Removed machine independent stuff
-         * Renamed handler
-
-2005-06-23 17:20  twisti
-
-       * src/vm/jit/powerpc/linux/md-asm.h:
-         * Removed redundant )'s
-
-2005-06-23 16:49  christian
-
-       * src/vm/jit/powerpc/codegen.h: Typing errors corrected
-
-2005-06-23 16:30  christian
-
-       * src/vm/jit/powerpc/linux/md-abi.c: Index for intargregs for long
-         Parameters get packed now
-
-2005-06-23 16:30  christian
-
-       * src/vm/jit/powerpc/linux/md-abi.h: Corrected INT_XXX_CNT Register
-         packing macros added
-
-2005-06-23 16:19  christian
-
-       * src/vm/jit/: reg.inc, stack.c, powerpc/codegen.c,
-         powerpc/codegen.h, powerpc/darwin/md-abi.c,
-         powerpc/darwin/md-abi.h: Register Packing macros moved to
-         md-abi.h No more *_SECOND_* and *_FIRST_*, all this macros operate
-         now only on high and low part, according to the machine
-         architecture.
-
-2005-06-23 16:03  edwin
-
-       * src/: cacaoh/headers.c, vm/resolve.c, vm/jit/verify/typecheck.c,
-         vm/jit/verify/typeinfo.c, vm/jit/verify/typeinfo.h: exception
-         handling in typeinfo.c and typecheck.c possible bugfix in
-         typestate_merge cleaned up typecheck.c, use verifier_state where
-         possible set leafmethod=false if patcher needed for field access
-         lots of comments added
-
-2005-06-23 16:00  twisti
-
-       * src/boehm-gc/: misc.c, os_dep.c, include/private/gc_priv.h:
-         * Removed darwin stuff for old hardware nullpointer handling (this
-           are the original boehm-gc6.3 files)
-
-2005-06-23 15:53  twisti
-
-       * src/vm/jit/powerpc/darwin/md.c:
-         * Use sigaction for sigsegv handler
-         * Removed machine independent stuff
-         * Renamed handler
-
-2005-06-23 15:51  twisti
-
-       * src/vm/jit/powerpc/disass.c:
-         * generic_print_address: fixed typo which generated a wrong address
-
-2005-06-23 15:51  twisti
-
-       * src/vm/jit/powerpc/asmpart.S:
-         * asm_handle_nullptr_exception: removed
-         * asm_call_jit_compiler: use some defines to calculate the stack
-         offsets
-
-2005-06-23 15:50  twisti
-
-       * src/vm/jit/parse.c:
-         * JAVA_{GET,PUT}{STATIC,FIELD}: check for initialized in !opt_verify
-
-2005-06-23 15:40  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * Removed machine independent stuff
-         * Renamed handler
-
-2005-06-23 15:19  twisti
-
-       * src/vm/jit/verify/typeinfo.c:
-         * Time for -Werror
-
-2005-06-23 13:12  twisti
-
-       * src/vm/stringlocal.h:
-         * Include global.h before java_lang_String.h
-
-2005-06-23 12:14  twisti
-
-       * src/vm/jit/i386/linux/md.c:
-         * Removed machine independent stuff
-         * Renamed handlers
-
-2005-06-23 12:09  twisti
-
-       * src/threads/native/threads.c:
-         * thread_dump: send SIGUSR1 to all threads, this maybe has to be
-           changed since boehm uses USR1 on some archs for suspend
-
-2005-06-23 11:54  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Added: stacktrace_dump_trace
-
-2005-06-23 11:52  twisti
-
-       * src/cacao/cacao.c:
-         * Renamed init_exceptions to signal_init
-
-2005-06-23 11:51  twisti
-
-       * src/vm/jit/x86_64/md.c:
-         * Removed machine independent stuff
-         * Renamed handlers
-
-2005-06-23 11:42  twisti
-
-       * src/vm/: descriptor.h, jit/alpha/md.h, jit/i386/md-abi.h,
-         jit/mips/md.h, jit/powerpc/darwin/md.h, jit/powerpc/linux/md.h,
-         jit/x86_64/md.h:
-         * Moved md_param_alloc prototype to decriptor.h
-
-2005-06-23 11:34  twisti
-
-       * src/vm/Makefile.am:
-         * Added: signal.c, signallocal.h
-
-2005-06-23 11:34  twisti
-
-       * src/vm/: signal.c, signallocal.h:
-         * Machine independent signal handler stuff.
-
-2005-06-23 11:30  twisti
-
-       * src/vm/jit/loop/loop.c:
-         * Include stdlib.h again to prevent a compiler warning, till i can
-           fix the code and use cacao memory macros
-
-2005-06-23 00:07  edwin
-
-       * src/vm/jit/verify/typeinfo.c: added comments and assertions,
-         minor cleanup
-
-2005-06-22 22:28  edwin
-
-       * src/vm/jit/verify/typeinfo.c: added comments (and some
-         assertions)
-
-2005-06-22 18:27  edwin
-
-       * src/vm/resolve.c: fix error message code: utf_sprint
-         declarer->name, not declarer
-
-2005-06-22 18:16  edwin
-
-       * src/native/jni.c: added checkaccess parameter to
-         resolve_class_from_typedesc
-
-2005-06-22 18:08  edwin
-
-       * src/: native/native.c, native/vm/Field.c, native/vm/VMClass.c,
-         vm/linker.c, vm/resolve.c, vm/resolve.h, vm/jit/helper.c,
-         vm/jit/parse.c, vm/jit/inline/inline.c, vm/jit/inline/parseRT.c,
-         vm/jit/inline/parseXTA.c, vm/jit/verify/typecheck.c,
-         vm/jit/verify/typeinfo.c, vm/jit/verify/typeinfo.h: added
-         checkaccess parameter to resolve_class* functions improved exception
-         handling in typeinfo.c do not check access rights to classes for
-         subtype checks
-
-2005-06-22 15:24  edwin
-
-       * src/vm/jit/verify/typecheck.c: fixed undefined return value of
-         verify_init_locals
-
-2005-06-22 14:38  edwin
-
-       * src/vm/jit/verify/typecheck.c: made verify_ functions static
-
-2005-06-22 14:32  edwin
-
-       * src/vm/jit/verify/typecheck.c: introducted verifier_state
-         structure started to split monster function typecheck() into several
-         functions move towards verifiying lazy loading some comments
-
-2005-06-22 14:09  edwin
-
-       * src/vm/resolve.c: fix subtype checking for merged array types
-         better error message if subtype test fails added some
-         RESOLVE_VERBOSE message (maybe remove later)
-
-2005-06-22 14:05  edwin
-
-       * src/vm/jit/parse.c: if (opt_verify) set iptr->val.a to NULL to
-         indicate unresolved reference
-
-2005-06-22 14:03  edwin
-
-       * src/cacaoh/headers.c: added stubs for typeinfo functions
-
-2005-06-22 12:51  twisti
-
-       * src/vm/jit/codegen.inc:
-         * Added opt_shownativestub to show disassembled native stubs
-         * Bugfix: dump_release was a bit too early (we need cd for
-         debugging)
-
-2005-06-22 12:51  twisti
-
-       * src/: cacao/cacao.c, vm/options.c, vm/options.h:
-         * Added opt_shownativestub to show disassembled native stubs
-
-2005-06-22 12:28  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_get_putfield: only patch back 5-bytes, since the
-           instruction is smaller than 8-bytes
-         * Added machine code comments to function headers
-
-2005-06-22 12:02  christian
-
-       * src/vm/jit/reg.inc: Variables for later to be corrected argument
-         register use commented out correctly
-
-2005-06-22 11:51  christian
-
-       * src/vm/jit/: alpha/md-abi.h, mips/md-abi.h,
-         powerpc/darwin/md-abi.h: Added/Corrected
-         [INT|ADR|FLT]_[REG|TMP|SAV|ARG|RES]_CNT defines
-
-2005-06-22 11:49  christian
-
-       * src/vm/jit/lsra.inc: Adopted to compile with the registerdata
-         changes. Not to be used for now.
-
-2005-06-22 11:48  christian
-
-       * src/vm/jit/i386/md-abi.c: Correct entries in Authors/Changes
-
-2005-06-22 11:47  christian
-
-       * src/vm/jit/: reg.h, reg.inc, stack.c, i386/codegen.c,
-         alpha/codegen.c, mips/codegen.c, powerpc/codegen.c,
-         x86_64/codegen.c: Changes in the registerdata structure: all
-         max*, if* are put together with the corresponding member all members
-         for the number of registers are replaced by #defines in the
-         appropriate md-abi.h ( [INT|ADR|FLT]_[REG|TMP|SAV|ARG|RES]_CNT )
-
-2005-06-22 11:26  twisti
-
-       * src/vm/jit/i386/patcher.c:
-         * Only patch back 5 bytes code (call size) since 8 bytes may
-           overwrite a instruction of the next basic block
-
-2005-06-22 11:24  twisti
-
-       * src/vm/builtintable.inc:
-         * Added a filler entry to builtintable_automatic to prevent a
-           compiler warning where all ICMDs are supported (e.g. i386)
-
-2005-06-22 11:23  twisti
-
-       * src/vm/builtin.c:
-         * builtintable_sort_internal: removed, we don't need it
-         * subtract 1 from automatic table size (compiler warning filler)
-
-2005-06-21 17:53  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * Added M_ALD, M_AST macros
-
-2005-06-21 17:52  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * Fixed nasty eclipse show-stopper: x86_64_mov_imm_membase moves
-           32-bit sign-extended to a 64-bit location
-
-2005-06-21 17:51  twisti
-
-       * src/vm/jit/: stacktrace.c, stacktrace.h:
-         * Some code cleanup, so maybe one day i can understand the code
-
-2005-06-21 13:47  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * createnativestub: removed machine independent code
-         * started to use macros like on Alpha
-
-2005-06-21 13:46  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * Added M_LADD, M_AADD macros
-
-2005-06-21 12:40  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         * Bugfix: membase %rsp/%r12 special case
-
-2005-06-21 12:18  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * createnativestub: removed machine independent code
-
-2005-06-21 11:19  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * createnativestub: removed machine independent code
-
-2005-06-21 01:09  stefan
-
-       * src/threads/native/threads.c: fixed a deadlock introduced by
-         previous patch
-
-2005-06-21 00:46  stefan
-
-       * src/threads/native/threads.h: let's clear this up a bit
-
-2005-06-21 00:36  stefan
-
-       * src/threads/native/threads.c: let's clear this up a bit
-
-2005-06-21 00:14  stefan
-
-       * src/threads/native/threads.c: replaced one hack by another
-
-2005-06-20 23:56  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * Set java.version to 1.4.1 for eclipse-3.1
-
-2005-06-20 23:14  edwin
-
-       * src/vm/: resolve.c, jit/verify/typecheck.c: do not check
-         protected access for methods of arrays (problem with clone method)
-         work on lazy loading verification
-
-2005-06-20 22:53  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * createnativestub: removed machine independent code
-
-2005-06-20 20:25  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h, alpha/codegen.c:
-         * Moved machine independent code from createnativestub to
-           codegen_createnativestub
-
-2005-06-20 17:23  edwin
-
-       * src/vm/resolve.c: fix merging error
-
-2005-06-20 17:19  edwin
-
-       * src/vm/resolve.c: some fixes
-
-2005-06-20 17:18  edwin
-
-       * src/cacaoh/headers.c: added stub for typeinfo_init_class
-
-2005-06-20 17:13  edwin
-
-       * src/vm/jit/jit.h: added two macros for PUT{FIELD,STATIC}CONST
-
-2005-06-20 17:11  edwin
-
-       * src/vm/jit/verify/: typecheck.c, typeinfo.c: move the verifier
-         towards lazy loading
-
-2005-06-20 17:04  edwin
-
-       * src/vm/jit/verify/typeinfo.h: turn on TYPECHECK_DEBUG, turn off
-         TYPECHECK_VERBOSE
-
-2005-06-20 17:01  twisti
-
-       * src/vm/resolve.c:
-         * Come on... it's not that hard!
-
-2005-06-20 17:00  edwin
-
-       * src/vm/descriptor.c: shorter debug dump for parsed descriptors
-
-2005-06-20 15:06  edwin
-
-       * src/vm/: builtin.c, builtin.h: added
-         builtintable_entry_debug_dump
-
-2005-06-20 14:01  edwin
-
-       * src/vm/resolve.c: some work on the resolve functions for
-         verification
-
-2005-06-20 13:59  edwin
-
-       * src/vm/: builtin.c, descriptor.c, descriptor.h, loader.c: fixed
-         classref field for 'this' parameter in methoddescs
-
-2005-06-20 13:54  edwin
-
-       * src/vm/: class.c, class.h: added class_get_self_classref, should
-         be made faster, however
-
-2005-06-20 11:58  twisti
-
-       * src/vm/jit/x86_64/md.c:
-         * handler_signal_quit: added, this handler calls the thread_dump
-           function when SIGQUIT is received
-
-2005-06-20 11:57  twisti
-
-       * src/vm/: utf8.c, utf8.h:
-         * Added utf_run
-
-2005-06-20 11:56  twisti
-
-       * src/threads/native/threads.c:
-         * Started to implement thread_dump
-         * threadstartup: use global utf variables
-
-2005-06-20 11:53  twisti
-
-       * src/threads/native/threads.h:
-         * Added thread_dump
-
-2005-06-18 18:37  edwin
-
-       * src/vm/: resolve.c, resolve.h, jit/parse.c: split
-         create_unresolved_* functions in create_* and constrain_* parts
-         create_ functions are called in parse.c constrain_ functions will be
-         called by typecheck.c
-
-2005-06-18 16:55  edwin
-
-       * src/vm/: descriptor.c, descriptor.h: added comments and a little
-         fix to parameter allocation use METHODDESC_NOPARAMS to indicate
-         number of allocated params == 0 moved descriptor parsing macros to
-         descriptor.c
-
-2005-06-18 11:20  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * Use code/data segment in native stub
-
-2005-06-17 15:38  twisti
-
-       * src/vm/jit/alpha/md.c:
-         * Alpha signal stuff
-
-2005-06-17 15:01  twisti
-
-       * src/vm/jit/codegen.inc:
-         * codegen_createnativestub: passed wrong length to
-           codegen_disassemble_nativestub, added show data segment code
-
-2005-06-17 14:18  twisti
-
-       * src/vm/jit/x86_64/asmpart.S:
-         * asm_calljavafunction2: keep stack 16-byte aligned
-
-2005-06-17 14:14  twisti
-
-       * src/vm/jit/alpha/Makefile.am:
-         * Added md.c
-
-2005-06-17 14:14  twisti
-
-       * src/vm/jit/alpha/types.h:
-         * Just typos
-
-2005-06-17 13:24  twisti
-
-       * tests/codepatching/test.java:
-         * Added putfieldconst zero for risc architectures
-
-2005-06-17 10:12  twisti
-
-       * src/vm/jit/i386/freebsd/md.c:
-         * Include correct signal.h
-
-2005-06-17 10:12  twisti
-
-       * src/vm/linker.c:
-         * Don't use native_findfunction with non-static classpath
-         * compile warning fix
-
-2005-06-17 10:11  twisti
-
-       * src/native/native.c:
-         * bug fixing in native library hash code, it should work now
-           completely, at least it does on FreeBSD.
-
-2005-06-17 00:08  twisti
-
-       * src/native/include/.cvsignore:
-         * ignore generated header files (static ones are still missing)
-
-2005-06-16 21:10  edwin
-
-       * src/: native/vm/VMClassLoader.c, vm/class.c, vm/classcache.c,
-         vm/classcache.h, vm/linker.c, vm/loader.c, vm/loader.h: class
-         loading synchronization: throw away loaded class if a class with the
-         same (loader,name) pair has already been defined/loaded.
-
-2005-06-16 13:57  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * Insert stackframesize in method header
-         * Fixed 16-bit offset overflow in patcher stub, so jalopy works, but
-           this should be done for all loads (but how?)
-
-2005-06-16 13:56  twisti
-
-       * src/vm/jit/powerpc/codegen.h:
-         * Small fix: let M_ALD use M_ILD
-
-2005-06-16 13:55  twisti
-
-       * src/vm/jit/powerpc/darwin/md-abi.c:
-         * Bugfix: a double skips 2 integer argument registers
-
-2005-06-16 13:49  twisti
-
-       * tests/native/: testarguments.c, testarguments.java:
-         * Test with 15 arguments, since powerpc-darwin has 13 float argument
-           registers.
-
-2005-06-16 11:09  christian
-
-       * src/vm/jit/powerpc/darwin/md-abi.c: Removed runverbose depended
-         usecount of argintregs for return regs
-
-2005-06-15 17:59  twisti
-
-       * src/vm/jit/alpha/patcher.c:
-         * Forgot native/native.h include
-
-2005-06-15 17:57  twisti
-
-       * src/vm/jit/alpha/patcher.c:
-         * patcher_resolve_native: implemented
-
-2005-06-15 17:54  twisti
-
-       * configure.in:
-         * Removed STATIC_CLASSPATH from alpha
-
-2005-06-15 16:14  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * Moved stuff to md.c
-         * use machine independent address macros
-         * native stub changes (code/data segment)
-         * dynamic library loading
-
-2005-06-15 16:13  twisti
-
-       * src/vm/jit/mips/codegen.h:
-         * M_ASUB_IMM: added for both archs
-
-2005-06-15 16:12  twisti
-
-       * src/vm/jit/mips/asmpart.S:
-         * changed some long stuff to use machine independent address macros
-         * removed monitor functions
-
-2005-06-15 16:10  twisti
-
-       * src/vm/jit/mips/: md-abi.h, md-abi.inc:
-         * Defined stuff for MIPS32
-
-2005-06-15 16:10  twisti
-
-       * src/vm/jit/mips/md-asm.h:
-         * define some stuff for MIPS32
-
-2005-06-15 16:09  twisti
-
-       * src/vm/jit/mips/md.c:
-         * Moved machine dependent stuff (signals, critical sections, cache
-         flush)
-
-2005-06-15 16:07  twisti
-
-       * src/vm/jit/mips/Makefile.am:
-         * added md.c
-
-2005-06-15 15:57  christian
-
-       * src/vm/jit/: reg.h, reg.inc, stack.c, powerpc/codegen.c,
-         powerpc/codegen.h, powerpc/darwin/md-abi.c: rd->secondregs
-         eliminated. A second integer register for longs for architectures,
-         which supports it, is now packed into the regoff variable
-
-2005-06-15 15:44  twisti
-
-       * src/vm/jit/mips/patcher.c:
-         * patcher_resolve_native: implemented
-
-2005-06-15 15:40  twisti
-
-       * src/native/: native.c, native.h:
-         * added STATIC_CLASSPATH defines to fix compile problems
-
-2005-06-15 15:38  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * compile warning fixes
-
-2005-06-15 15:38  twisti
-
-       * configure.in:
-         * removed STATIC_CLASSPATH for mips
-
-2005-06-15 01:52  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         * compile warning fixes
-
-2005-06-15 01:52  twisti
-
-       * src/vm/jit/i386/Makefile.am:
-         * Added DIST_SUBDIRS
-
-2005-06-15 01:39  twisti
-
-       * src/vm/jit/powerpc/Makefile.am:
-         * added DIST_SUBDIRS
-
-2005-06-15 01:34  twisti
-
-       * configure.in:
-         * set freebsd flags correctly
-
-2005-06-15 01:31  twisti
-
-       * src/native/native.c:
-         * native_resolve_function: bugfix, don't overwrite the normal name
-
-2005-06-15 01:29  twisti
-
-       * src/vm/jit/codegen.inc:
-         * include some additional headers (safety first ;-)
-
-2005-06-15 01:21  twisti
-
-       * src/libltdl/ltdl.c:
-         * compile warning fixes, 2nd try
-
-2005-06-15 01:16  twisti
-
-       * src/libltdl/ltdl.c:
-         * compile warning fixes
-
-2005-06-15 00:31  twisti
-
-       * src/native/: native.c, native.h, vm/VMRuntime.c:
-         * implemented the library hash: each loaded library with it's
-           classloader is stored in the hash, TODO: reference count and
-         unloading
-
-2005-06-14 22:12  twisti
-
-       * configure.in, src/cacao/Makefile.am:
-         * define EXPORT_SYMBOLS_FLAGS for ld
-
-2005-06-14 20:35  twisti
-
-       * src/vm/jit/codegen.inc:
-         * powerpc warning fixes
-
-2005-06-14 20:34  twisti
-
-       * src/vm/jit/powerpc/: codegen.c, codegen.h:
-         * removed deprecated BlockPtrOfPC macro
-         * warning fixes
-
-2005-06-14 20:11  twisti
-
-       * src/vm/linker.c:
-         * warning fix
-
-2005-06-14 20:09  twisti
-
-       * src/native/jni.c:
-         * FindClass: implemented correctly
-
-2005-06-14 19:48  twisti
-
-       * src/native/: native.c, native.h:
-         * builtin_asm_createclasscontextarray,
-           builtin_asm_getclassloader: removed (not used anymore)
-
-2005-06-14 19:40  twisti
-
-       * src/native/vm/VMSystemProperties.c:
-         * add . to java.library.path
-
-2005-06-14 19:39  twisti
-
-       * src/vm/jit/powerpc/linux/md.c:
-         * Oops, typo
-
-2005-06-14 19:29  twisti
-
-       * src/native/vm/VMClass.c:
-         * use load_class_from_sysloader return value
-
-2005-06-14 19:28  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         * removed init_exceptions
-         * use code/data segments for native stub
-
-2005-06-14 19:25  twisti
-
-       * src/vm/jit/powerpc/linux/md-abi.inc:
-         * make r2 reserved (from old init_exceptions), ask stefan about
-         that...
-
-2005-06-14 19:23  twisti
-
-       * src/vm/jit/powerpc/darwin/md.c:
-         * moved init_exceptions
-
-2005-06-14 19:20  twisti
-
-       * src/vm/jit/powerpc/patcher.c:
-         * patcher_resolve_native: added
-
-2005-06-14 19:18  twisti
-
-       * src/vm/jit/powerpc/linux/md.c:
-         * Moved signal stuff
-
-2005-06-14 19:14  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * classLoaderCollector: code indent and removed unused code
-
-2005-06-14 19:12  twisti
-
-       * src/: cacao/cacao.c, vm/linker.c, vm/loader.c, vm/loader.h,
-         vm/resolve.c:
-         * use load_class_from_sysloader return value
-
-2005-06-14 19:08  twisti
-
-       * configure.in:
-         * removed STATIC_CLASSPATH for ported architectures
-
-2005-06-14 18:08  twisti
-
-       * configure.in, src/mm/nogc.c, src/cacao/Makefile.am,
-         src/cacaoh/Makefile.am, src/native/tools/Makefile.am:
-         * --disable-gc bug fixes
-
-2005-06-13 18:21  twisti
-
-       * configure.in:
-         * added freebsd os
-         * added i386 subdir makefiles
-
-2005-06-13 18:20  twisti
-
-       * src/vm/jit/i386/: Makefile.am, codegen.c, codegen.h, md-abi.c,
-         patcher.c:
-         * native stub changes (data/code segment usage)
-
-2005-06-13 18:19  twisti
-
-       * src/vm/jit/i386/: freebsd/.cvsignore, freebsd/Makefile.am,
-         freebsd/md.c, linux/.cvsignore, linux/Makefile.am, linux/md.c:
-         * machine dependent stuff
-
-2005-06-13 16:40  twisti
-
-       * src/native/jni.c:
-         * FindClass: use load_class_bootstrap return value
-
-2005-06-13 16:38  twisti
-
-       * src/threads/native/threads.c:
-         * Use load_class_bootstrap return value
-
-2005-06-13 16:30  twisti
-
-       * src/cacaoh/headers.c:
-         * codegen native stub changes
-
-2005-06-13 16:29  twisti
-
-       * src/: cacao/cacao.c, cacaoh/cacaoh.c:
-         * Use load_class_bootstrap return value
-
-2005-06-13 16:28  twisti
-
-       * src/cacao/Makefile.am:
-         * Link to libltdlc convenience library
-
-2005-06-13 16:27  twisti
-
-       * src/libltdl/.cvsignore:
-         * ignore *.la
-
-2005-06-13 16:26  twisti
-
-       * src/vm/descriptor.c:
-         * Renamed utf_end to UTF_END
-
-2005-06-13 16:26  twisti
-
-       * src/vm/linker.c:
-         * link missing classes
-         * Use codegen_createnativestub instead of createnativestub
-
-2005-06-13 16:24  twisti
-
-       * src/vm/: loader.c, loader.h, exceptions.c:
-         * Use load_class_bootstrap return value
-
-2005-06-13 16:23  twisti
-
-       * src/vm/method.h:
-         * made stubroutine a functionptr
-
-2005-06-13 16:22  twisti
-
-       * src/vm/tables.h:
-         * Removed utf_end
-
-2005-06-13 16:22  twisti
-
-       * src/vm/: utf8.c, utf8.h:
-         * utf_java_lang_StackTraceElement, utf_java_lang_reflect_Field,
-           utf_getSystemClassLoader, utf_void__java_lang_ClassLoader: added
-         * renamed utf_end to UTF_END
-
-2005-06-13 16:20  twisti
-
-       * src/vm/: string.c, stringlocal.h:
-         * string_java_lang_UnsatisfiedLinkError: added
-         * use load_class_bootstrap return value
-
-2005-06-13 16:19  twisti
-
-       * src/vm/: class.c, class.h:
-         * class_java_lang_StackTraceElement,
-           class_java_security_PrivilegedAction: added
-
-2005-06-13 16:17  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h:
-         * Use dump memory for code and data segment
-         * codegen_createnativestub: added
-         * removecompilerstub, removenativestub: moved from codegen.c
-         * removed codegen_resolve_native
-
-2005-06-13 16:16  twisti
-
-       * src/vm/jit/stacktrace.h:
-         * Use SIZEOF_VOID_P
-
-2005-06-13 16:15  twisti
-
-       * src/vm/jit/patcher.h:
-         * patcher_resolve_native: added
-
-2005-06-13 16:14  michi
-
-       * configure.in, src/vm/jit/Makefile.am: added arm stuff
-
-2005-06-13 16:14  twisti
-
-       * src/vm/jit/inline/: parseRT.c, parseXTA.c:
-         * use load_class_bootstrap return value
-
-2005-06-13 16:14  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         * moved signal stuff and critical section restart to md.c
-         * removed deprecated BlockPtrOfPC macro
-         * removecompilerstub, removenativestub: removed
-         * createnativestub: use same code generation as codegen (with data
-         segment)
-
-2005-06-13 16:12  twisti
-
-       * src/native/vm/VMClass.c:
-         * Typo
-
-2005-06-13 16:10  twisti
-
-       * src/vm/jit/x86_64/md.c:
-         * Moved signal stuff and critical section restart
-
-2005-06-13 16:10  twisti
-
-       * src/vm/jit/x86_64/Makefile.am:
-         * Added md.c
-
-2005-06-13 16:03  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         * Remove deprecated BlockPtrOfPC macro
-
-2005-06-13 16:02  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         * patcher_resolve_native: added
-
-2005-06-13 16:02  twisti
-
-       * src/vm/jit/x86_64/emitfuncs.c:
-         * Removed deprecated BlockPtrOfPC macro
-
-2005-06-13 16:01  twisti
-
-       * src/vm/jit/x86_64/types.h:
-         * removed U8_AVAILABLE since we know x86_64 can do u8
-
-2005-06-13 16:00  twisti
-
-       * src/native/vm/VMThrowable.c:
-         * Use global class_java_lang_StackTraceElement
-
-2005-06-13 15:56  twisti
-
-       * src/native/vm/VMRuntime.c:
-         * Use libltdl
-
-2005-06-13 15:56  twisti
-
-       * src/native/vm/VMClassLoader.c:
-         * Use load_class_bootstrap return value
-
-2005-06-13 15:53  twisti
-
-       * src/native/vm/VMClass.c:
-         * load_class_bootstrap return value
-         * use global class_java_lang_reflect_Constructor,
-           class_java_lang_reflect_Field, class_java_lang_reflect_Method
-
-2005-06-13 15:42  twisti
-
-       * src/native/: native.c, native.h:
-         * native_init: initialize libltdl
-         * native_make_overloaded_function, native_resolve_function: added
-         * builtin_asm_getclassloader: use global
-           class_java_security_PrivilegedAction
-
-2005-06-13 15:39  twisti
-
-       * configure.in:
-         * Use AC_LIBLTDL_CONVENIENCE
-         * Added --{en,dis}able-static --{en,dis}able-shared again, since i
-           know now that we can build a libltdl convenience library
-
-2005-06-13 15:37  twisti
-
-       * src/vm/jit/stacktrace.c:
-         * Use global class_java_security_PrivilegedAction
-
-2005-06-13 01:44  twisti
-
-       * src/cacao/Makefile.am:
-         * link with libltdl when dynamically linked
-
-2005-06-13 01:25  twisti
-
-       * autogen.sh:
-         * added src/libltdl
-
-2005-06-13 01:24  twisti
-
-       * configure.in:
-         * removed --{en,dis}able-static --{en,dis}able-shared for sub
-           packages, because we always need a static library for libltdl
-         * added src/libltdl
-
-2005-06-13 01:21  twisti
-
-       * src/Makefile.am:
-         * added DISABLE_GC and libltdl
-
-2005-06-13 01:21  twisti
-
-       * src/libltdl/: .cvsignore, COPYING.LIB, Makefile.am, README,
-         acinclude.m4, autogen.sh, configure.ac, ltdl.c, ltdl.h: libltdl
-         from GNU Libtool 1.5.18
-
-2005-06-10 20:43  twisti
-
-       * src/vm/jit/powerpc/darwin/: md.c, md.h:
-         * Added some includes
-
-2005-06-10 20:42  twisti
-
-       * src/vm/jit/powerpc/darwin/md-abi.c:
-         * Adopted to darwin abi
-
-2005-06-10 20:42  twisti
-
-       * src/vm/jit/powerpc/darwin/md-abi.h:
-         * We need to include this header into asmpart.S because of
-         LA_LR_OFFSET.
-
-2005-06-10 20:22  twisti
-
-       * src/vm/jit/powerpc/Makefile.am:
-         * also include ARCH_DIR
-
-2005-06-10 12:01  jowenn
-
-       * src/vm/jit/x86_64/patcher.c: fix stacktrace problem found by
-         twisti
-
-2005-06-09 23:23  twisti
-
-       * src/vm/jit/mips/: md-abi.c, md-abi.h, md-abi.inc, md-asm.h, md.h:
-         * machine dependent stuff
-
-2005-06-09 23:22  twisti
-
-       * src/vm/jit/mips/codegen.c:
-         * use parsed descriptors
-         * ld offset fix in patcher stub (more to do)
-
-2005-06-09 23:22  twisti
-
-       * src/native/vm/Field.c:
-         * compile fix for mips, warning fix for others
-
-2005-06-09 22:39  twisti
-
-       * src/vm/jit/mips/codegen.h:
-         * removed SET_ARG_STACKSLOTS
-         * use SIZEOF_VOID_P
-
-2005-06-09 22:39  twisti
-
-       * src/vm/jit/mips/asmpart.S:
-         * moved defines into md-asm.h
-
-2005-06-09 22:36  twisti
-
-       * src/vm/jit/mips/arch.h:
-         * moved ABI stuff into md-abi.h *e AC_C_BIGENDIAN in configure
-
-2005-06-09 22:35  twisti
-
-       * src/vm/jit/mips/Makefile.am:
-         * added md files
-
-2005-06-09 22:35  twisti
-
-       * src/vm/jit/mips/patcher.c:
-         * use patcher monitorenter/exit macros
-         * bugfix: leave monitor in exception case
-
-2005-06-09 22:31  twisti
-
-       * configure.in, src/vm/jit/alpha/arch.h, src/vm/jit/i386/arch.h,
-         src/vm/jit/powerpc/arch.h, src/vm/jit/x86_64/arch.h:
-         * Use AC_C_BIGENDIAN in configure.in
-
-2005-06-09 18:11  twisti
-
-       * src/vm/builtin.c:
-         * don't use get_variable_message_length, it's not neessary
-         * builtin_trace_exception: use dump memory
-
-2005-06-09 09:29  christian
-
-       * src/vm/jit/i386/codegen.c: Bug in long argument copying and Trace
-         Argument copying eliminated
-
-2005-06-09 09:28  christian
-
-       * src/vm/jit/: reg.h, reg.inc: new Stack memory allocation, use of
-         unused arg regs as temp disabled
-
-2005-06-08 22:58  twisti
-
-       * src/vm/builtintable.inc:
-         * builtintable_internal: fixed 2 typo's
-
-2005-06-08 22:57  twisti
-
-       * src/vm/builtin.c:
-         * use dump memory in trace functions, should be faster
-         * use SIZEOF_VOID_P instead of arch defines
-
-2005-06-08 22:56  twisti
-
-       * src/vm/jit/stack.c:
-         * use SIZEOF_VOID_P instead of arch defines
-         * removed USEBUILTINTABLE define (we need another one to disable
-           automatic replacement)
-
-2005-06-08 22:54  twisti
-
-       * src/vm/jit/codegen.inc: Added: codegen_disassemble_nativestub
-
-2005-06-08 22:54  twisti
-
-       * src/vm/jit/alpha/: md-abi.c, md-abi.h, md-abi.inc, md-asm.h,
-         md.h: Machine dependent stuff.
-
-2005-06-08 22:54  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         * moved ABI stuff to specific files
-         * removed BlockPtrOfPC
-         * use parsed descriptors
-         * native stub cleanup
-
-2005-06-08 22:53  twisti
-
-       * src/vm/jit/alpha/codegen.h: Removed useless BlockPtrOfPC macro.
-
-2005-06-08 21:43  twisti
-
-       * src/vm/jit/alpha/codegen.h: Removed SET_ARG_STACKSLOTS.
-
-2005-06-08 21:43  twisti
-
-       * src/vm/jit/alpha/asmpart.S: Moved defines to md-asm.h
-
-2005-06-08 21:30  twisti
-
-       * src/vm/jit/alpha/Makefile.am: Added md stuff.
-
-2005-06-08 21:30  twisti
-
-       * src/vm/jit/alpha/arch.h: Moved ABI stuff into md-abi.h
-
-2005-06-08 21:29  twisti
-
-       * src/vm/jit/alpha/types.h:
-         * removed U8_AVAILABLE, since we know what alpha can do
-
-2005-06-08 21:26  twisti
-
-       * src/vm/jit/alpha/patcher.c:
-         * use PATCHER_MARK_PATCHED_MONITOREXIT on exit
-         * use PATCHER_MONITOREXIT in exception case
-
-2005-06-08 20:21  twisti
-
-       * src/native/vm/Method.c:
-         * Java_java_lang_reflect_Method_invokeNative: forgot to set
-           throwAccess to false
-
-2005-06-08 16:41  christian
-
-       * src/vm/jit/i386/: Makefile.am, arch.h, codegen.c, codegen.h,
-         emitfuncs.c, md-abi.c, md-abi.h, md-abi.inc: Moved abi stuff to
-         machine depended files
-
-2005-06-08 15:15  twisti
-
-       * src/scripts/kjc.in: kjc script.
-
-2005-06-08 15:07  twisti
-
-       * configure.in:
-         * added: tests/codepatching/Makefile, src/scripts/kjc
-
-2005-06-08 14:51  twisti
-
-       * tests/Makefile.am:
-         - added codepatching to SUBDIRS
-         - temporary added -noverify, remove it when verifier does work again
-
-2005-06-08 14:50  twisti
-
-       * tests/codepatching/Makefile.am: Obviously...
-
-2005-06-08 14:50  twisti
-
-       * tests/codepatching/.cvsignore: Ignore standard files.
-
-2005-06-08 14:49  twisti
-
-       * tests/codepatching/test.java: Use threads to check the locking
-         code.
-
-2005-06-08 13:26  twisti
-
-       * src/native/jni.c:
-         * fill_callblock: renamed to fill_callblock_from_vargs
-         * fill_callblock_objA:
-          - renamed to fill_callblock_from_objectarray
-          - bug fix: wrong offset in object array
-         * FromReflectedMethod: some changes
-         * GetStringUTFChars: implemented like kaffe does
-         * jni_method_invokeNativeHelper:
-          - some changes, should we set the value in the object inline?
-          - better exception handling
-
-2005-06-08 13:18  twisti
-
-       * src/native/native.c: get_parametertypes:
-          - bug fix: added missing &
-          - fixed indent
-
-2005-06-08 13:16  twisti
-
-       * src/native/vm/Method.c:
-         Java_java_lang_reflect_Method_invokeNative: made code more readable
-
-2005-06-08 13:06  twisti
-
-       * src/native/vm/VMSystemProperties.c: Correct use of
-         java.library.path and gnu.classpath.boot.library.path.
-
-2005-06-08 13:05  twisti
-
-       * src/native/tools/Makefile.am: Added: DISABLE_GC
-
-2005-06-08 13:04  twisti
-
-       * src/vm/: string.c, stringlocal.h: Added:
-         string_java_lang_reflect_InvocationTargetException
-
-2005-06-08 13:03  twisti
-
-       * src/vm/initialize.c: Better error handling in wrapping the
-         exception.
-
-2005-06-08 13:03  twisti
-
-       * src/vm/global.h: New ACC flags:
-          - ACC_UNDEF, ACC_NONE: for internal use
-          - flags for 49.0 class format
-
-2005-06-08 13:01  twisti
-
-       * src/vm/exceptions.c:
-         - new_exception*: check for native_and_init* return value and return
-           exceptionptr in error case
-         - new_classformaterror: warning fix
-
-2005-06-08 12:59  twisti
-
-       * src/vm/jit/: codegen.inc, codegen.inc.h: Use SIZEOF_VOID_P
-         instead of POINTERSIZE.
-
-2005-06-08 12:58  twisti
-
-       * src/vm/jit/x86_64/: md-abi.c, md-abi.h, md-abi.inc, md-asm.h,
-         md.h: ABI stuff.
-
-2005-06-08 12:57  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Parsed descriptors changes: use abi
-         pre-allocation
-
-2005-06-08 12:56  twisti
-
-       * src/vm/jit/x86_64/asmpart.S: Moved stuff to md-asm.h
-
-2005-06-08 12:56  twisti
-
-       * src/vm/jit/x86_64/codegen.h:
-         - removed SET_ARG_STACKSLOTS
-         - added some macros
-
-2005-06-08 12:55  twisti
-
-       * src/vm/jit/x86_64/emitfuncs.c: #include "md-abi.h"
-
-2005-06-08 12:33  twisti
-
-       * src/vm/jit/x86_64/arch.h: Moved abi stuff into md-abi.h
-
-2005-06-08 12:33  twisti
-
-       * src/vm/jit/x86_64/Makefile.am: Added machine dependent files.
-
-2005-06-08 12:31  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         - use monitorenter/exit macros: removed
-           dontfillinexceptionstacktrace, this should be used again when we
-         have stacktraces on all archs
-         - warning fix
-
-2005-06-07 18:04  twisti
-
-       * src/vm/jit/powerpc/codegen.c: Native stub fixes.
-
-2005-06-07 17:31  michi
-
-       * configure.in: added arm architecture
-
-2005-06-07 17:07  twisti
-
-       * src/vm/jit/powerpc/codegen.c: MULTIANEWARRAY: linux bugfix
-
-2005-06-07 10:37  christian
-
-       * src/vm/jit/stack.c: conting max use of argument registers and
-         stack use for a method
-
-2005-06-06 23:21  twisti
-
-       * src/vm/jit/powerpc/linux/: md-abi.h, md.h: Moved md_param_alloc
-         from md-abi.h to md.h since md-abi.h is included in asmpart.S.
-
-2005-06-06 17:39  twisti
-
-       * src/native/native.c: get_parametertypes: use fully parsed
-         descriptors
-
-2005-06-06 17:38  twisti
-
-       * src/native/jni.c:
-         - used parsed descriptors
-         - code indent
-
-2005-06-06 17:37  twisti
-
-       * configure.in: Added:
-          - AC_COMPILE_CHECK_SIZEOF
-          - src/vm/jit/powerpc/darwin/Makefile
-          - src/vm/jit/powerpc/linux/Makefile
-
-2005-06-06 17:36  twisti
-
-       * src/vm/resolve.c:
-         - resolve_method: check for mi->parseddesc->params and generate it
-           if not available, so we can use the correct param stuff (static vs.
-         non-static)
-         - removed INSTRUCTION_PUTCONST_FIELDREF (only used twice)
-
-2005-06-06 17:34  twisti
-
-       * src/vm/loader.c:
-         - load_constantpool: try to add all descriptors to the pool
-         - load_class_from_classbuffer: pass m->flags for class methods to
-           descriptor_pool_parse_method_descriptor so we can do the register
-           pre-allocation
-
-2005-06-06 17:32  twisti
-
-       * src/vm/: descriptor.c, descriptor.h:
-         - descriptor_pool_add: check for method descriptors and add all of
-           them since the static flag may be different
-         - descriptor_pool_parse_method_descriptor: pass method flags and
-           generate, if possible, the params array which contains the register
-           allocation for this particular function (descriptor)
-         - added: descriptor_params_from_paramtypes
-         - some code beautification
-
-2005-06-06 17:28  twisti
-
-       * src/vm/Makefile.am: Added: builtintable.inc
-
-2005-06-06 17:28  twisti
-
-       * src/vm/jit/: parse.c, parse.h, reg.inc, stack.c, stack.h:
-         - use parsed descriptors
-         - use generic ICMD_BUILTIN
-
-2005-06-06 17:26  twisti
-
-       * src/vm/jit/lsra.inc: Commented builtin stuff. Please fix me!
-
-2005-06-06 17:25  twisti
-
-       * src/vm/jit/jit.h:
-         - removed: BUILTIN{1,2,3}, INSTRUCTION_PUTCONST_FIELDREF
-
-2005-06-06 17:25  twisti
-
-       * src/vm/jit/jit.c:
-         - removed BUILTIN{1,2,3}
-         - use SIZEOF_VOID_P
-         - removed sort_builtintable from jit_init
-
-2005-06-06 17:24  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         - use parsed descriptors
-         - use generic ICMD_BUILTIN
-
-2005-06-06 17:24  twisti
-
-       * src/vm/jit/powerpc/asmpart.S: Linux changes.
-
-2005-06-06 17:22  twisti
-
-       * src/vm/jit/loop/tracing.c: Changed to generic ICMD_BUILTIN.
-
-2005-06-06 17:22  twisti
-
-       * src/vm/jit/verify/typecheck.c: Commented builtin stuff. This has
-         to be fixed correctly.
-
-2005-06-06 17:21  twisti
-
-       * src/vm/references.h: Code beautify.
-
-2005-06-06 17:20  twisti
-
-       * src/vm/: utf8.c, utf8.h: Added: utf_clone
-
-2005-06-06 17:01  twisti
-
-       * src/vm/global.h: Defined ACC_UNDEF, ACC_NONE: these are used
-         internally
-
-2005-06-06 17:00  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         - removed old builtin table stuff
-         - added: builtin_init, builtintable_init, builtintable_get_internal,
-           builtintable_get_automatic
-         - use SIZEOF_VOID_P instead of POINTERSIZE
-         - use parsed descriptor
-
-2005-06-06 16:53  twisti
-
-       * src/vm/jit/powerpc/Makefile.am:
-         - added OS_DIR to SUBDIRS
-         - add libmd.la to libarch.la
-
-2005-06-06 16:52  twisti
-
-       * src/vm/jit/powerpc/arch.h: POINTERSIZE, CONSECUTIVE_FLOAT_ARGS:
-         removed
-
-2005-06-06 16:51  twisti
-
-       * src/vm/jit/powerpc/patcher.c: Include memory.h for OFFSET macro.
-
-2005-06-06 16:48  twisti
-
-       * src/vm/jit/powerpc/linux/: .cvsignore, Makefile.am, md-abi.c,
-         md-abi.h, md.c, md.h: Moved ABI and machine dependent stuff into
-         linux/ subdirectory.
-
-2005-06-06 16:47  twisti
-
-       * src/vm/jit/powerpc/darwin/: .cvsignore, Makefile.am, md-abi.c,
-         md-abi.h, md.c, md.h: Moved ABI and machine dependent stuff into
-         darwin/ subdirectory.
-
-2005-06-06 16:45  twisti
-
-       * src/mm/memory.h: Added MMOVE macro.
-
-2005-06-06 16:44  twisti
-
-       * src/cacaoh/headers.c: Added md_param_alloc.
-
-2005-06-06 16:44  twisti
-
-       * src/cacao/cacao.c:
-         - moved jit_init
-         - added builtin_init
-
-2005-06-06 16:42  twisti
-
-       * src/native/.cvsignore: Ignore nativetable.inc
-
-2005-06-06 16:42  twisti
-
-       * src/native/vm/VMObject.c: Use memory macros.
-
-2005-06-06 16:41  twisti
-
-       * src/native/vm/Constructor.c:
-         - renamed arguments to fit classpath's
-         - use static utf_init
-
-2005-06-06 16:37  twisti
-
-       * src/native/tools/.cvsignore: Ignore generated files.
-
-2005-06-06 16:35  twisti
-
-       * src/vm/builtintable.inc: Contains builtin tables (internal,
-         automatic). Included in builtin.c.
-
-2005-06-01 00:35  twisti
-
-       * src/threads/native/Makefile.am: Include OS_DIR.
-
-2005-05-31 20:36  twisti
-
-       * src/cacaoh/headers.c:
-         - include <stdarg.h>
-         - define _exceptionptr
-
-2005-05-31 18:04  twisti
-
-       * src/vm/builtin.c:
-         - removed lazy loading defines
-         - changed output of unresolved builtin functions
-         - added #include "md-abi.h": TRACE_ARGS_NUM
-         - use short TYPE_ defines instead of long ones (i think we should
-           finally merge them)
-
-2005-05-31 18:02  twisti
-
-       * src/vm/jit/: parse.c, reg.inc, stack.c: Removed lazy loading
-         defines and old, unused code.
-
-2005-05-31 18:01  twisti
-
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c, codegen.h: Many
-          changes (nearly too much for one commit):
-         - lazy loading/code patching
-          - removed machine depend stuff
-          - removed monitorenter/exit assembler functions
-          - code indent
-
-2005-05-31 17:55  twisti
-
-       * src/vm/jit/powerpc/: darwin/md-abi.h, darwin/md-abi.inc,
-         darwin/md-asm.h, linux/md-abi.h, linux/md-abi.inc,
-         linux/md-asm.h: Machine dependent stuff.
-
-2005-05-31 17:55  twisti
-
-       * src/vm/jit/powerpc/arch.h: Removed ABI related stuff (now in
-         OS_DIR/md-abi.h).
-
-2005-05-31 17:54  twisti
-
-       * src/vm/jit/powerpc/patcher.c: Patcher functions implemented.
-
-2005-05-31 17:53  twisti
-
-       * src/vm/jit/i386/patcher.c:
-         - use monitorenter/exit macros
-         - fixed bug: returns is exception case did not release the monitor
-           lock, this resulted in a deadlock for the waiting threads (thanks
-         jowenn)
-
-2005-05-31 17:39  twisti
-
-       * src/vm/jit/patcher.h:
-         - defined PATCHER_MONITOREXIT and PATCHER_MARK_PATCHED_MONITOREXIT
-         - added powerpc defines
-
-2005-05-31 17:06  twisti
-
-       * src/vm/jit/powerpc/Makefile.am:
-         - include OS_DIR
-         - added: patcher.c
-         - added EXTRA_DIST: md files from os subdirs
-
-2005-05-31 16:35  twisti
-
-       * src/vm/: Makefile.am, jit/Makefile.am: Include OS_DIR.
-
-2005-05-31 16:33  twisti
-
-       * configure.in: Define OS_DIR for Makefiles.
-
-2005-05-31 12:30  twisti
-
-       * src/vm/jit/mips/codegen.c: We don't need to save temporary
-         registers in runverbose && ACC_SYNCHRONIZED case, since this
-         functions are tagged an non-leaf in parse.
-
-2005-05-29 23:39  twisti
-
-       * src/native/vm/VMAccessController.c:
-         - killed panic, return NULL is error case
-         - emacs tailer
-         - some header include fixes
-
-2005-05-27 15:18  twisti
-
-       * src/native/vm/VMStackWalker.c: getCallingClass,
-         getCallingClassLoader: implemented
-
-2005-05-27 13:20  twisti
-
-       * configure.in: Check for pango only with gtk peer enabled.
-
-2005-05-25 10:07  twisti
-
-       * src/vm/jit/: patcher.h, alpha/patcher.c: Defined
-         PATCHER_MONITORENTER/EXIT macros (i have some problems to see where
-         macros can be used ;-)
-
-2005-05-24 17:41  christian
-
-       * src/vm/jit/reg.inc: Missing "regsneeded" renamed to intregsneeded
-         (for PowerPC).
-
-2005-05-24 12:28  twisti
-
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c:
-         - compilation fixes
-         - started to implement lazy loading
-
-2005-05-24 10:37  twisti
-
-       * configure.in:
-         - disabled gtk static build, problems with cairo
-         - removed xml/xslt stuff
-
-2005-05-23 20:13  edwin
-
-       * src/vm/class.c: fixed missing linking check in get_array_class
-
-2005-05-23 17:23  twisti
-
-       * autogen.sh: Include src/classpath/m4 for aclocal to get AM_ICONV*
-         stuff from classpath.
-
-2005-05-23 17:23  twisti
-
-       * configure.in: Check for additional libraries with
-         STATIC_CLASSPATH (not finished yet).
-
-2005-05-23 17:22  twisti
-
-       * src/cacao/Makefile.am: Added some libraries with STATIC_CLASSPATH
-         (not finished yet).
-
-2005-05-23 14:04  twisti
-
-       * src/native/native.c: Removed orphaned headers: made problems with
-         java_lang_VMProcess.h because of redefinition of stdin/out/err.
-
-2005-05-23 13:57  twisti
-
-       * src/cacaoh/headers.c: Fixed: missing return statement at end of
-         non-void function
-
-2005-05-23 12:32  twisti
-
-       * src/: cacaoh/headers.c, threads/green/threads.c,
-         threads/native/threads.c: Killed panic's.
-
-2005-05-23 12:31  twisti
-
-       * src/cacaoh/Makefile.am: Added DISABLE_GC stuff.
-
-2005-05-23 12:28  twisti
-
-       * src/vm/jit/stacktrace.c:
-         - killed panic's
-         - getStackCollector: return on OOM, TODO: return value may not be
-         NULL
-
-2005-05-23 12:23  twisti
-
-       * src/vm/jit/parse.c:
-         - killed panic's
-         - added USE_INLINING #ifdef's (but always enabled, yet)
-
-2005-05-23 12:22  twisti
-
-       * src/vm/jit/jit.c:
-         - warning fixes
-         - added USE_INLINING #ifdef's (but always enabled, yet)
-
-2005-05-23 12:21  twisti
-
-       * src/vm/jit/Makefile.am: Added USE_INLINING stuff.
-
-2005-05-23 12:20  twisti
-
-       * configure.in: Added: --disable-gc, --disable-inlining (but
-         currently disabled)
-
-2005-05-23 12:19  twisti
-
-       * src/mm/nogc.c: Allocates memory with malloc (no GC).
-
-2005-05-23 12:19  twisti
-
-       * src/mm/Makefile.am: Added nogc.c
-
-2005-05-23 10:50  twisti
-
-       * src/toolbox/: logging.c, logging.h:
-         - dolog: don't use vsprintf, just print it out (no need to a buffer)
-         - log_message_utf, log_message_class_message_class: added
-         - error, panic: removed
-
-2005-05-23 10:34  twisti
-
-       * src/vm/jit/codegen.inc:
-         - removed _CODEGEN_INC_H_ define, it's no header
-         - use ptrint instead of long
-         - killed panic's
-
-2005-05-23 10:32  twisti
-
-       * src/vm/utf8.c:
-         - line length changes
-         - removed panic in comment (for grep'ing)
-
-2005-05-23 10:23  twisti
-
-       * src/vm/: tables.c, unzip.c: Killed panic's.
-
-2005-05-23 10:22  twisti
-
-       * src/vm/: string.c, stringlocal.h:
-         - killed panic's
-         - javastring_strlen: added
-
-2005-05-23 10:22  twisti
-
-       * src/vm/statistics.c: Use dolog instead of sprintf/log_text, so no
-         fixed buffer required.
-
-2005-05-23 10:21  twisti
-
-       * src/vm/loader.c:
-         - killed panic's
-         - load_class_from_classbuffer: use malloc instead of a fixed buffer
-
-2005-05-23 10:19  twisti
-
-       * src/vm/: linker.c, linker.h:
-         - killed panic's
-         - linker_compute_subclasses: no j.l.O special required anymore
-         - print_arraydescriptor: removed
-
-2005-05-23 10:18  twisti
-
-       * src/vm/initialize.c: Use
-         log_message_class/log_message_class_message_class instead of a fixed
-         buffer.
-
-2005-05-23 10:17  twisti
-
-       * src/vm/class.c:
-         - killed panic's
-         - use log_message_utf instead of fixed buffer
-
-2005-05-23 10:12  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         - builtin_throw_exception, builtin_trace_args,
-           builtin_displaymethodstop: calculate message length and use malloc
-           memory instead of fixed buffer length
-         - builtin_displaymethodstart: removed
-         - killed panic's
-         - removed warnings
-
-2005-05-23 10:06  twisti
-
-       * src/vm/jit/stack.h:
-         - killed panic's
-         - some macro reformating
-
-2005-05-23 10:04  twisti
-
-       * src/vm/jit/: alpha/codegen.c, i386/codegen.h, stack.c: Killed
-         panic's.
-
-2005-05-23 10:01  twisti
-
-       * src/vm/jit/: helper.c, reg.inc: Killed panic's.
-
-2005-05-22 21:49  twisti
-
-       * src/vm/jit/loop/: analyze.c, graph.c, loop.c: Killed panic's.
-
-2005-05-21 17:07  twisti
-
-       * src/mm/memory.c: Killed panic's.
-
-2005-05-21 16:59  twisti
-
-       * src/native/vm/: Constructor.c, Field.c, Method.c, VMClass.c,
-         VMRuntime.c, VMThrowable.c:
-         - killed panic's
-         - removed warnings
-
-2005-05-21 16:58  twisti
-
-       * src/native/jni.c: Killed panic's.
-
-2005-05-21 16:58  twisti
-
-       * src/native/native.c: Added includes to prevent compiler warnings
-         with STATIC_CLASSPATH.
-
-2005-05-21 01:05  twisti
-
-       * src/vm/: exceptions.c, exceptions.h:
-         - new_verifyerror takes varargs
-         - don't use fixed message buffer length: calculate message length
-           and malloc memory
-
-2005-05-20 19:51  twisti
-
-       * src/vm/jit/mips/codegen.c: Killed panic's.
-
-2005-05-20 19:46  twisti
-
-       * src/vm/jit/powerpc/codegen.c:
-         - killed panic's
-         - some icmd reordering
-
-2005-05-20 19:43  twisti
-
-       * src/vm/jit/inline/: inline.c, parseRT.c, parseXTA.c: Killed
-         panic's.
-
-2005-05-20 17:28  twisti
-
-       * src/native/include/Makefile.am: Typo in
-         java_security_VMAccessController.h, so it was regenerated every run.
-
-2005-05-20 14:02  jowenn
-
-       * src/native/vm/VMAccessController.c: perhaps I should commit the
-         implementation too
-
-2005-05-20 13:20  twisti
-
-       * src/vm/jit/verify/typecheck.c:
-         - killed panic's, replaced mostly by verify errors
-         - added some exceptions macros
-
-2005-05-20 13:19  twisti
-
-       * src/vm/jit/verify/typeinfo.c: Killed panic's, replaced by
-         log_text/assert.
-
-2005-05-19 10:48  jowenn
-
-       * src/: native/native.c, native/include/Makefile.am,
-         native/vm/Makefile.am, vm/class.c, vm/class.h, vm/loader.c,
-         vm/jit/stacktrace.c, vm/jit/stacktrace.h,
-         vm/jit/x86_64/patcher.c: VMAccessController.getStack (currently
-         leads in some cases to endless loops)
-
-2005-05-17 11:05  twisti
-
-       * src/vm/jit/i386/codegen.c: Killed panic's.
-
-2005-05-13 17:32  twisti
-
-       * src/native/include/Makefile.am: Added
-         ADDITIONAL_STATIC_CLASSPATH_HEADER_FILES, which contains all
-         additional classes for header generation required for a static
-         cacaco.
-
-2005-05-13 16:36  twisti
-
-       * configure.in:
-         - added AM_CONDITIONAL for STATIC_CLASSPATH
-         - added src/native/tools/Makefile
-
-2005-05-13 16:19  twisti
-
-       * src/vm/jit/mips/codegen.c: #include "stringlocal.h"
-
-2005-05-13 16:04  twisti
-
-       * src/vm/jit/i386/arch.h:
-         - added missing INT_*, FLT_* defines
-         - reenabled SUPPORT_CONST_STORE
-
-2005-05-13 16:03  twisti
-
-       * src/vm/jit/i386/codegen.c: Use patcher_putfieldconst in
-         ICMD_PUTFIELDCONST.
-
-2005-05-13 16:02  twisti
-
-       * src/vm/jit/i386/patcher.c: Implemented patcher_putfieldconst.
-
-2005-05-13 16:02  twisti
-
-       * src/vm/jit/stack.c: Added missing defines PUTFIELDCONST: i386,
-         alpha, mips
-
-2005-05-13 16:01  twisti
-
-       * src/vm/jit/patcher.h: Added i386 define for
-         patcher_putfieldconst.
-
-2005-05-13 12:12  twisti
-
-       * tests/codepatching/: getfieldJ.java, getstaticJ.java, test.java:
-         Use really long values for long field/static tests.
-
-2005-05-13 11:10  twisti
-
-       * src/vm/jit/x86_64/codegen.c: #include "vm/stringlocal.h"
-
-2005-05-13 11:08  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         - correct order of argument-register assigment/monitorenter/verbose
-           call code
-         - renamed some I386_* to more common REG_* or ALU_*
-         - added monitors for patcher functions
-
-2005-05-13 11:06  twisti
-
-       * src/vm/jit/i386/asmpart.S:
-         - added monitor for patcher functions
-         - renamed asm_builtin_checkarraycast to asm_builtin_arraycheckcast
-
-2005-05-13 11:06  twisti
-
-       * src/vm/jit/i386/patcher.c: Added monitor for patcher functions.
-
-2005-05-13 11:05  twisti
-
-       * src/vm/jit/i386/codegen.h:
-         - renamed some I386_* to more common REG_* or ALU_*
-         - added some alpha like macros (i think they can make the code
-           generator more readable)
-
-2005-05-13 11:04  twisti
-
-       * src/vm/jit/i386/emitfuncs.c: Renamed I386_* to more common REG_*
-         or ALU_*.
-
-2005-05-13 02:02  twisti
-
-       * src/native/native.c:
-         - forgot to include generated header files for dummynativetable
-         - killed panic's
-
-2005-05-13 01:55  twisti
-
-       * src/cacaoh/: headers.c, headers.h: Added exceptions (again) since
-         the exceptions.[ch] stuff does not work as it should for cacaoh.
-
-2005-05-13 01:53  twisti
-
-       * src/: toolbox/util.c, mm/boehm.c, mm/memory.c: #include
-         "vm/stringlocal.h"
-
-2005-05-13 01:45  twisti
-
-       * src/native/: native.c, nativetable.inc: Moved dummynativetable
-         into native.c, for a static cacao the nativetable.inc file is
-         generated.
-
-2005-05-13 01:44  twisti
-
-       * src/native/Makefile.am: Added `if STATIC_CLASSPATH' for
-         nativetable.inc generation.
-
-2005-05-13 01:38  twisti
-
-       * src/native/tools/: Makefile.am, gennativetable.c: Reactivate
-         gennativetable, it's required for a static cacao.
-
-2005-05-13 01:21  twisti
-
-       * src/native/vm/: Constructor.c, Method.c, VMObject.c, VMSystem.c,
-         VMThread.c: Moved global string definitions to string.c for 2
-         reasons: it seems to be more logical and exceptions.[ch] is no
-         longer in libvmcore.
-
-2005-05-13 01:02  twisti
-
-       * src/vm/: classcache.c, descriptor.c, exceptions.c, exceptions.h,
-         linker.c, resolve.c, string.c, stringlocal.h, utf8.c,
-         jit/helper.c, jit/stack.c, jit/alpha/codegen.c: Moved global
-         string definitions to string.c for 2 reasons: it seems to be more
-         logical and exceptions.[ch] is no longer in libvmcore.
-
-2005-05-13 01:00  twisti
-
-       * src/vm/Makefile.am: Don't include exceptions.[ch] in libvmcore,
-         since cacaoh and gennativetable cannot create runtime exceptions.
-
-2005-05-13 00:59  twisti
-
-       * src/: cacao/cacao.c, vm/loader.c, vm/loader.h: Renamed
-         create_all_classes to loader_load_all_classes.
-
-2005-05-11 23:33  twisti
-
-       * src/native/tools/: Makefile.am, gennativetable.c: Restored
-         deleted file.
-
-2005-05-11 21:52  twisti
-
-       * src/vm/jit/mips/asmpart.S: Handle compiler exceptions.
-
-2005-05-11 17:37  twisti
-
-       * src/lib/Makefile.am:
-         - glibj.zip location bugfix
-         - updated to classpath-0.15
-
-2005-05-11 17:34  twisti
-
-       * src/vm/jit/alpha/codegen.c: Patcher stub bugfix: don't increment
-         mcodeptr with ++.
-
-2005-05-11 17:31  twisti
-
-       * src/vm/jit/codegen.inc:
-         - use MCOPY macros
-         - use ptrint instead of long
-
-2005-05-11 15:47  twisti
-
-       * src/native/: nativetable.inc, include/Makefile.am: Renamed
-         java_net_InetAddress to java_net_VMInetAddress.
-
-2005-05-11 15:34  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, patcher.c: Renamed *_checkarraycast
-         to *_arraycheckcast.
-
-2005-05-11 15:03  twisti
-
-       * src/vm/jit/x86_64/: asmpart.S, patcher.c: Renamed
-         *_checkarraycast to *_arraycheckcast.
-
-2005-05-11 14:54  twisti
-
-       * src/vm/jit/: parse.c, reg.inc, stack.c: __MIPS__ defines for lazy
-         loading.
-
-2005-05-11 14:53  twisti
-
-       * src/: vm/jit/patcher.h, vm/jit/verify/typecheck.c,
-         cacaoh/headers.c: Renamed *_checkarraycast to *_arraycheckcast.
-
-2005-05-11 14:52  twisti
-
-       * src/vm/jit/codegen.inc: Added comment to gen_resolvebranch.
-
-2005-05-11 14:51  twisti
-
-       * src/vm/jit/mips/: Makefile.am, arch.h, asmpart.S, codegen.c,
-         codegen.h, patcher.c: Lazy loading.
-
-2005-05-11 14:50  twisti
-
-       * src/vm/: builtin.c, builtin.h:
-         - renamed *_checkarraycast to *_arraycheckcast
-         - added __MIPS__ define
-
-2005-05-11 14:05  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Patcher stub bugfix: don't increment
-         mcodeptr with ++.
-
-2005-05-09 17:30  twisti
-
-       * src/vm/jit/stack.c: Print catch type for try-catch blocks.
-
-2005-05-04 17:28  twisti
-
-       * src/native/nativetable.inc:
-         - added Java_java_lang_VMObject_getClass
-         - other static classpath changes (i have to reactivate the gen tool)
-
-2005-05-04 17:23  twisti
-
-       * src/native/jni.c: ISO C compile fix, arghhh!
-
-2005-05-04 17:07  twisti
-
-       * src/native/vm/VMClassLoader.c: Added
-         Java_java_lang_VMClassLoader_nativeGetResources again, since the GNU
-         classpath java-only implementation has some bootstrap problems
-         (strange problems with flat bootclasspathes).
-
-2005-05-04 17:06  twisti
-
-       * src/native/nativetable.inc:
-         - added java_lang_Class.h
-         - added Java_java_lang_VMClassLoader_nativeGetResources
-
-2005-05-04 14:39  christian
-
-       * src/vm/jit/lsra.inc: panic() elimiated
-
-2005-05-04 12:26  twisti
-
-       * src/native/vm/VMThread.c: Removed sleep, it's now implemented
-         completely in java.
-
-2005-05-04 12:25  twisti
-
-       * src/native/vm/VMObject.c: Added getClass.
-
-2005-05-04 12:25  twisti
-
-       * src/native/vm/VMClassLoader.c: Removed nativeGetResources, it's
-         now completely implemented in GNU classpath, with zip handling.
-
-2005-05-04 12:19  twisti
-
-       * src/native/include/: java_lang_ClassLoader.h,
-         java_lang_Cloneable.h, java_lang_Object.h, java_lang_String.h,
-         java_lang_Thread.h, java_lang_ThreadGroup.h,
-         java_lang_Throwable.h, java_lang_VMObject.h,
-         java_lang_VMThread.h: Regenerated for classpath-0.15.
-
-2005-05-03 21:27  twisti
-
-       * src/vm/jit/alpha/: asmpart.S, codegen.c, patcher.c: Patcher
-         synchronization.
-
-2005-05-03 21:25  twisti
-
-       * src/vm/jit/stacktrace.c: gcc-2.x compile fix.
-
-2005-05-03 21:25  twisti
-
-       * src/vm/jit/stack.c: Print `(NOT RESOLVED)' for unresolved
-         get/put{static,field} instructions.
-
-2005-05-03 21:24  twisti
-
-       * src/vm/jit/jit.c:
-         - added asmpart.h include
-         - removed codegen.h include
-
-2005-05-01 14:27  jowenn
-
-       * src/: native/jni.c, native/vm/Method.c, vm/class.c, vm/class.h,
-         vm/loader.c, vm/utf8.c, vm/utf8.h: FromReflectedMethod can be
-         called for methods and constructors
-
-2005-04-30 22:12  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Bugfix for the _great_ x86_64 isa.
-         Since %r12 is handled like %rsp, moves with %r12 as base register
-         are 1-byte longer. Arghh, i hate cisc...
-
-2005-04-30 18:29  jowenn
-
-       * src/native/jni.c: FromRef*
-
-2005-04-30 15:45  jowenn
-
-       * src/: native/jni.c, native/vm/Field.c, native/vm/VMClass.c,
-         vm/initialize.c, vm/statistics.c, vm/statistics.h,
-         vm/jit/codegen.inc, vm/jit/jit.c, vm/jit/stacktrace.c,
-         vm/jit/x86_64/asmpart.S, vm/jit/x86_64/codegen.c,
-         vm/jit/x86_64/patcher.c: more statistics, less crashing
-
-2005-04-30 15:29  twisti
-
-       * src/vm/jit/patcher.h: We need an extra patcher_putfieldconst fro
-         x86_64.
-
-2005-04-30 15:29  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         - use new patcher for putfieldconst
-         - warning fixes
-
-2005-04-30 15:28  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         - sync stuff must be done before builtin_monitorexit
-         - implemented patcher_putfieldconst
-
-2005-04-30 15:27  twisti
-
-       * src/vm/jit/x86_64/arch.h: Enabled SUPPORT_CONST_STORE again.
-
-2005-04-30 13:51  jowenn
-
-       * src/toolbox/logging.h: increase the MAXLIGTEXT constant. Perhaps
-         it's a littlebit too generous now, but at least verbosecall doesn't
-         crash anymore during eclipse startup.  It should be considered, if
-         using a constant smaller length should be used and if necessary
-         dynamically increased
-
-2005-04-29 21:29  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Removed debug output, sync code
-         works, checked on c4.
-
-2005-04-29 21:17  twisti
-
-       * src/threads/native/: threads.c, threads.h: Added get_dummyLR.
-
-2005-04-29 21:01  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         - also save temporary registers in leaf methods for -verbosecall
-         - create a virtual java_objectheader in patchref stubs to
-           synchronize patcher calls
-         - use some alpha macros
-
-2005-04-29 20:55  twisti
-
-       * src/vm/jit/x86_64/codegen.h: I think we should also use some
-         alpha macros on x86_64.
-
-2005-04-29 20:55  twisti
-
-       * src/vm/jit/x86_64/asmpart.S: Again a libc-movaps bugfix. Arghhh!
-
-2005-04-29 20:54  twisti
-
-       * src/vm/jit/x86_64/arch.h: Added additional {INT,FLT}_*_CNT
-         defines.
-
-2005-04-29 17:22  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Synchronize patcher functions.
-         Unfortunately it's not possible to write a wrapper for all patcher
-         functions (ra is calculated differently).
-
-2005-04-29 17:18  twisti
-
-       * src/vm/jit/x86_64/asmpart.S: Pass java_objectheader to
-         asm_wrapper_patcher.
-
-2005-04-28 15:31  twisti
-
-       * src/vm/jit/x86_64/patcher.c: -sa bugfix in
-         patcher_builtin_checkarraycast, patcher_builtin_arrayinstanceof.
-
-2005-04-28 14:52  jowenn
-
-       * tests/: cond1.java, cond2.java: testcases for  (cond) ? x:y
-
-2005-04-28 14:38  jowenn
-
-       * src/native/jni.c: the real implementation doesn't work yet as I
-         would like, so this is only to make eclipse startup that much, that
-         the show assembler runtime option crashes
-
-2005-04-28 14:34  jowenn
-
-       * src/vm/jit/x86_64/codegen.c: less debug output to make twisti
-         happy
-
-2005-04-28 14:19  jowenn
-
-       * src/vm/jit/: codegen.inc, jit.c, parse.c, parse.h, stack.c,
-         stacktrace.c, x86_64/codegen.c: less debug output
-
-2005-04-28 11:12  jowenn
-
-       * src/vm/jit/stack.c: don't optimize too much
-
-2005-04-27 16:29  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Forgot code patching nop's in
-         checkcast/instanceof with -sa.
-
-2005-04-27 16:28  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Do it like on alpha in
-         patcher_get_putstatic.
-
-2005-04-27 15:17  jowenn
-
-       * src/vm/jit/: codegen.inc, stacktrace.c, stacktrace.h,
-         x86_64/codegen.c, x86_64/patcher.c: general: less warnings in
-         stacktrace.c
-
-         x86_64: fix for clinit within native stub
-
-2005-04-27 14:58  twisti
-
-       * tests/codepatching/test.java: Added: doit's and try-catch blocks
-
-2005-04-27 14:58  christian
-
-       * src/vm/jit/reg.inc: [no log message]
-
-2005-04-27 14:53  twisti
-
-       * src/vm/jit/alpha/asmpart.S:
-         - float register defines (couldn't find a header file at least on
-         osf)
-         - added float registers to SAVE_*_REGISTERS, RESTORE_*_REGISTERS
-         - return zero in exception case in asm_calljavafunction2
-         - fixed gp bug in asm_throw_and_handle_exception: hit with hardware
-           null pointer
-         - changes in asm_wrapper_patcher
-
-2005-04-27 14:46  twisti
-
-       * src/vm/jit/alpha/codegen.c:
-         - use itmp3 for patchref branch and save the return address in the
-           patchref stub, since the ra register is not saved in leaf methods
-         - implemented remaining lazy loading stuff
-
-2005-04-27 14:44  twisti
-
-       * src/vm/jit/alpha/codegen.h: Moved ALIGNCODENOP from codegen.c
-
-2005-04-27 14:44  twisti
-
-       * src/vm/jit/alpha/patcher.c: The return address is now store on
-         the stack in the patchref stub, since the ra register may not be
-         saved in leaf methods.
-
-2005-04-27 14:42  twisti
-
-       * src/vm/jit/stack.c:
-         - remaining lazy loading stuff for alpha
-         - print `(NOT RESOLVED)' for invoke instructions
-
-2005-04-27 14:42  twisti
-
-       * src/vm/jit/parse.c: Remaining lazy loading stuff for alpha.
-
-2005-04-26 21:50  twisti
-
-       * src/vm/jit/x86_64/codegen.h: Define M_NOP.
-
-2005-04-26 21:50  twisti
-
-       * src/vm/jit/x86_64/codegen.c:
-         - handle monitorenter/exit inline
-         - renamed ICMD_NULLCHECKPOP to ICMD_CHECKNULL
-         - generate 5 nop's with showdisassemble for patchrefs
-         - all patchrefs use the same patcher wrapper
-
-2005-04-26 21:49  twisti
-
-       * src/vm/jit/x86_64/patcher.c:
-         - all patcher use the same wrapper and thus the same passing
-         conventions
-         - skip nop's with showdisassemble
-
-2005-04-26 21:48  twisti
-
-       * src/vm/jit/x86_64/asmpart.S:
-         - removed: asm_builtin_monitorenter, asm_builtin_monitorexit (these
-           are now handled inline)
-         - we only need one patcher wrapper
-
-2005-04-26 18:16  twisti
-
-       * src/vm/jit/alpha/: Makefile.am, asmpart.S, codegen.c, codegen.h,
-         patcher.c: Lazy loading for alpha and code patching stuff.
-
-2005-04-26 18:15  twisti
-
-       * src/vm/jit/stack.c: Lazy loading for alpha (some left).
-
-2005-04-26 18:14  twisti
-
-       * src/vm/jit/reg.inc: Lazy loading for alpha.
-
-2005-04-26 18:14  twisti
-
-       * src/vm/jit/patcher.h: Added patcher_checkcast_instanceof_class
-         for other architectures than i386 and x86_64.
-
-2005-04-26 18:14  twisti
-
-       * src/vm/jit/parse.c:
-         - lazy loading for alpha (some left)
-         - bugfix: don't pass NULL to builtin functions, since RISC machines
-           optimize that to a `clr reg' or similar
-         - BUILTIN_anewarray replaced with BUILTIN_newarray
-
-2005-04-26 18:12  twisti
-
-       * src/vm/jit/asmpart.h: Added asm_sync_instruction_cache for alpha.
-
-2005-04-26 18:11  twisti
-
-       * src/vm/jit/: i386/codegen.c, x86_64/codegen.c: Small bugfix in
-         invokevirtual.
-
-2005-04-26 18:11  twisti
-
-       * src/vm/builtin.c: Code patching: alpha define in builtin table.
-
-2005-04-26 18:10  twisti
-
-       * src/native/vm/VMSystemProperties.c: Added java.runtime.version,
-         java.runtime.name properties for tomcat4.
-
-2005-04-26 11:11  twisti
-
-       * tests/codepatching/test.java:
-         - doit
-         - try-catch blocks
-
-2005-04-26 01:15  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Oops, sorry for that.
-
-2005-04-25 16:19  twisti
-
-       * src/cacaoh/headers.c:
-         - removed unused i386 stuff (asm_builtin_newarray,
-           asm_builtin_arrayinstanceof)
-         - changed asm_wrapper_patcher_builtin_* to patcher_builtin_*
-
-2005-04-25 16:16  twisti
-
-       * src/vm/jit/i386/codegen.c:
-         - monitorenter/exit are now handled inline
-         - renamed ICMD_NULLCHECKPOP to ICMD_CHECKNULL
-         - generate nop's for showdisassemble (-sa)
-         - all lazy instructions use patchref
-
-2005-04-25 16:15  twisti
-
-       * src/vm/jit/i386/codegen.h:
-         - removed ALIGNCODENOP
-         - added M_NOP
-
-2005-04-25 16:14  twisti
-
-       * src/vm/jit/i386/patcher.c:
-         - changes signatures (every patcher uses the same assembler wrapper)
-         - handle showdisassemble (-sa)
-
-2005-04-25 16:13  twisti
-
-       * src/vm/jit/i386/asmpart.S: Removed (a lot of stuff):
-           - unrequired patcher wrapper
-           - asm_builtin_monitorenter, asm_builtin_monitorexit: are now
-             handled inline
-           - asm_builtin_newarray, asm_builtin_multianewarray,
-             asm_builtin_arrayinstanceof: not required anymore since 4-byte
-             stack slots (i386 calling convention)
-
-2005-04-25 16:10  twisti
-
-       * src/vm/jit/patcher.h:
-         - changed signatures
-         - added functionptr defines
-
-2005-04-25 16:10  twisti
-
-       * src/vm/jit/parse.h: Added: BUILTIN1T, BUILTIN2T which take a
-         target argument. The normal BUILTIN macros set target to NULL.
-
-2005-04-25 16:09  twisti
-
-       * src/vm/jit/parse.c: new, newarray, multianewarray,
-         checkarraycast, arrayinstanceof now also use the patchref stuff, so
-         we need only 1 wrapper.
-
-2005-04-25 16:07  twisti
-
-       * src/vm/jit/asmpart.h: We need only on assembler patcher wrapper,
-         removed the others.
-
-2005-04-25 16:06  twisti
-
-       * src/vm/builtin.c: Replaced asm_wrapper_patcher_BUILTIN_* with
-         PATCHER_builtin_* macros in builtin table.
-
-2005-04-25 16:05  twisti
-
-       * src/vm/builtin.h: Removed: asm_builtin_arrayinstanceof,
-         asm_builtin_newarray (since the i386 has now 4-byte stack slots,
-         they are not required anymore).
-
-2005-04-25 12:14  christian
-
-       * src/vm/jit/reg.inc: Reserve 0(esp) for argument of monitor enter
-         for synchronized methods
-
-2005-04-25 12:01  twisti
-
-       * src/vm/builtin.c:
-         - made builtin_monitorexit void
-         - some code reformatting
-
-2005-04-25 12:00  twisti
-
-       * src/vm/builtin.h: Don't use assembler monitorenter/exit wrapper
-         anymore.
-
-2005-04-25 10:50  christian
-
-       * src/vm/jit/i386/asmpart.S: asmpart.S for 4 Byte Stackslots
-
-2005-04-25 09:23  christian
-
-       * src/vm/jit/i386/codegen.c: codegen.c for 4 Byte Stack Slots
-
-2005-04-24 19:57  twisti
-
-       * src/vm/jit/parse.c: Do a ICMD_CHECKNULL before monitorenter and
-         nothing on monitorexit.
-
-2005-04-24 19:55  twisti
-
-       * src/vm/jit/: jit.c, jit.h, lsra.inc, reg.inc, stack.c,
-         loop/tracing.c, verify/typecheck.c: Renamed ICMD_NULLCHECKPOP to
-         ICMD_CHECKNULL and it does not pop an operand off the stack anymore.
-
-2005-04-24 15:07  jowenn
-
-       * src/: native/vm/VMThrowable.c, threads/native/threads.h,
-         vm/builtin.h, vm/exceptions.c, vm/exceptions.h, vm/jit/helper.c,
-         vm/jit/helper.h, vm/jit/stacktrace.h, vm/jit/x86_64/asmpart.S,
-         vm/jit/x86_64/codegen.c, vm/jit/x86_64/patcher.c: more
-         stacktraces
-
-2005-04-23 10:06  christian
-
-       * src/vm/jit/: lsra.inc, i386/icmd_uses_reg_res.inc: LSRA updated
-         to 4 Byte Stackslot (i386) i386/icmd_uses_reg_res.inc
-         _conservatively_ updated to asm_wrapper, etc. changes -> need
-         finetuning
-
-2005-04-23 00:01  jowenn
-
-       * src/: native/vm/VMStackWalker.c, native/vm/VMThrowable.c,
-         vm/builtin.c, vm/jit/codegen.inc, vm/jit/parse.c,
-         vm/jit/stacktrace.c, vm/jit/x86_64/asmoffsets.h,
-         vm/jit/x86_64/asmpart.S, vm/jit/x86_64/codegen.c:
-          first part of stacktraces on x86_64
-
-2005-04-22 19:37  christian
-
-       * src/vm/: builtin.h, jit/alpha/arch.h, jit/mips/arch.h,
-         jit/x86_64/arch.h: [alpha|mips|x86_64]arch.h adopted to latest
-         change
-
-2005-04-22 19:33  christian
-
-       * src/vm/jit/: reg.h, reg.inc, stack.c, i386/arch.h,
-         i386/codegen.h, i386/emitfuncs.c, powerpc/arch.h,
-         powerpc/codegen.c, x86_64/codegen.c: 4 Byte Stackslots for i386
-         (native Calling Convention) 16 Byte Stack alignment for PowerPC in
-         createnativestub no copy of spilled arguments to spilled locals on
-         x86_64 new define HAS_4BYTE_STACKSLOT in arch.h
-         SUPPORT_COMBINE_INTEGER_REGISTERS instead of USE_TWOREGS
-
-2005-04-22 16:57  twisti
-
-       * src/vm/jit/: helper.h, i386/patcher.c, x86_64/patcher.c:
-         asmhelper.h to helper.h changes.
-
-2005-04-22 16:50  christian
-
-       * src/vm/jit/Makefile.am: Renamed asmhelper.[ch] to helper.[ch]
-
-2005-04-22 15:55  twisti
-
-       * src/vm/jit/x86_64/Makefile.am: Added: patcher.c
-
-2005-04-22 15:55  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Changes the patchref stuff.
-
-2005-04-22 15:55  twisti
-
-       * src/vm/jit/x86_64/asmpart.S: We only need 3 patcher wrapper
-         functions.
-
-2005-04-22 15:54  twisti
-
-       * src/vm/jit/x86_64/arch.h: Temporary disable SUPPORT_CONST_STORE.
-
-2005-04-22 15:54  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Call it patcher_builtin_newarray
-         instead of patcher_builtin_anewarray.
-
-2005-04-22 15:52  twisti
-
-       * src/threads/native/threads.c: Use some global variables (class_,
-         utf_).
-
-2005-04-22 15:51  twisti
-
-       * src/native/vm/VMThread.c: Use global class_java_lang_ThreadGroup
-         variable.
-
-2005-04-22 15:51  twisti
-
-       * src/native/vm/VMStackWalker.c: Use builtin_anewarray instead of
-         builtin_newarray.
-
-2005-04-22 15:50  twisti
-
-       * src/native/native.c:
-         - use global class_ variables
-         - use builtin_anewarray instead of builtin_newarray
-
-2005-04-22 15:50  twisti
-
-       * src/native/jni.c: Implemented NewObjectArray correctly.
-
-2005-04-22 15:34  twisti
-
-       * src/vm/jit/i386/codegen.c: Lazy loading changes.
-
-2005-04-22 15:34  twisti
-
-       * src/vm/jit/i386/asmpart.S: Implemented patcher wrapper.
-
-2005-04-22 15:33  twisti
-
-       * src/vm/jit/i386/Makefile.am: Added: patcher.c
-
-2005-04-22 15:33  twisti
-
-       * src/vm/jit/i386/arch.h: Temporary disabled SUPPORT_CONST_STORE.
-
-2005-04-22 15:31  twisti
-
-       * src/vm/jit/i386/codegen.h: Added: i386_emit_membase32
-
-2005-04-22 15:30  twisti
-
-       * src/vm/jit/i386/: emitfuncs.c, emitfuncs.h: Added:
-         i386_alu_imm32_reg
-
-2005-04-22 15:30  twisti
-
-       * src/vm/jit/x86_64/codegen.c: Fixed 2 nasty bugs in
-         ICMD_INSTANCEOF.
-
-2005-04-22 15:29  twisti
-
-       * src/vm/jit/Makefile.am: Added patcher.h
-
-2005-04-22 15:28  twisti
-
-       * src/vm/jit/i386/patcher.c: Implemented remaining patcher
-         functions.
-
-2005-04-22 15:28  twisti
-
-       * src/vm/jit/patcher.h: patcher_builtin_new gets a
-         contant_classref.
-
-2005-04-22 15:26  twisti
-
-       * src/vm/jit/: parse.c, reg.inc, stack.c: Enable lazy loading for
-         i386.
-
-2005-04-22 15:21  twisti
-
-       * src/vm/jit/: helper.c, helper.h: Removed unused functions.
-
-2005-04-22 15:18  twisti
-
-       * src/vm/builtin.h: Temporary asm_builtin_multianewarray for i386
-         (till 4-byte stack slots).
-
-2005-04-22 00:41  twisti
-
-       * src/vm/builtin.c:
-         - renamed patcher wrapper entries in builtin table
-         - renamed builtin_nmultianewarray to builtin_multianewarray
-         - some cleanup
-
-2005-04-22 00:41  twisti
-
-       * src/vm/builtin.h: Renamed builtin_nmultianewarray to
-         builtin_multianewarray.
-
-2005-04-22 00:38  twisti
-
-       * src/cacaoh/headers.c: Renamed patcher wrapper function dummies.
-
-2005-04-22 00:36  twisti
-
-       * src/vm/jit/asmpart.h: Renamed patcher wrapper functions.
-
-2005-04-22 00:36  twisti
-
-       * src/vm/jit/patcher.h: Added more functions.
-
-2005-04-22 00:35  twisti
-
-       * src/vm/jit/stacktrace.c: Use builtin_anewarray instead of
-         builtin_newarray.
-
-2005-04-22 00:35  twisti
-
-       * src/vm/jit/parse.c: Renamed patcher wrapper function names and
-         some builtins.
-
-2005-04-22 00:18  twisti
-
-       * src/vm/: class.c, class.h, linker.c, loader.c: Added:
-         class_java_lang_ThreadGroup
-
-2005-04-22 00:17  twisti
-
-       * src/vm/: utf8.c, utf8.h: Added: utf_java_lang_ThreadGroup
-
-2005-04-21 22:25  twisti
-
-       * src/vm/jit/asmpart.h: Added asm_patcher_wrapper
-
-2005-04-21 22:19  twisti
-
-       * src/vm/jit/patcher.h: Added more functions.
-
-2005-04-21 21:44  twisti
-
-       * src/vm/jit/codegen.inc:
-         - renamed patchref.asmwrapper to patcher
-         - warning fix
-
-2005-04-21 21:44  twisti
-
-       * src/vm/jit/codegen.inc.h: Renamed patchref.asmwrapper to patcher
-
-2005-04-21 18:55  twisti
-
-       * tests/codepatching/: invokestatic.java, test.java: More stuff...
-
-2005-04-21 18:40  twisti
-
-       * src/vm/jit/i386/: emitfuncs.c, emitfuncs.h:
-         - bugfix in i386_mov_membase32_reg
-         - added some membase32 functions
-
-2005-04-21 13:22  twisti
-
-       * src/vm/jit/x86_64/patcher.c: Code patching functions rewritten in
-         C.
-
-2005-04-21 09:57  christian
-
-       * src/vm/jit/i386/icmd_uses_reg_res.inc: gnu header added
-
-2005-04-21 00:58  twisti
-
-       * tests/codepatching/test.java: Save.
-
-2005-04-20 18:01  twisti
-
-       * src/vm/jit/: patcher.h, i386/patcher.c: Starting to write code
-         patching functions is C.
-
-2005-04-19 22:31  twisti
-
-       * tests/codepatching/: multianewarray.java, newarray.java,
-         test.java: More tests.
-
-2005-04-19 15:51  twisti
-
-       * src/vm/jit/x86_64/asmpart.S: Merged 3 patcher functions:
-          - asm_patcher_builtin_newarray
-          - asm_patcher_builtin_checkarraycast
-          - asm_patcher_builtin_arrayinstanceof
-
-2005-04-15 16:29  edwin
-
-       * src/vm/classcache.c: added annotation for splint checking ran
-         indent over the code
-
-2005-04-15 11:33  edwin
-
-       * contrib/log2xml.pl: preserve indentation of log text
-
-2005-04-15 11:06  edwin
-
-       * contrib/log2xml.pl: output more valid xml
-
-2005-04-14 22:11  edwin
-
-       * contrib/log2xml.pl: typo
-
-2005-04-14 22:10  edwin
-
-       * contrib/log2xml.pl: disabled debug print, added vim boilerplate
-
-2005-04-14 21:44  edwin
-
-       * contrib/: log2xml.pl, log2xml.vim: added log2xml.pl and
-         log2xml.vim
-
-2005-04-14 14:04  edwin
-
-       * src/: vm/loader.c, native/vm/VMClassLoader.c, vm/loader.h:
-         synchronize VMClassLoader.defineClass and load_class_bootstrap
-
-2005-04-14 10:13  christian
-
-       * src/vm/jit/i386/icmd_uses_reg_res.inc: for using reserved
-         registers on i386
-
-2005-04-14 09:23  edwin
-
-       * src/native/vm/VMThrowable.c: do not panic if the stacktrace is
-         empty
-
-2005-04-14 08:07  edwin
-
-       * src/vm/loader.c: use log_text for logging
-
-2005-04-14 07:17  edwin
-
-       * src/: native/vm/VMClassLoader.c, toolbox/logging.c, vm/builtin.c,
-         vm/class.c, vm/class.h, vm/loader.c, vm/string.c,
-         vm/stringlocal.h, vm/utf8.c, vm/utf8.h: implemented defineClass
-         with name == NULL call ClassLoader.loadClass with dotted name
-         instead of slashed name prefix log messages with thread id
-         (preparation for log2xml.pl)
-
-2005-04-13 17:32  christian
-
-       * src/vm/jit/: reg.inc, stack.c, i386/arch.h: redo of changes
-         overwritten by last commit
-
-2005-04-13 14:50  christian
-
-       * src/: cacao/cacao.c, vm/jit/jit.h, vm/jit/lsra.h,
-         vm/jit/lsra.inc, vm/jit/reg.h, vm/jit/reg.inc, vm/jit/stack.c,
-         vm/jit/stack.h, vm/jit/i386/arch.h, vm/jit/i386/codegen.c,
-         vm/jit/i386/codegen.h, vm/jit/powerpc/asmpart.S,
-         vm/jit/x86_64/codegen.h, vm/jit/alpha/codegen.c,
-         vm/jit/alpha/codegen.h, vm/jit/mips/codegen.c,
-         vm/jit/mips/codegen.h, vm/jit/powerpc/codegen.c,
-         vm/jit/powerpc/codegen.h: register allocator uses unused argument
-         registers in non leaf methods as temp ICMD_xRETURN changed, so that
-         REG_RESULTs are saved in case of monitorexit (MIPS, POWERPC) new
-         lsra version (i386 uses now reserved registers as temp) spilled
-         local vars use now the memory location of corresponding spilled
-         arguments (MIPS, ALPHA, x86_64)
-
-2005-04-13 00:57  twisti
-
-       * src/vm/jit/alpha/arch.h: Define CONDITIONAL_LOADCONST with 1.
-
-2005-04-13 00:56  twisti
-
-       * src/vm/jit/: mips/codegen.c, alpha/codegen.c: patchref patch.
-
-2005-04-13 00:01  twisti
-
-       * src/vm/builtin.c: i386 defines in builtin table.
-
-2005-04-13 00:00  twisti
-
-       * src/vm/builtin.h: Comment asm_builtin_new for now (code patching
-         related).
-
-2005-04-12 23:59  twisti
-
-       * src/vm/jit/parse.c: Disable lazy loading now for i386.
-
-2005-04-12 23:59  twisti
-
-       * src/vm/jit/i386/codegen.c: Some lazy loading stuff.
-
-2005-04-12 23:57  twisti
-
-       * src/vm/jit/i386/asmpart.S: First code patching functions.
-
-2005-04-12 23:57  twisti
-
-       * src/vm/jit/i386/arch.h: Define CONDITIONAL_LOADCONST with 1.
-
-2005-04-12 23:54  twisti
-
-       * src/cacaoh/headers.c: Added asm_builtin_newarray for i386 (will
-         be removed).
+       * ChangeLog: Updated.
 
-2005-04-12 22:43  twisti
+2006-05-29 18:52  twisti
 
-       * src/cacaoh/headers.c: Renamed code patching functions.
+       * configure.ac (AC_INIT): Changed to version 0.96.
+       (CFLAGS): Changed to -O2.
+       * NEWS: Changed date.
 
-2005-04-12 22:32  twisti
+2006-05-29 15:51  twisti
 
-       * src/vm/jit/x86_64/codegen.c: Renamed code patching functions.
+       * src/vm/vm.c (usage): Removed new-line.
 
-2005-04-12 22:32  twisti
+2006-05-29 15:37  twisti
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - renamed code patching functions
-         - added array checkcast and instanceof code patcher
+       * src/vm/vm.c (OPT_GLIBJ): Added.
+       (Xusage): Added help for -Xglibj.
+       (version): Changed signature for conditional exit.
+       (main): Added OPT_GLIBJ. Print version after all commandline arguments
+       have been handled.
 
-2005-04-12 22:31  twisti
+2006-05-29 15:21  edwin
 
-       * src/vm/jit/helper.c: Convert ClassNotFoundException's to
-         NoClassDefFoundError's.
+       * src/vm/linker.c (link_class_intern): On i386 align all fields to
+       just 4 bytes as gcc does. This makes the offsets of Java fields match
+       the offset of native headers. This fixes a bug (java.lang.Double.value
+       had been at offset 16, but java_lang_Double.value is offset 12).
 
-2005-04-12 21:53  twisti
+2006-05-29 15:17  twisti
 
-       * src/vm/jit/asmpart.h: Renamed code patching functions.
+       * src/threads/native/critical.h (signal.h): Added, build fix for some
+       older Darwin systems.
 
-2005-04-12 21:52  twisti
+2006-05-29 14:32  twisti
 
-       * src/vm/jit/codegen.inc: dseg_display warning fix.
+       * NEWS: Added a lot of stuff.
 
-2005-04-12 21:52  twisti
+2006-05-29 14:31  twisti
 
-       * src/vm/jit/parse.c: Lazy array checkcast and instanceof.
+       * src/cacao/Makefile.am: Renamed libcacaovm.so to libjvm.so to be
+       binary compatible with Sun.
 
-2005-04-12 21:50  twisti
+2006-05-29 09:41  motse
 
-       * src/vm/builtin.c: Added asm_patcher_* functions.
+       src/native/jni.c: removed jvmti.h included cacaodbg.h for GetEnv -
+       jvmti
+       src/native/vm/VMVirtualMachine.c: formatting changes/removed debug
+       statements
+       src/native/vm/VMMethod.c:
+       (getName/getSignature/getModifiers/getLineTable): (Samuel Vinson) new
+       implementation. (partially changed by motse)
+       src/native/jvmti/cacaodbg.h: removed unused function declarations
+       src/native/jvmti/jvmti.c (getcacaostacktrace): new implementation -
+       does not yet handle traces of not current threads correctly.
+       (GetMethodName): fix: return JVMTI_ERROR_NULL_POINTER only on method
+       == NULL
+       (GetFrameCount/GetStackTrace): fixed check for valid thread argument.
 
-2005-04-12 21:50  twisti
+2006-05-26 16:24  edwin
 
-       * src/vm/linker.c: Link important system classes.
+       * src/toolbox/logging.h (stdarg.h): Include it here, instead of in
+       logging.c.
+       * src/toolbox/logging.c: See above.
 
-2005-04-12 21:49  twisti
+2006-05-26 12:58  twisti
 
-       * src/vm/loader.c: Moved exception loading to exceptions.c
+       * src/vm/jit/powerpc/linux/md-os.c (thread_restartcriticalsection):
+       Removed assert.
+       * src/vm/jit/powerpc/darwin/md-os.c (thread_restartcriticalsection):
+       Compile fix. Removed assert.
 
-2005-04-12 21:48  twisti
+2006-05-26 12:46  edwin
 
-       * src/vm/: utf8.c, utf8.h: Added:
-         utf_java_lang_ClassNotFoundException
+       * NEWS: Added unicode cleanup.
 
-2005-04-12 21:47  twisti
+2006-05-26 12:44  edwin
 
-       * src/vm/: exceptions.c, exceptions.h:
-         - added: string_java_lang_VMThrowable
-         - load an link all required exceptions
+       * NEWS: Added tasuki locks and other news.
 
-2005-04-12 21:46  twisti
+2006-05-26 12:31  motse
 
-       * src/vm/: class.c, class.h: Added:
-         class_java_lang_ClassNotFoundException
+       src/native/jvmti/jvmti.c (GetClassStatus): bugfix - only compare
+       class state
+
+2006-05-26 12:26  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_remove_stackframeinfo):
+       Commented.
 
-2005-04-11 17:53  twisti
+2006-05-26 12:25  twisti
+
+       * src/vm/jit/powerpc/linux/md-os.c (thread_restartcriticalsection):
+       Implemented.
+       * src/vm/jit/powerpc/darwin/md-os.c: Likewise.
+
+2006-05-26 12:19  edwin
+
+       * src/vm/builtin.c (builtin_init): Documented.
+       (builtin_trace_args): Documented.
+       (builtin_displaymethodstop): Documented.
+       
+       * src/vm/jit/alpha/md-abi.c (md_param_alloc): Documented.
+       
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers):
+       Documented.
+       
+       * src/vm/jit/codegen-common.c (methodtree_comparator): Documented.
+       (codegen_insertmethod): Documented.
+       
+       * src/toolbox/util.c (getcwd): Documented.
+
+2006-05-26 12:09  edwin
+
+       * src/vm/loader.h: Comment update.
+       
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Removed obsolete
+       inlining check.
+       
+       * src/vm/jit/replace.c: Typo fixed.
+       
+       * src/vm/jit/reg.c: Avoid XXX as wildcard in comments.
+       * src/vm/jit/jit.h: Likewise.
 
-       * tests/codepatching/: checkcastC.java, checkcastI.java,
-         instanceofC.java, instanceofI.java, test.java: Added tests:
-         checkcast, instanceof
+2006-05-26 11:57  twisti
 
-2005-04-11 17:50  twisti
+       * src/vm/properties.c (properties_system_add): Changed
+       javastring_new_from_ascii to javastring_new_from_utf_string.
+       
+       * src/native/jni.c (ThrowNew): Use a variable for clazz.
+       (JNI_CreateJavaVM): Release allocated memory if vm_create fails.
+       
+       * src/threads/native/threads.c: Comments reformatted.
 
-       * src/vm/jit/asmpart.h: Added: asm_checkcast_instanceof_flags,
-         asm_checkcast_instanceof_interface, asm_instanceof_class
+2006-05-26 11:48  edwin
 
-2005-04-11 17:49  twisti
+       * src/vm/class.c (class_resolveclassmethod): Removed obsolete XXX
+       comments.
+       (class_resolveinterfacemethod): Likewise.
+       (class_resolvefield): Likewise.
+       
+       * src/vm/classcache.h: Removed obsolete XXX comment.
+       
+       * src/vm/jit/allocator/lsra.h: Changed TYPE_XXX to TYPE_* in comments.
+       * src/vm/jit/jit.c: Likewise.
+       
+       * src/native/vm/VMObject.c (Java_java_lang_VMObject_clone):
+       Removed obsolete XXX comment.
+       
+       * src/mm/memory.c (dump_release): Removed obsolete debugging code.
+
+2006-05-26 11:22  edwin
+
+       * src/native/jni.c (DefineClass): Use javastring_new_from_utf_string.
+       (ThrowNew): Likewise.
+
+2006-05-26 09:30  twisti
+
+       * src/mm/boehm.c (stackcall_malloc_atomic): Removed.
+       (stackcall_malloc_uncollectable): Likewise.
+       (heap_alloc_uncollectable): Use macros directly.
+       (heap_allocate): Likewise.
+       
+       * src/vm/vm.c: Added -jvm options, which is available on darwin.
+       
+       * src/vm/suck.c (scandir_filter): Changed signature for darwin.
+
+2006-05-25 21:59  motse
+
+       src/vm/vm.c(usage): added information for jvmti agent for jdwp
+       (vm_create): jdwp code move to jvmti agent for jdwp (VMjdwp.c)
+       src/cacao/cacao.c (main): jdwp code move to jvmti agent for jdwp.
+       execute jvmti_set_phase only if needed
+       src/native/jvmti/cacaodbg.c (setup_jdwp_thread): jdwp code move to
+       jvmti agent for jdwp
+       src/native/jvmti/VMjdwp.c: change this to a jvmti complaint agent by
+       using jni/jvmti function instead of cacao specific functions and
+       implement a Agent_OnLoad as main entry point. Include
+       setup_jdwp_thread function.
+       src/native/jvmti/Makefile.am: add libjdwp.so
+       src/native/jvmti/cacaodbg.h: remove no more needed global jdwp
+       related variables
+       src/native/jvmti/jvmti.c: (Resume/SuspendThread(List)): add temporary
+       implementation for trying jdwp
+       (jvmti_agentload): bugfix in getting/passing libname/arguments
+
+2006-05-25 12:28  twisti
+
+       * vm/jit/intrp/intrp.h (global_sp): Added space, yeah, whatever...
+       * vm/jit/intrp/dynamic-super.c (vm/builtin.h): Added.
+       (vm/jit/disass.h): Likewise.
+       (gen_inst): Fixed compiler warnings.
+       * vm/jit/intrp/java.vmg: Fixed compiler warnings with
+       stacktrace_create_stackframeinfo.
+       * threads/native/threads.h (threadobject): Changed type of _global_sp
+       to u1*.
+
+2006-05-25 12:22  twisti
+
+       * NEWS: Sorry.
+
+2006-05-25 12:21  twisti
+
+       * src/vm/vm.c (HEAP_MAXSIZE): Changed to 128MB.
+       (STACK_SIZE): Changed to 64kB.
+       (Xusage): Calculate default sizes.
+       
+       * NEWS: New stuff added.
+
+2006-05-25 11:29  twisti
+
+       * src/vm/jit/x86_64/md-emit.h (emit_movl_reg_reg): Added.
+
+2006-05-25 11:24  edwin
+
+       * configure.ac: Disable inlining and lsra by default.
+
+2006-05-24 14:11  twisti
+
+       * src/threads/native/threads.c (threads_startup_thread): Allocate Java
+       stack on Java heap instead of hardware stack.
+
+2006-05-24 14:08  twisti
+
+       * configure.ac: Added INTRP_CFLAGS.
+       * src/vm/jit/intrp/Makefile.am (CFLAGS): Set to INTRP_CFLAGS.
+
+2006-05-24 11:00  motse
+
+       src/vm/vm.c (vm_exit): only set JVMTI_PHASE_DEAD if a jvmti agent or
+       a jvmti environment is loaded.
+       src/native/jvmti/cacaodbg.c (jvmti_cacaodbgserver_quit): bugfix: set
+       dbgcom = NULL only if all environments have been disposed.
+       src/native/jvmti/jvmti.c (GetLoadedClasses): remove debug statement
+
+2006-05-23 19:52  motse
+
+       src/vm/classcache.c: export CLASSCACHE_LOCK/UNLOCK and
+       lock_hashtable_classcache
+       src/vm/classcache.h: idem
+       src/native/jvmti/jvmti.c (GetLoadedClasses) implemented (sv/motse)
+       (GetClassSignature) fixed
+
+2006-05-23 15:31  motse
+
+       src/vm/vm.c (vm_create): rename jvmti function calls
+       
+       src/cacao/cacao.c (main): rename jvmti function calls
+       
+       src/native/jni.c (GetEnv): rename jvmti function calls. jvmti version
+       changed to JVMTI_VERSION_INTERFACE_JVMTI
+       
+       src/native/vm/VMVirtualMachine.c (getAllLoadedClassesCount): (Samuel
+       Vinson) implemented.
+       (getAllLoadedClassesCount): jvmti Deallocate call added. (sv):
+       CallObjectMethod fix
+       (getAllClassMethods): (Samuel Vinson) implemented.
+       (getClassMethod): (Samuel Vinson) implemented.
+       
+       src/native/jvmti/jvmti.h: added JVMTI_VERSION interface and mask
+       
+       src/native/jvmti/cacaodbgserver.h: msg queue/shared mem related
+       things removed. gdb related defines added.
+       
+       src/native/jvmti/dbg.h: remove ptrace related things
+       
+       src/native/jvmti/cacaodbg.c change setsysbrkpt name to
+       jvmti_set_system_breakpoint, addbrkpt to jvmti_add_breakpoint,
+       allthreads to jvmti_get_all_threads
+       (jvmti_cacao_debug_init): new function where fork/exec of
+       cacaodbgserver takes place
+       (jvmti_set_system_breakpoint): added functionality for brkpt delete
+       and asm label for cacaodbgserver support
+       (jvmti_cacaodbgserver_quit): new function for killing cacaodbgserver
+       properly
+       (jvmti_cacao_generic_breakpointhandler): new function. This is the
+       entry point for every breakpointhandler and start for a new jvmti
+       event
+       (jvmti_cacao_debug_init): new function for starting up
+       cacaodbgserver process.
+       
+       src/native/jvmti/VMjdwp.c (jvmti_VMjdwpInit): function renamed
+       
+       src/native/jvmti/Makefile.am: delete dbg.c. (sv) add compile/install
+       support for cacaodbgserver.
+       
+       src/native/jvmti/cacaodbg.h: breakpoint counter added to struct
+       _brkpt. change setsysbrkpt name to jvmti_set_system_breakpoint,
+       addbrkpt to jvmti_add_breakpoint, allthreads to
+       jvmti_get_all_threads, fireEvent to jvmti_fireEvent, agentload to
+       jvmti_agentload agentunload to jvmti_agentunload, getcurrentthread to
+       jvmti_get_current_thread, set_jvmti_phase to jvmti_set_phase,
+       new_jvmtienv to jvmti_new_environment, VMjdwpinit to
+       jvmti_VMjdwpInit. added breakpoint table constants. removed global
+       jdwp, jvmti, suspend, transport, agentarg variables
+       
+       src/native/jvmti/jvmti.c all jvmti-environment function changed to
+       static functions. execcallback renamed to execute_callback. fireEvent
+       renamed to jvmti_fireEvent.
+       (execute_callback): add phase checks
+       (GetClassMethods): bugfix in copying jmethodIDs
+       (DisposeEnvironment): relocate work to jvmti_cacaodbgserver_quit
+       (jvmti_new_environment) : relocate forking new process to
+       jvmti_cacao_debug_init
+       (CHECK_ADD_CAPABILITY): bugfix in adding capabilities
+       (GetClassMethods): bugfix coping methodinfo pointers
+       (SetEventNotificationMode): setsysbrkpt calls added.
+       rename jvmti function names.
+       
+       src/native/jvmti/cacaodbgserver.c changed to support gdb insted of
+       using ptrace directly.
+       (getchildprocptrace): removed
+       (waitloop): removed
+       (startgdb): new function. start a new gdb session.
+       (getgdboutput): new helper function for getting gdb output.
+       (dataevaluate): new helper function for getting value for a given
+       expression
+       (commonbreakpointhandler): new function which handles SIGTRAPs and
+       gdb breakpoint hits.
+       (controlloop) : new function handle communication with gdb
+       (main): removed old code. added calls to startgdb and controlloop
+       
+       src/native/jvmti/dbg.c removed
+       
+       src/threads/native/threads.h: removed
+       threads_set_current_threadobject. added jvmti_get_threads_breakpoints
+       
+       src/threads/native/threads.c: (threads_startup_thread) add thread
+       start/end asm lables
+       (threads_set_current_threadobject): removed jvmti thread start
+       support.
+       (jvmti_get_threads_breakpoints) new function that gets addresses of
+       asm lables.
+       
+       src/threads/native/lock.h: added definition of lock_global_pool_lock
+       and lock_global_pool
+
+2006-05-23 08:51  twisti
+
+       * src/vm/jit/x86_64/codegen.c: Changed the code generator to produce
+       RISC-like code. These are way too much changes to name them.
+       (createnativestub): Bugfix in argument saving.
+       * src/vm/jit/x86_64/codegen.h: Likewise.
+       * src/vm/jit/x86_64/emit.c: Likewise.
+       * src/vm/jit/x86_64/md-emit.h: Likewise.
+
+2006-05-23 08:42  twisti
+
+       * src/vm/options.c (opt_heapmaxsize, opt_heapstartsize): Added.
+       * src/vm/options.h: Likewise.
+       
+       * src/vm/vm.c (version): Print heap and stack information.
+       (vm_create): Use global option variables.
+
+2006-05-23 08:25  twisti
+
+       * src/vm/jit/x86_64/emit.c (emit_movl_reg_reg): New function.
+       
+       * src/vm/jit/x86_64/codegen.c (ICMD_L2I): Only move the low
+       32-bit. Otherwise this may cause a bug with e.g. array accesses, as
+       the index registers are treated as 64-bit.
+       
+       * src/vm/jit/x86_64/codegen.h (gen_bound_check): Bugfix: only read
+       32-bit.
+       (M_IMOV): Added.
+       (M_ICMP_MEMBASE): Likewise.
+
+2006-05-22 16:14  twisti
+
+       * configure.ac: Added --with-classpath-includedir.
+
+2006-05-22 09:07  twisti
+
+       * NEWS: Some news.
+
+2006-05-22 09:06  twisti
+
+       * src/vm/vm.c (vm_abort): New method.
+       * src/vm/vm.h: Likewise.
+       * src/cacaoh/headers.c: Likewise.
+       
+       * src/toolbox/logging.c (log_vprint): Made non-static.
+       * src/toolbox/logging.h (log_vprint): Added.
+       
+       * src/threads/native/threads.c (threads_sem_init): Use vm_abort.
+       (threads_sem_wait): Likewise.
+       (threads_sem_post): Likewise.
+       (threads_current_time_is_earlier_than): Likewise.
+       (threads_init): Check for pthread_attr_init error.
+       (threads_start_thread): Check for errors of pthread calls. Set the
+       threads stack size.
+
+2006-05-18 14:33  edwin
+
+       * src/threads/native/lock.h, src/threads/native/lock.c: Tasuki lock
+       implementation (without lock deflation). This is a straight-forward
+       implementation that uses an extra word in java_objectheader for the
+       FLC (flat lock contention) bit.
+       
+       * src/vm/global.h (java_objectheader): Added field `flcword`.
+       
+       * src/threads/native/lock.h (Authors): Changed to myself, as there
+       is none of the old code remaining in this file.
+       
+       * src/vm/jit/powerpc/codegen.c, src/vm/jit/alpha/codegen.c,
+       src/vm/jit/mips/codegen.c, src/vm/jit/i386/codegen.c,
+       src/vm/jit/x86_64/codegen.c (codegen, createnativestub): Add the
+       FLC word when creating the fake object header for patcher
+       synchronization.
+
+2006-05-18 14:06  twisti
+
+       * src/vm/properties.c (properties_get): Search the list backwards to
+       get the newest entry.
+
+2006-05-18 12:50  twisti
+
+       * src/vm/vm.c (version): Print default and runtime classpath
+       variables.
+       (vm_create): Add a default java.endorsed.dirs property.
+
+2006-05-17 22:06  twisti
+
+       * configure.ac: Don't export BOOTCLASSPATH, that makes problems.
+
+2006-05-17 12:10  twisti
+
+       * src/vm/jit/powerpc/codegen.c (createnativestub): Fixed bug and
+       changed argument saving and restoring.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_vm_call_method): Partially
+       implemented Darwin bits. Still some bugs with testarguments.
+
+2006-05-16 13:08  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Bugfix: use REG_ITMP3 in
+       ICMD_L{DIV,REM} for function address. This fixes
+       gnu.testlet.java.math.BigInteger.divide.
+
+2006-05-16 01:49  edwin
+
+       * src/threads/native/lock.c: Fixed comment formatting.
+
+2006-05-15 23:37  edwin
+
+       * src/vm/jit/i386/machine-instr.h (compare_and_swap): Fixed comment.
+
+2006-05-15 23:31  twisti
+
+       * configure.ac: Export BOOTCLASSPATH for javac check.
+       * src/cacao/Makefile.am (cacao_SOURCES)Removed cacao.h.
+       * src/vm/jit/inline/Makefile.am (libinline_la_SOURCES): Added
+       inline_debug.inc.
+       * src/vm/jit/powerpc/Makefile.am (DIST_SUBDIRS): Added netbsd.
+
+2006-05-15 23:22  edwin
+
+       * src/vm/jit/inline/inline_debug.c: Renamed to
+       src/vm/jit/inline/inline_debug.inc.
+       
+       * src/vm/jit/inline/inline.c: #include changed to
+       src/vm/jit/inline/inline_debug.inc.
+       
+       * src/vm/resolve.c: Typo fixed.
+
+2006-05-15 21:48  edwin
+
+       * src/threads/native/lock.c (lock_record_remove_waiter): Made static.
+       (lock_monitor_wait): Likewise.
+
+2006-05-15 21:32  edwin
+
+       * src/threads/native/lock.h, src/threads/native/lock.c
+       (lock_does_thread_hold_lock): Renamed to
+       lock_is_held_by_current_thread
+       and removed thread argument, as reliable checking is only possible for
+       the current thread, anyway.
+       
+       * src/native/vm/VMThread.c (lock_does_thread_hold_lock): Changed to
+       lock_is_held_by_current_thread.
+       
+       * src/native/jvmti/jvmti.c (lock_does_thread_hold_lock): Changed to
+       lock_is_held_by_current_thread.
+
+2006-05-15 18:24  edwin
+
+       * configure.ac (src/threads/green/Makefile): Removed from
+       AC_CONFIG_FILES.
+
+2006-05-15 15:06  edwin
+
+       * src/threads/native/lock.h (lock_record_pool_header_t): Documented.
+       (lock_record_pool_t): Documented.
+       
+       * src/threads/native/lock.c: Minor whitespace cleanup.
+
+2006-05-15 14:40  twisti
+
+       * THIRDPARTY: Removed green threads stuff.
+
+2006-05-15 14:39  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_perform_threadswitch)
+       (asm_initialize_thread_stack, asm_switchstackandcall): Removed (2nd
+       part of green threads removal).
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/i386/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
+
+2006-05-15 14:24  twisti
+
+       * src/vm/hashtable.h,
+       src/vm/class.c,,
+       src/vm/suck.c,
+       src/vm/loader.c,
+       src/vm/builtin.c,
+       src/vm/string.c,
+       src/vm/suck.h,
+       src/vm/builtin.h,
+       src/vm/loader.h,
+       src/vm/finalizer.c,
+       src/vm/classcache.c,
+       src/vm/initialize.c,
+       src/vm/jit/powerpc/linux/md-os.c,
+       src/vm/jit/powerpc/netbsd/md-os.c,
+       src/vm/jit/powerpc/darwin/md-os.c,
+       src/vm/jit/powerpc/darwin/md-asm.h,
+       src/vm/jit/powerpc/codegen.c,
+       src/vm/jit/powerpc/asmpart.S,
+       src/vm/jit/codegen-common.h,
+       src/vm/jit/alpha/codegen.c,
+       src/vm/jit/alpha/linux/md-os.c,
+       src/vm/jit/alpha/asmpart.S,
+       src/vm/jit/alpha/freebsd/md-os.c,
+       src/vm/jit/stack.c,
+       src/vm/jit/code.c,
+       src/vm/jit/verify/typecheck.c,
+       src/vm/jit/mips/codegen.c,
+       src/vm/jit/mips/linux/md-os.c,
+       src/vm/jit/mips/asmpart.S,
+       src/vm/jit/mips/irix/md-os.c,
+       src/vm/jit/patcher.h,
+       src/vm/jit/inline/inline.c,
+       src/vm/jit/allocator/simplereg.c,
+       src/vm/jit/i386/codegen.c,
+       src/vm/jit/i386/linux/md-os.c,
+       src/vm/jit/i386/asmpart.S,
+       src/vm/jit/i386/freebsd/md-os.c,
+       src/vm/jit/parse.c,
+       src/vm/jit/intrp/intrp.h,
+       src/vm/jit/intrp/codegen.c,
+       src/vm/jit/intrp/engine.c,
+       src/vm/jit/intrp/asmpart.c,
+       src/vm/jit/intrp/dynamic-super.c,
+       src/vm/jit/intrp/java.vmg,
+       src/vm/jit/asmpart.h,
+       src/vm/jit/x86_64/md.c,
+       src/vm/jit/x86_64/codegen.c,
+       src/vm/jit/x86_64/asmpart.S,
+       src/vm/jit/profile/profile.c,
+       src/vm/jit/stacktrace.c,
+       src/vm/jit/jit.c,
+       src/vm/jit/stacktrace.h,
+       src/vm/jit/codegen-common.c,
+       src/vm/jit/jit.h,
+       src/vm/global.h,
+       src/vm/builtintable.inc,
+       src/vm/signal.c,
+       src/vm/exceptions.c,
+       src/vm/vm.c,
+       src/vm/linker.c,
+       src/vm/exceptions.h,
+       src/vm/utf8.c,
+       src/vm/hashtable.c,
+       src/cacao/cacao.c,
+       src/cacao/Makefile.am,
+       src/native/tools/Makefile.am,
+       src/native/tools/gennativetable.c,
+       src/native/jni.c,
+       src/native/vm/VMObject.c,
+       src/native/vm/VMThread.c,
+       src/native/jni.h,
+       src/native/native.c,
+       src/native/jvmti/cacaodbg.c,
+       src/native/jvmti/cacaodbg.h,
+       src/native/jvmti/jvmti.c,
+       src/toolbox/avl.c,
+       src/toolbox/logging.c,
+       src/toolbox/avl.h,
+       src/mm/boehm.h,
+       src/mm/memory.c,
+       src/mm/boehm.c,
+       src/threads/green,
+       src/threads/native/threads.h,
+       src/threads/native/threads.c,
+       src/threads/Makefile.am,
+       src/cacaoh/cacaoh.c,
+       src/cacaoh/headers.h,
+       src/cacaoh/Makefile.am,
+       src/cacaoh/headers.c,
+       configure.ac: Green threads removal, USE_THREADS renamed to
+       ENABLE_THREADS, NATIVE_THREADS define removed.
+
+2006-05-15 13:13  twisti
+
+       * src/vm/jit/asmpart.h (calljava_xhandler2): Not required anymore.
+
+2006-05-15 12:23  twisti
+
+       * src/threads/native/threads.c (sem_init, sem_post, sem_wait)
+       (sem_destroy): Added a pthread implementation (taken from Boehm-GC)
+       for Darwin, as Darwin does not have an implementation for these
+       functions.
+       * src/threads/native/threads.h (sem_t): Added structure for Darwin.
+       * src/threads/native/lock.h (semaphore.h): Removed.
+
+2006-05-15 12:14  edwin
+
+       * src/threads/native/lock.c (THIN_UNLOCKED): Abstracted out the thin
+       unlocked state so we can toggle the shape bit meaning if we want.
+       (lock_pre_compute_thinlock): Likewise.
+       (lock_get_initial_lock_word): Likewise.
+       (lock_monitor_enter): Made void. Might save an instruction here and
+       there.
+       (lock_monitor_wait): lock_monitor_enter no longer returns the lock
+       record. Assert that it is still the same fat lock (it must be).
+
+2006-05-15 11:34  edwin
+
+       * src/threads/native/lock.c: Added reference to thin lock paper and
+       explained the lockword format.
+
+2006-05-14 22:41  edwin
+
+       * src/threads/native/lock.c: Thin lock implementation.
+       
+       * src/threads/native/threads.h (threadobject): Added thinlock field.
+       (Authors, Changes): Moved myself to Authors because of rewrite.
+       
+       * src/threads/native/threads.c (threads_preinit): Init index and
+       thinlock field of mainthreadobj here. (Needed early.)
+       (threads_table_add): Init pre-computed thinlock field here.
+       
+       * src/threads/native/lock.h (lock_pre_compute_thinlock): New function.
+
+2006-05-14 22:36  edwin
+
+       * src/threads/native/lock.c (lock_record_free_pools): Assert that
+       this function is not called. It does not match the new way lock
+       records are handled. We must find another way to free them.
+       
+       * src/threads/native/threads.c (threads_init): Do not call
+       lock_record_free_pools.
+       (threads_table_add): Removed debug code.
+       (threads_startup_thread): Likewise.
+
+2006-05-14 15:34  edwin
+
+       * src/threads/native/threads.c (threads_table_init): New function.
+       (threads_table_add): New function.
+       (threads_table_remove): New function.
+       (threads_table_dump): New function.
+       (threads_table): New global variable.
+       (threads_preinit): Call threads_table_init.
+       Call threads_table_add to add main thread.
+       (threads_init_threadobject): Initialize index to 0.
+       (threads_startup_thread): Call threads_table_add to add the thread
+       to the table, and threads_table_remove to remove if afterwards.
+
+2006-05-14 14:02  edwin
+
+       * src/threads/native/threads.h, src/threads/native/threads.c
+       (nativethread): Removed. This struct is now inlined in threadobject.
+       (threads_table_entry_t): New type.
+       (threads_table_t): New type.
+       Some further cleanup.
+       
+       * src/vm/builtin.h (THREADINFO): Becomes THREADOBJECT.
+       
+       * src/vm/jit/intrp/intrp.h (THREADINFO): Becomes THREADOBJECT.
+       
+       * src/vm/jit/stacktrace.c (_stackframeinfo): This is now directly
+       a field of threadobject.
+       
+       * src/vm/jit/stacktrace.h (THREADINFO): Becomes THREADOBJECT.
+       
+       * src/native/jni.h (THREADINFO): Becomes THREADOBJECT.
+       
+       * src/native/jvmti/jvmti.c (isSleeping): Renamed to sleeping.
+
+2006-05-14 12:22  edwin
+
+       * src/threads/native/lock.c, src/threads/native/lock.h: Rewritten
+       as a very basic fat lock implementation.
+       
+       * src/vm/jit/powerpc64/arch.h (USE_MD_THREAD_STUFF): Renamed to
+       USE_FAKE_ATOMIC_INSTRUCTIONS.
+       
+       * src/vm/jit/intrp/engine.c (USE_MD_THREAD_STUFF): Renamed to
+       USE_FAKE_ATOMIC_INSTRUCTIONS.
+       
+       * src/threads/native/threads.c (USE_MD_THREAD_STUFF): Renamed to
+       USE_FAKE_ATOMIC_INSTRUCTIONS.
+       (ee.lrpool): Renamed to ee.lockrecordpools.
+
+2006-05-14 12:15  edwin
+
+       * src/threads/native/threads.c (threads_calc_absolute_time): Optimize
+       waiting for the maximum 64-bit number of milliseconds to an unbounded
+       wait. This also avoids an overflow problem we seem to have with timed
+       waits.
+
+2006-05-13 23:25  edwin
+
+       * src/threads/native/lock.c (lock_init_thread_lock_record_pool):
+       Renamed to lock_init_execution_env. Cleanup and Comments.
+       
+       * src/threads/native/lock.h (lock_init_thread_lock_record_pool):
+       Renamed to lock_init_execution_env.
+       
+       * src/threads/native/threads.c (lock_init_thread_lock_record_pool):
+       Renamed to lock_init_execution_env.
+
+2006-05-13 23:10  edwin
+
+       * src/threads/native/threads.c, src/threads/native/threads.c: Further
+       cleanup. Still no functional changes.
+       Renamed external symbols are listed below.
+       
+       * src/threads/native/critical.h, src/threads/native/critical.c:
+       Cleanup.
+       
+       * src/threads/native/lock.h: Cleanup.
+       
+       * src/vm/jit/profile/profile.c (thread_sleep): Renamed to
+       threads_sleep.
+       
+       * src/vm/vm.c (joinAllThreads): Renamed to threads_join_all_threads.
+       
+       * src/native/jni.c (thread_getself): Renamed to
+       threads_get_current_threadobject.
+       
+       * src/native/vm/VMThread.c (thread): Typedef `thread` has been
+       removed.
+       (interruptThread): Renamed to threads_interrupt_thread.
+       (isInterruptedThread): Renamed to threads_thread_has_been_interrupted.
+       (setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.
+       (yieldThread): Renamed to threads_yield.
+       (interruptedThread): Renamed to
+       threads_check_if_interrupted_and_reset.
+       
+       * src/native/jvmti/cacaodbg.c (thread_getself): Renamed to
+       threads_get_current_threadobject.
+       (setthreadobject): Renamed to threads_set_current_threadobject.
+       
+       * src/native/jvmti/jvmti.c (setthreadobject): Renamed to
+       threads_set_current_threadobject.
+       
+       * src/threads/green/threads.h (yieldThread): Renamed to threads_yield.
+       (setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.
+       
+       * src/threads/green/threads.c (yieldThread): Renamed to threads_yield.
+       (setPriorityThread): Renamed to threads_java_lang_Thread_set_priority.
+
+2006-05-12 16:49  edwin
+
+       * src/threads/native/threads.c: The Big Thread Cleanup. No functional
+       changes,
+       only code motion, renaming, documenting. This file has been split into
+       threads.c, lock.c, and critical.c.
+       Externally used symbols that were renamed are listed below. Static
+       symbol
+       renames are not listed.
+       
+       * src/threads/native/threads.h: The Big Thread Cleanup. No functional
+       changes,
+       only code motion, renaming, documenting. This file has been split into
+       threads.h, lock.h, and critical.h.
+       
+       * src/cacaoh/cacaoh.c (initLocks): Renamed to lock_init (green
+       threads).
+       
+       * src/cacaoh/headers.c (threadcritnode): Renamed to
+       critical_section_node_t.
+       
+       * src/mm/memory.c (initObjectLock): Renamed to lock_init_object_lock.
+       
+       * src/native/jvmti/jvmti.c (lockRecordPool): Renamed to
+       lock_record_pool_t.
+       (pool_lock): Renamed to lock_global_pool_lock.
+       (global_pool): Renamed to lock_global_pool.
+       (ownerThread): Renamed to owner.
+       (threadHoldsLock): Renamed to lock_does_thread_hold_lock.
+       (monitorExit): Renamed to lock_monitor_exit.
+       (wait_cond_for_object): Renamed to lock_wait_for_object.
+       (signal_cond_for_object): Renamed to lock_notify_object.
+       (broadcast_cond_for_object): Renamed to lock_notify_all_object.
+       
+       * src/native/tools/gennativetable.c (initLocks): Renamed to lock_init
+       (green threads).
+       
+       * src/native/vm/VMObject.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       (wait_cond_for_object): Renamed to lock_wait_for_object.
+       (signal_cond_for_object): Renamed to lock_notify_object.
+       (broadcast_cond_for_object): Renamed to lock_notify_all_object.
+       
+       * src/native/vm/VMThread.c (threadHoldsLock): Renamed to
+       lock_does_thread_hold_lock.
+       
+       * src/threads/green/locks.c, src/threads/green/locks.h
+       (initLocks): Renamed to lock_init.
+       (wait_cond_for_object): Renamed to lock_wait_for_object.
+       (signal_cond_for_object): Renamed to lock_notify_object.
+       (broadcast_cond_for_object): Renamed to lock_notify_all_object.
+       (internal_broadcast_cond_for_object): Renamed to
+       internal_lock_notify_all_object.
+       
+       * src/threads/green/threads.c (initLocks): Renamed to lock_init.
+       (internal_broadcast_cond_for_object): Renamed to
+       internal_lock_notify_all_object.
+       
+       * src/threads/native/Makefile.am (lock.c, lock.h): Added new files.
+       (critical.c, critical.h): Added new files.
+       (Changes): Added my name.
+       
+       * src/threads/native/critical.c: New file.
+       
+       * src/threads/native/critical.h: New file.
+       
+       * src/threads/native/lock.c: New file.
+       
+       * src/threads/native/lock.h: New file.
+       
+       * src/toolbox/avl.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       
+       * src/vm/builtin.c (initObjectLock): Renamed to lock_init_object_lock.
+       (monitorEnter): Renamed to lock_monitor_enter.
+       (monitorExit): Renamed to lock_monitor_exit.
+       
+       * src/vm/class.c (initObjectLock): Renamed to lock_init_object_lock.
+       
+       * src/vm/classcache.c (initObjectLock): Likewise.
+       
+       * src/vm/finalizer.c (initObjectLock): Likewise.
+       (wait_cond_for_object): Renamed to lock_wait_for_object.
+       (signal_cond_for_object): Renamed to lock_notify_object.
+       
+       * src/vm/global.h (monitorLockRecord): Renamed to lock_record_t.
+       
+       * src/vm/hashtable.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       
+       * src/vm/jit/asmpart.h: Added #include "threads/native/critical.h"
+       (threadcritnode): Renamed to critical_section_node_t.
+       
+       * src/vm/jit/code.c: Comment changed.
+       
+       * src/vm/jit/codegen-common.c, src/vm/jit/codegen-common.h
+       (threadcritnode): Renamed to critical_section_node_t.
+       (threadcritnodetemp): Renamed to codegen_critical_section_t.
+       
+       * src/vm/jit/alpha/codegen.c (get_dummyLR): Renamed to
+       lock_get_initial_lock_word.
+       
+       * src/vm/jit/alpha/freebsd/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       * src/vm/jit/alpha/linux/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       
+       * src/vm/jit/i386/codegen.c (get_dummyLR): Renamed to
+       lock_get_initial_lock_word.
+       
+       * src/vm/jit/i386/freebsd/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       * src/vm/jit/i386/linux/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       
+       * src/vm/jit/intrp/dynamic-super.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       
+       * src/vm/jit/mips/codegen.c (get_dummyLR): Renamed to
+       lock_get_initial_lock_word.
+       
+       * src/vm/jit/mips/irix/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       * src/vm/jit/mips/linux/md-os.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       
+       * src/vm/jit/powerpc/codegen.c (get_dummyLR): Renamed to
+       lock_get_initial_lock_word.
+       
+       * src/vm/jit/profile/profile.c (wait_cond_for_object): Renamed to
+       lock_wait_for_object.
+       
+       * src/vm/jit/stack.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       
+       * src/vm/jit/x86_64/codegen.c (get_dummyLR): Renamed to
+       lock_get_initial_lock_word.
+       
+       * src/vm/jit/x86_64/md.c (thread_checkcritical): Renamed to
+       critical_find_restart_point.
+       
+       * src/vm/loader.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       (initLocks): Renamed to lock_init (green threads).
+       
+       * src/vm/string.c (initObjectLock): Renamed to
+       lock_init_object_lock.
+       
+       * src/vm/vm.c (initLocks): Renamed to lock_init (green threads).
+
+2006-05-12 14:32  twisti
+
+       * src/vm/jit/emit.h: Replaced __POWERPC__ #ifdef with
+       SIZEOF_VOID_P == 4.
+
+2006-05-11 14:02  twisti
+
+       * src/native/vm/VMClassLoader.c (nativeGetResources): Bugfix: utf_new
+       should be utfname.
+
+2006-05-11 13:43  twisti
+
+       * src/vm/jit/mips/codegen.c: Changed mcodeptr from u4* to u1*.
+       * src/vm/jit/mips/codegen.h: Likewise.
+
+2006-05-11 13:09  twisti
+
+       * src/vm/jit/mips/asmpart.S (asm_call_jit_compiler): Use new
+       jit_asm_compile method.
+
+2006-05-11 12:48  edwin
+
+       * src/threads/native/threads.c (monitorExit): Added an assert to
+       check that no existing waiter is overwritten by the suspicious
+       assignment.
+
+2006-05-11 12:36  edwin
+
+       * src/lib/vm/reference/java/lang/VMClassLoader.java
+       (getBootPackages): Merged patch to VMClassLoader.java of the
+       reference implementation. getBootPackages now works in the
+       presence of endorsed jars.
+
+2006-05-11 12:18  twisti
+
+       * src/native/jni.c (DeleteGlobalRef): Bugfix: handle the removal of
+       the first entry in the chain properly.
+
+2006-05-11 09:18  twisti
+
+       * src/vm/hashtable.c (threads/native/threads.h): Added.
+       (hashtable_create): Initialize lock object.
+       (hashtable_resize): New function.
+       (hashtable_free): Likewise.
+       * src/vm/hashtable.h (hashtable): Added header pointer.
+       (hashtable_resize): Added.
+       (hashtable_free): Likewise.
+       
+       * src/vm/vm.c (vm_create): Call jni_init before threads_init.
+       
+       * src/vm/utf8.c (lock_hashtable_utf): Removed.
+       (utf8_init): Allocate hashtable on heap.
+       (utf_new): Use new hashtable stuff.
+       
+       * src/native/native.c (native_init): Use new hashtable stuff.
+       (native_hashtable_library_add): Likewise.
+       
+       * src/native/jni.c (jni_init): Removed Java IdentityHashMap stuff and
+       create a hashtable.
+       (NewGlobalRef): Implemented with native hashtable.
+       (DeleteGlobalRef): Likewise.
+       
+       * src/native/jni.h (hashtable_global_ref_entry): Added.
+       
+       * src/vm/string.c (literalstring_u2): Removed check for
+       class_java_lang_String, we have an assert there.
+
+2006-05-10 16:14  twisti
+
+       * src/vm/jit/alpha/codegen.c: Changed mcodeptr from u4* to u1*.
+       * src/vm/jit/alpha/codegen.h: Likewise.
+
+2006-05-10 15:51  twisti
+
+       * src/vm/jit/codegen-common.h (codegendata): Use an u1* mcodeptr for
+       all architectures. This is necessary for the interpreter.
+       * src/vm/jit/codegen-common.c (codegen_setup): Removed #ifdef.
+       (codegen_increase): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c: Changed mcodeptr from u4* to u1*.
+       * src/vm/jit/powerpc/codegen.h: Likewise.
+
+2006-05-10 15:09  edwin
+
+       * src/vm/jit/inline/inline.c (inline_write_exception_handlers):
+       Correct cast for abused instruction->target.
+
+2006-05-10 13:12  twisti
 
-       * src/vm/jit/: parse.c, x86_64/asmpart.S, x86_64/codegen.c: Lazy
-         checkcast and instanceof.
+       * src/vm/jit/alpha/asmpart.S (asm_call_jit_compiler): Use new
+       jit_asm_compile method.
 
-2005-04-11 17:48  twisti
+2006-05-08 11:09  twisti
 
-       * src/vm/jit/stack.c: Lazy instanceof.
+       * configure.ac (AC_CONFIG_FILES): Added src/scripts/keytool.
+       * src/scripts/Makefile.am (bin_SCRIPTS): Added keytool.
+       * src/scripts/.cvsignore: Likewise.
+       * src/scripts/keytool.in: New file.
 
-2005-04-11 14:50  twisti
+2006-05-08 11:05  twisti
 
-       * tests/codepatching/: getfieldD.java, getfieldF.java,
-         getfieldI.java, getfieldJ.java, getfieldL.java, getstaticD.java,
-         getstaticF.java, getstaticI.java, getstaticJ.java,
-         getstaticL.java, invokespecial.java, putfieldD.java,
-         putfieldF.java, putfieldI.java, putfieldJ.java, putfieldL.java,
-         putfieldconstIF.java, putfieldconstJDL.java, putstaticD.java,
-         putstaticF.java, putstaticI.java, putstaticJ.java,
-         putstaticL.java, test.java: Check all code patching
-         possibilities.
+       * src/vm/jit/powerpc/asmpart.S (asm_vm_call_method): Handle argument
+       passing properly for SysV ABIs. Darwin is left to do.
 
-2005-04-11 12:50  twisti
+2006-05-08 11:03  twisti
 
-       * src/vm/builtin.c: ifdef assembler functions in builtin table.
+       * tests/regression/native/testarguments.java: Added new test.
+       * tests/regression/native/testarguments.c: Likewise.
+       * tests/regression/native/testarguments.output: Likewise.
 
-2005-04-11 12:49  twisti
+2006-05-06 18:29  motse
 
-       * src/vm/jit/parse.c: Old loading code bug fixing.
+       * src/vm/vm.c (vm_create): make agentlib/agentpath work
+       * src/cacao/cacao.c (main): changes for jvmti/jdwp startup due to
+       removal of jdwp process
+       * src/native/jni.c (JNI_CreateJavaVM): change order vm_create and
+       initialization of _Jv_jvm due to jvmti agent support.
+       * src/native/vm/VMVirtualMachine.c: change name of jvmtienv and
+       bugfixes of Samuel Vinson
+       * src/native/include/Makefile.am: add VMMethod.h
+       * src/native/jvmti/Makefile.am: removal of cacaodbgserver
+       * src/native/jvmti/jvmti.c: remove jdwp process and convert to thread
+       * src/native/jvmti/cacaodbg.h: idem
+       * src/native/jvmti/jvmti.h: idem
+       * src/native/jvmti/dbg.h: idem
+       * src/native/jvmti/cacaodbg.c: idem
+       * src/native/jvmti/dbg.c: idem
+       * src/native/jvmti/cacaodbgserver.c: change to a autonomous program
+       and removal of jdwp thread.
+       * src/native/jvmti/VMjdwp.c (VMInit): different invocation due to
+       removal of jdwp thread
+       * src/native/jvmti/VMjdwp.h: export jvmti environment and event
+       callbacks.
+       * src/native/vm/VMMethod.c: initial/dummy implementation of VMMetod
+       native method
+
+2006-05-06 14:13  edwin
+
+       * src/native/vm/VMRuntime.c
+       (Java_java_lang_VMRuntime_mapLibraryName): Use new utf_ functions.
+       (Changes): Added my name.
+       (vim boilerplate): Added.
+
+2006-05-06 10:10  edwin
+
+       * src/native/vm/VMClassLoader.c
+       (Java_java_lang_VMClassLoader_nativeGetResources): Really create a
+       new utf string to search for if the trailing .class is stripped.
+
+2006-05-06 00:16  edwin
+
+       * src/vm/classcache.c (classcache_merge_class_entries):
+       Use utf_cat_classname.
+       (classcache_store): Likewise.
+       (classcache_store_defined): Likewise.
+
+2006-05-06 00:11  edwin
+
+       * src/native/vm/VMClassLoader.c
+       (Java_java_lang_VMClassLoader_nativeGetResources): Fixed and cleaned
+       up. Skip leading '/'. Remove '.class' only at end. Free char buffer.
+       Use correct utf_ functions. Check for exceptions.
+       
+       * src/vm/zip.c (zip_find): Documented.
+
+2006-05-05 19:31  edwin
+
+       * src/vm/utf8.h: Moved #include "config.h" up front.
+
+2006-05-05 19:22  edwin
+
+       * src/toolbox/logging.c (Changes): Added my name.
+       (vim boilerplate): Added.
+
+2006-05-05 19:21  edwin
+
+       * src/toolbox/logging.c (log_message_utf): Use new utf_ functions.
+       (log_message_class_message_class): Likewise.
+       (log_message_method): Likewise.
+
+2006-05-05 19:13  edwin
+
+       * src/vm/builtin.c (builtin_throw_exception): Use new utf_ functions.
+       (builtin_trace_exception): Likewise.
+       (builtin_trace_args): Likewise.
+       (builtin_displaymethodstop): Likewise.
+
+2006-05-05 18:58  edwin
+
+       * src/vm/suck.c (suck_start): Use new utf_ functions.
+
+2006-05-05 18:49  edwin
+
+       * src/vm/utf8.h, src/vm/utf8.c: Fixed header.
+
+2006-05-05 18:14  edwin
+
+       * src/vm/loader.c (load_class_from_classbuffer): Use new
+       utf_ functions.
+
+2006-05-05 18:08  edwin
+
+       * src/vm/resolve.c (resolve_class_from_name): Use new utf_ functions.
+       (resolve_subtype_check): Likewise.
+       (resolve_field_verifier_checks): Likewise.
+       (resolve_method_verifier_checks): Likewise.
+
+2006-05-05 17:34  edwin
+
+       * src/vm/utf8.h, src/vm/utf8.c: The Big utf_* Renaming.
+       The purpose of this change is to give the utf_* functions names
+       that make clear what these functions _really_ have been doing
+       all the time. I'm sure most callers would be surprised if they
+       knew. All call sites should be reviewed!
+       (utf_display): Renamed to utf_display_printable_ascii.
+       (utf_display_classname): Renamed to
+       utf_display_printable_ascii_classname.
+       (utf_sprint): Renamed to utf_sprint_convert_to_latin1.
+       (utf_sprint_classname): Renamed to
+       utf_sprint_convert_to_latin1_classname.
+       (utf_strcat): Renamed to utf_strcat_convert_to_latin1.
+       (utf_strcat_classname): Renamed to
+       utf_strcat_convert_to_latin1_classname.
+       (utf_fprint): Renamed to utf_fprint_printable_ascii.
+       (utf_fprint_classname): Renamed to
+       utf_fprint_printable_ascii_classname.
+       
+       * src/vm/class.c, src/vm/suck.c, src/vm/loader.c, src/vm/builtin.c,
+       src/vm/descriptor.c, src/vm/resolve.c, src/vm/method.c,
+       src/vm/classcache.c, src/vm/jit/stack.c, src/vm/jit/verify/typeinfo.c,
+       src/vm/jit/allocator/lsra.c, src/vm/jit/intrp/disass.c,
+       src/vm/jit/stacktrace.c, src/vm/jit/codegen-common.c,
+       src/vm/exceptions.c, src/vm/field.c, src/cacao/cacao.c,
+       src/native/tools/gennativetable.c, src/native/vm/VMClassLoader.c,
+       src/native/vm/VMRuntime.c, src/native/native.c, src/toolbox/logging.c,
+       src/threads/green/threads.c, src/threads/native/threads.c,
+       src/cacaoh/headers.c: The Big utf_ Renaming. All call sites of the
+       renamed functions should be reviewed! Calls outside debugging code
+       are probably incorrect and should use one of the new utf_ functions
+       that copies byte-for-byte.
+
+2006-05-05 17:09  edwin
+
+       * src/vm/exceptions.c (new_exception): Documented.
+       (new_exception_message): Documented. Use new_exception_javastring.
+       (new_exception_throwable): Documented.
+       (new_exception_utfmessage): Documented. Use new_exception_javastring.
+       (new_exception_javastring): Documented.
+       (new_exception_int): Documented.
+       (new_classformaterror): Documented. Use new byte-for-byte UTF-8
+       functions.
+       (exceptions_throw_classformaterror): Documented.
+       (new_classnotfoundexception): Documented. Check return value of
+       javastring_new.
+       (new_noclassdeffounderror): Documented. Check return value of
+       javastring_new.
+       (new_internalerror): Documented.
+       (exceptions_new_linkageerror): Documented. Use new byte-for-byte UTF-8
+       functions.
+       (exceptions_new_nosuchmethoderror): Documented. Use new byte-for-byte
+       UTF-8
+       functions.
+       (exceptions_throw_nosuchmethoderror): Documented.
+       (new_unsupportedclassversionerror): Documented. Use new byte-for-byte
+       UTF-8
+       functions.
+       (new_verifyerror): Likewise.
+       (exceptions_throw_verifyerror_for_stack): Likewise.
+       (exceptions_handle_exception): Documented.
+
+2006-05-05 16:51  edwin
+
+       * src/vm/utf8.c, src/vm/utf8.h (utf_copy): New function.
+       (utf_cat): New function.
+       (utf_copy_classname): New function.
+       (utf_cat_classname): New function.
+       These new functions copy the UTF-8 content byte-for-byte and thus
+       do not lead to losses by conversion like the utf_strcpy, etc.
+       functions.
+
+2006-05-05 15:26  edwin
+
+       * src/vm/string.c, src/vm/stringlocal.h, src/vm/utf8.c, src/vm/utf8.h
+       (Changes): Added my name.
+       (vim boilerplate): Added.
+
+2006-05-05 15:14  edwin
+
+       * src/vm/string.c, src/vm/stringlocal.h
+       (javastring_new_from_utf_buffer): New function.
+       (javastring_new_from_utf_string): New function.
+       
+       * src/vm/utf8.c (utf_get_number_of_u2s_for_buffer): New function.
+       (utf_get_number_of_u2s): Documented that this function may throw
+       exception.s.
+       
+       * src/vm/utf8.h (utf_get_number_of_u2s_for_buffer): New function.
+
+2006-05-05 14:36  edwin
+
+       * src/vm/string.c, src/vm/stringlocal.h (java_string_new_char):
+       Renamed to `java_string_new_from_ascii` to make more clear what this
+       function does. It is wrong to use this function to create a
+       java.lang.String from a buffer of UTF-8 characters!
+       
+       * src/vm/finalizer.c (finalizer_start_thread): Legitimate use.
+       * src/vm/jit/profile/profile.c (profile_start_thread): Likewise.
+       
+       * src/vm/exceptions.c
+       (exceptions_new_linkageerror): Definitely INCORRECT use.
+       (exceptions_new_nosuchmethoderror): Likewise.
+       * src/native/vm/VMRuntime.c
+       (Java_java_lang_VMRuntime_mapLibraryName): Likewise.
+       
+       * src/vm/exceptions.c (new_exception_message): Probably INCORRECT use.
+       * src/native/jni.c (DefineClass): Likewise.
+       (ThrowNew): Likewise.
+       * src/native/vm/VMClassLoader.c
+       (Java_java_lang_VMClassLoader_nativeGetResources): Likewise.
+       
+       * src/vm/properties.c (properties_system_add): Needs review.
+       * src/cacao/cacao.c (getmainclassnamefromjar): Likewise.
+       * src/native/jvmti/cacaodbg.c (setup_jdwp_thread): Likewise.
+       * src/native/jvmti/jvmti.c (CreateRawMonitor, GetSystemProperty)
+       (SetSystemProperty): Likewise.
+
+2006-05-05 13:56  edwin
+
+       * src/vm/utf8.c, src/vm/utf8.h (utf_bytes): New function.
+       Use this function to query the number of octets of a utf string.
+       This function will become the correct replacement for the old
+       utf_strlen in most places. The calling code will have to be
+       reviewed for that, however, and it will also require fixing
+       utf_strcat, utf_sprint, and so on, to do the right thing.
+
+2006-05-05 13:48  edwin
+
+       * src/vm/utf8.c, src/vm/utf8.h (utf_strlen): Renamed to
+       `utf_get_number_of_u2s` in order to reflect what this function
+       _really_ does. A long name was chosen intentionally to make it obvious
+       that this is _not_ the function to use as the normal strlen. Most
+       current uses of this function are invalid, as it must only be used
+       when the utf string will be **converted to UTF-16**.
+       
+       * src/vm/suck.c (suck_start): Renamed utf_strlen. RECONSIDER USE!
+       * src/vm/loader.c (load_class_from_classbuffer): Likewise.
+       * src/vm/builtin.c (various functions): Likewise.
+       * src/vm/resolve.c (various functions): Likewise.
+       * src/vm/exceptions.c (various functions): Likewise.
+       * src/native/vm/VMClassLoader.c
+       (Java_java_lang_VMClassLoader_nativeGetResources): Likewise.
+       * src/native/vm/VMRuntime.c
+       (Java_java_lang_VMRuntime_mapLibraryName): Likewise.
+       * src/native/native.c (native_resolve_function): Likewise.
+       * src/toolbox/logging.c (various functions): Likewise.
+       * src/cacaoh/headers.c (various functions): Likewise.
+       
+       * src/vm/string.c (javastring_new): Legitimate use.
+       (javastring_new_slash_to_dot): Likewise.
+       (literalstring_new) Likewise.
+
+2006-05-03 23:04  edwin
+
+       * src/threads/native/threads.c (wakeWaiters): Renamed
+       to threads_wake_waiters. Documented.
+
+2006-05-03 22:58  edwin
+
+       * src/threads/native/threads.c (handleWaiter): Renamed arguments.
+       Commented.
+       (monitorEnter): Documented.
+       (notifyOneOrAll): Cleaned up.
+
+2006-05-03 22:46  edwin
+
+       * src/threads/native/threads.c (setPriority): Renamed to
+       threads_set_thread_priority.
+       (removeFromWaiters): Renamed to threads_remove_waiter.
+       (timespec_less): Renamed to threads_timespec_earlier.
+       (timeIsEarlier): Renamed to threads_current_time_is_earlier_than.
+       (waitWithTimeout): Renamed to threads_wait_with_timeout. Removed
+       unused
+       argument `lr`.
+       (thread_sleep): There is no need to create a lock record for
+       calling threads_wait_with_timeout, as that does not use the
+       lock record anyway (formerly waitWithTimeout).
+       (various function): Lots of documentation and cleanup.
+
+2006-05-02 16:16  twisti
+
+       * src/vm/jit/stack.c (stack_analyse): Check for val.a == NULL on
+       SUPPORT_CONST_STORE_ZERO_ONLY architectures for ICMD_PUTSTATIC and
+       ICMD_PUTFIELD.
+
+2006-05-01 23:14  edwin
+
+       * src/threads/native/threads.c: Cleanup and documentation.
+
+2006-05-01 21:40  edwin
+
+       * src/threads/native/threads.h (threads_sem_init): New function.
+       (threads_sem_post): New function.
+       
+       * src/threads/native/threads.c (threads_sem_init): New function.
+       (threads_sem_wait): Added assertion.
+       (threads_sem_post): New function.
+       (various function): Use threads_sem_init and threads_sem_post.
+       
+       * src/native/jvmti/cacaodbg.c (getworkingdatalock): Use
+       threads_sem_post.
+       (cacaodbgfork): Use threads_sem_init.
+       
+       * src/native/jvmti/cacaodbgserver.c (contchild, waitloop).
+       Use threads_sem_post.
+
+2006-05-01 12:40  edwin
+
+       * src/threads/native/threads.c (threads_sem_wait): New function.
+       This function performs a non-interruptible sem_wait. This fixes
+       segfaults and deadlocks that resulted from sem_wait calls returning
+       prematurely.
+       (cast_stopworld): Use threads_sem_wait.
+       (threads_startup_thread): Likewise.
+       (threads_start_thread): Likewise.
+       (queueOnLockRecord): Likewise.
+       
+       * src/threads/native/threads.h (threads_sem_wait): New function.
+       
+       * src/native/jvmti/cacaodbg.c (msgqsendevent): Use threads_sem_wait
+       instead of sem_wait.
+       
+       * src/native/jvmti/cacaodbgserver.c (contchild, waitloop): Use
+       threads_sem_wait instead of sem_wait.
+
+2006-04-30 17:18  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Added src/scripts/jarsigner.
+       * src/scripts/Makefile.am (bin_SCRIPTS): Added jarsigner.
+       * src/scripts/.cvsignore: Likewise.
+       * src/scripts/jarsigner.in: New file.
+
+2006-04-30 16:17  edwin
+
+       * src/vm/resolve.c (resolve_method_verifier_checks)
+       (constrain_unresolved_method): Use ICMD_ACONST_CLASSREF_OR_CLASSINFO.
+       
+       * src/vm/jit/powerpc/codegen.c, src/vm/jit/alpha/codegen.c,
+       src/vm/jit/mips/codegen.c, src/vm/jit/i386/codegen.c,
+       src/vm/jit/intrp/codegen.c, src/vm/jit/x86_64/codegen.c
+       (codegen): Changes for new ACONST format.
+       
+       * src/vm/jit/stack.c (stack_analyse): Changes for new ACONST format.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Use the new
+       macros.
+       (verify_builtin, verify_multianewarray, verify_basic_block): Changes
+       for
+       new ACONST format.
+       
+       * src/vm/jit/verify/typeinfo.h (TYPEINFO_INIT_JAVA_LANG_CLASS): Take
+       a classref_or_classinfo as argument.
+       
+       * src/vm/jit/verify/typeinfo.c (typeinfo_init_class): Typo fixed.
+       (typeinfo_print): Changes for new ACONST format.
+       
+       * src/vm/jit/inline/inline.c (inline_write_exception_handlers):
+       Changes for new ACONST format.
+       
+       * src/vm/jit/parse.c (parse): Changes for new ACONST format.
+       
+       * src/vm/jit/parse.h (LOADCONST_A_CLASS): Removed.
+       (LOADCONST_A_BUILTIN): Changes for new ACONST format.
+       
+       * src/vm/jit/jit.h (INSTRUCTION_IS_RESOLVED,
+       INSTRUCTION_IS_UNRESOLVED):
+       Only check least significant bit of target (provisory flag).
+       (ICMD_ACONST_IS_CLASS, ICMD_ACONST_CLASSREF_OR_CLASSINFO)
+       (ICMD_ACONST_RESOLVED_CLASSINFO, ICMD_ACONST_UNRESOLVED_CLASSREF):
+       New macros.
+
+2006-04-30 15:58  edwin
+
+       * src/vm/jit/loop/tracing.c (tracing): Adapted to new format of
+       INVOKE
+       instructions.
+       * src/vm/jit/allocator/lsra.c (lsra_scan_registers_canditates)
+       (_test_lifetimes): Likewise.
+
+2006-04-28 12:25  edwin
+
+       * src/vm/jit/parse.c (parse): Added a comment.
+
+2006-04-28 12:24  twisti
+
+       * src/vm/jit/stack.c (stack_analyse): We need to split AASTORECONST
+       and PUT{STATIC,FIELD}CONST as they can store different values. I hope
+       the checks are correct now (until we get our new instruction
+       format). Edwin: Hint! Hint! Hint!
+       (stack_show_icmd): Again a smaller change.
+
+2006-04-28 11:50  twisti
+
+       * src/vm/jit/stack.c (stack_analyse): Check for
+       {AASTORE,PUTSTATIC,PUTFIELD}CONST if the instruction is resolved. We
+       don't have a patcher for that case.
+       (stack_show_icmd): Smaller change.
+
+2006-04-28 11:37  twisti
+
+       * tests/regression/codepatching/test.java: Added new test.
+       * tests/regression/codepatching/Makefile.am: Files updated.
+       
+       * tests/regression/codepatching/putfieldconstIF.java,
+       tests/regression/codepatching/putfieldconstJDL.java: Removed.
+       
+       * tests/regression/codepatching/putstaticconstJ.java,
+       tests/regression/codepatching/putstaticconstL.java,
+       tests/regression/codepatching/putfieldconstD.java,
+       tests/regression/codepatching/putfieldconstF.java,
+       tests/regression/codepatching/putstaticconstC.java,
+       tests/regression/codepatching/putfieldconstJ.java,
+       tests/regression/codepatching/putfieldconstL.java,
+       tests/regression/codepatching/putstaticconstI.java,
+       tests/regression/codepatching/putfieldconstC.java,
+       tests/regression/codepatching/putstaticconstD.java,
+       tests/regression/codepatching/putfieldconstI.java,
+       tests/regression/codepatching/putstaticconstF.java: New file.
+
+2006-04-28 11:24  edwin
+
+       * src/vm/resolve.c (resolve_method_lazy): Turn INVOKEVIRTUAL into
+       INVOKESPECIAL for monomorphic calls.
+
+2006-04-28 00:46  edwin
+
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_vm_call_method_int): Fix
+       build
+       errors. TWISTI, please review these changes.
+
+2006-04-28 00:31  edwin
+
+       * regression/codepatching/test.java: Added test for AASTORECONST
+       with unresolved class constant. Currently exposes a bug when
+       test.java is
+       compiled with -target 1.5.
+       
+       * regression/codepatching/aastoreconstClass.java: New file.
+
+2006-04-27 23:03  twisti
+
+       * src/vm/jit/stacktrace.h (STACKFRAMEINFO): Added parenthesis.
+       * src/vm/global.h (java_objectheader): Changed type of monitorPtr to
+       monitorLockRecord.
+       
+       * src/vm/vm.h (vm_arg): Added union.
+       * src/vm/vm.c (vm_vmargs_from_valist): Use union of vm_arg's data.
+       * src/native/jni.c (_Jv_jni_vmargs_from_objectarray): Likewise.
+       
+       * src/threads/native/threads.h (nativethread): Changed type of
+       _stackframeinfo to stackframeinfo*.
+       * src/threads/native/threads.c (monitorEnter): Cast compare_and_swap
+       return value correctly.
+
+2006-04-27 12:33  twisti
+
+       * src/vm/jit/x86_64/emit.c: Changed x86_64 function prefix to
+       emit. And some other stuff too.
+       * src/vm/jit/x86_64/md-emit.h: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.h: Likewise.
+
+2006-04-27 11:05  twisti
+
+       * src/native/vm/VMSystemProperties.c (preInit): Append "/jre" to
+       java.home property, as all JDKs and JREs do that. Fixed a problem with
+       jonas testsuite. General cleanup.
+
+2006-04-27 10:32  twisti
+
+       * src/vm/jit/powerpc/darwin/md-asm.h (jit_asm_compile): Renamed from
+       jit_compile.
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+
+2006-04-26 15:44  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_getClassContext): Reverted the
+       hack that removes the first entry if this function is called by
+       java.lang.SecurityManager. This (undocumented) hack probably was done
+       to solve a problem that no longer exists.
+
+2006-04-26 14:09  twisti
+
+       * src/vm/jit/i386/Makefile.am (libarch_la_SOURCES): Removed
+       emitfuncs.c, emitfuncs.h and added emit.c, md-emit.h.
+       
+       * src/vm/jit/i386/emit.c (emit_load_s1): New method.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_store): Likewise.
+       (emit_copy): Likewise.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Use emit_load/store functions
+       instead of macros.
+       
+       * src/vm/jit/i386/codegen.h (M_LNGMOVE): Added.
+       (M_LNGMEMMOVE): Removed.
+       (var_to_reg_int): Removed.
+       (var_to_reg_lng): Likewise.
+       (var_to_reg_flt): Likewise.
+       (store_reg_to_var_int): Likewise.
+       (store_reg_to_var_lng): Likewise.
+       (store_reg_to_var_flt): Likewise.
+       (M_FLD): Added.
+       (M_DLD): Likewise.
+       (M_FLD32): Likewise.
+       (M_DLD32): Likewise.
+       (M_FST): Likewise.
+       (M_DST): Likewise.
+
+2006-04-26 11:02  twisti
+
+       * src/vm/jit/i386/md-emit.h: Moved from src/vm/jit/i386/emitfuncs.h.
+       * src/vm/jit/i386/emit.c: Moved from src/vm/jit/i386/emitfuncs.c.
+
+2006-04-26 09:02  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Added src/scripts/rmic.
+       * src/scripts/Makefile.am (bin_SCRIPTS): Added rmic.
+       * src/scripts/java.in: Use ${1+"$@"} instead of $@.
+       * src/scripts/rmiregistry.in: Likewise.
+       * src/scripts/rmic.in: Updated to new rmic location.
+
+2006-04-26 08:57  twisti
+
+       * m4/ac_prog_javac.m4: Default to ecj.
+       * src/lib/Makefile.am: If JAVAC is ecj, use the -1.5 flag. This
+       produces much faster code regarding class$ (e.g. jonas startup time).
+
+2006-04-25 18:02  edwin
+
+       * src/vm/jit/disass-common.c (disass_printf): Avoid compiler warning.
+       
+       * src/vm/jit/profile/profile.c (profile_printstats): Avoid compiler
+       warnings.
+
+2006-04-25 17:57  edwin
+
+       * src/vm/jit/i386/disass.c (disassinstr): Avoid compiler warning.
+
+2006-04-25 17:53  edwin
+
+       * src/vm/jit/stack.c (stack_show_icmd): Removed unused variable `um`.
+
+2006-04-25 17:48  edwin
+
+       * src/vm/loader.c (load_method): Simplify initialization of
+       methodinfo by
+       clearing it explicitely in load_class_from_classbuffer, instead of
+       zeroing
+       individual fields here.
+       (load_class_from_classbuffer): MZERO methodinfo array.
+       (load_newly_created_array): Initialize `params` to NULL for the clone
+       method.
+
+2006-04-25 17:45  edwin
+
+       * src/mm/memory.h (MZERO): Added macro MZERO for convenient memory
+       cleaning.
+
+2006-04-25 17:42  edwin
+
+       * src/native/vm/VMSystemProperties.c
+       (Java_gnu_classpath_VMSystemProperties_preInit): Use strcpy instead of
+       strcat, since there is nothing to concat to and we may want to lift
+       the
+       assertion that MSET clears memory.
+
+2006-04-25 15:46  edwin
+
+       * src/vm/jit/i386/md.c (md_get_method_patch_address): Avoid compiler
+       warning.
+
+2006-04-25 15:31  edwin
+
+       * src/cacao/cacao.c (main): Avoid warning about unused label.
+       Cleaned up whitespace.
+
+2006-04-25 15:26  edwin
+
+       * src/vm/exceptions.c (exceptions_throw_verifyerror_for_stack): Avoid
+       compiler warning.
+
+2006-04-25 12:35  edwin
+
+       * src/vm/jit/verify/typecheck.c (typecheckverbose): Renamed to
+       opt_typecheckverbose.
+       * src/vm/jit/verify/typeinfo.h: Likewise.
+       
+       * src/vm/vm.c (OPT_VERBOSETC): Only define if both ENABLE_VERIFIER
+       and TYPECHECK_VERBOSE are defined.
+       (typecheckverbose): Renamed to opt_typecheckverbose.
+
+2006-04-25 12:25  edwin
+
+       * src/vm/options.h, src/vm/options.c (getloadingtime): Renamed to
+       opt_getloadingtime. Only defined for ENABLE_STATISTICS.
+       (getcompilingtime): Renamed to opt_getcompilingtime.
+       Only defined for ENABLE_STATISTICS.
+       
+       * src/vm/loader.c (getloadingtime, getcompilingtime): Renamed.
+       * src/vm/jit/jit.c: Likewise.
+       * src/vm/linker.c: Likewise.
+       * src/native/vm/VMClassLoader.c: Likewise.
+       
+       * src/vm/vm.c (OPT_TIME): Only defined for ENABLE_STATISTICS.
+       
+       * configure.ac (--enable-statistics): Now statistics are disabled by
+       default.
+
+2006-04-25 12:00  edwin
+
+       * src/vm/options.h (opt_verify): Only declare for ENABLE_VERIFIER.
+       (opt_liberalutf): Removed.
+       
+       * src/vm/options.c (opt_verify): Only declare for ENABLE_VERIFIER.
+       (opt_liberalutf): Removed.
+       
+       * src/vm/jit/inline/inline.c (test_inlining): Only verify if
+       ENABLE_VERIFIER.
+       
+       * src/vm/jit/parse.c (parse): Only check opt_verify if
+       ENABLE_VERIFIER.
+       
+       * src/vm/global.h (ENABLE_VERIFIER): Removed. This is now defined in
+       config.h.
+       
+       * src/vm/vm.c (OPT_NOVERIFY): Only define this option if
+       ENABLE_VERIFIER.
+       (OPT_LIBERALUTF): Removed.
+       
+       * configure.ac (--disable-verifier): Added configure option.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_getStack): Gather a wider range
+       for the cycle count statistics.
+
+2006-04-25 10:36  edwin
+
+       * src/vm/cycles-stats.h (CYCLES_STATS_COUNT_OVER): Added.
+
+2006-04-24 18:28  edwin
+
+       * src/vm/cycles-stats.c: Cleaned up whitespace.
+
+2006-04-24 18:22  edwin
+
+       * src/vm/cycles-stats.c (cycles_stats_print_percentile): Also perform
+       measurement overhead compensation for cumulated cycle counts.
+
+2006-04-24 17:16  edwin
+
+       * src/vm/global.h (ACC_CLASS_REFLECT_MASK): Added.
+       (ACC_CLASS_HAS_POINTERS): Likewise.
+       (vim boilerplate): Added.
+       
+       * src/vm/loader.c (load_field): Set ACC_CLASS_HAS_POINTERS flag.
+       
+       * src/vm/linker.c (link_class_intern): OR ACC_CLASS_HAS_POINTERS flag.
+       
+       * src/vm/builtin.c (builtin_new): Use ACC_CLASS_HAS_POINTERS to
+       determine
+       which kind of memory to allocate.
+       
+       * src/native/vm/VMClass.c (Java_java_lang_VMClass_getModifiers): Mask
+       reported access flags with ACC_CLASS_REFLECT_MASK.
+
+2006-04-24 16:24  twisti
+
+       * src/vm/jit/x86_64/emit.c (x86_64_emit_ifcc): Changed signature of
+       codegen_addreference.
+       (x86_64_emit_if_lcc): Likewise.
+       (x86_64_emit_if_icmpcc): Likewise.
+       (x86_64_emit_if_lcmpcc): Likewise.
+
+2006-04-24 16:10  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Don't initialize mcode
+       variables. New dseg_addlinenumber signature fix.
+       (createnativestub): Don't initialize mcode variables.
+
+2006-04-24 16:06  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_increase): Changed signature.
+       (codegen_addreference): Likewise.
+       (codegen_add_exception_ref): Likewise.
+       (codegen_add_arithmeticexception_ref): Likewise.
+       (codegen_add_arrayindexoutofboundsexception_ref): Likewise.
+       (codegen_add_arraystoreexception_ref): Likewise.
+       (codegen_add_classcastexception_ref): Likewise.
+       (codegen_add_nullpointerexception_ref): Likewise.
+       (codegen_add_fillinstacktrace_ref): Likewise.
+       (codegen_addpatchref): Likewise.
+       (codegen_finish): Likewise.
+       * src/vm/jit/codegen-common.h: Likewise.
+       
+       * src/vm/jit/dseg.c (dseg_increase): Made static.
+       (dseg_adds4): Use dseg_increase.
+       (dseg_adds8): Likewise.
+       (dseg_addfloat): Likewise.
+       (dseg_adddouble): Likewise.
+       (dseg_adds4_increase): Removed.
+       (dseg_adds8_increase): Likewise.
+       (dseg_addfloat_increase): Likewise.
+       (dseg_adddouble_increase): Likewise.
+       (dseg_addlinenumber): Changed signature.
+       (dseg_addlinenumber_inline_start): Likewise.
+       (dseg_adddata): Likewise.
+       * src/vm/jit/dseg.h: Likewise.
+       
+       * src/vm/jit/alpha/emit.c (vm/jit/alpha/emit.h): Removed.
+       (vm/jit/emit.h): Added.
+       (emit_lconst): New method.
+       * src/vm/jit/alpha/Makefile.am (libarch_la_SOURCES): Added emit.c
+       
+       * src/vm/jit/alpha/codegen.c (vm/jit/emit.h): Added.
+       (codegen): Use cd->mcodeptr instead of mcodeptr, and emit_load/store
+       functions instead of macros. Saves over 50kB object code size. Use new
+       signatures of codegen-common and dseg functions.
+       * src/vm/jit/alpha/codegen.h (var_to_reg_int): Removed.
+       (var_to_reg_flt): Likewise.
+       (store_reg_to_var_int): Likewise.
+       (store_reg_to_var_flt): Likewise.
+       
+       * src/vm/jit/i386/codegen.c: Use new signatures of codegen-common and
+       dseg functions.
+       * src/vm/jit/i386/codegen.h: Likewise.
+       * src/vm/jit/intrp/codegen.c: Likewise.
+       * src/vm/jit/intrp/codegen.h: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/mips/codegen.h: Likewise.
+       * src/vm/jit/powerpc/codegen.c: Likewise.
+       * src/vm/jit/powerpc/codegen.h: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.h: Likewise.
+
+2006-04-24 15:43  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_create): Do not free dump
+       memory here,
+       this is now done in the parent functions. Also removed the copy to gc
+       memory.
+       (stacktrace_fillInStackTrace): Copy stacktrace to gc memory.
+       Free dump memory.
+       (stacktrace_getClassContext): Free dump memory.
+       (stacktrace_getCurrentClass): Likewise.
+       (stacktrace_getStack): Likewise.
+       (stacktrace_dump_trace): Likewise.
+
+2006-04-24 11:40  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_fillInStackTrace)
+       (stacktrace_getClassContext, stacktrace_getCurrentClass)
+       (stacktrace_getStack): Added cycle count statistics.
+       (stacktrace_print_cycles_stats): Added.
+       
+       * src/vm/jit/stacktrace.h (stacktrace_print_cycles_stats): Added.
+       
+       * src/vm/vm.c (vm_exit_handler): Call stacktrace_print_cycles_stats.
+
+2006-04-24 11:36  edwin
+
+       * src/vm/cycles-stats.h (CYCLES_STATS_END_WITH_OVERHEAD): Fix
+       arguments of
+       empty macro definition.
+
+2006-04-24 11:27  edwin
+
+       * src/vm/cycles-stats.h (CYCLES_STATS_DECLARE_AND_START)
+       (CYCLES_STATS_DECLARE_AND_START_WITH_OVERHEAD)
+       (CYCLES_STATS_END, CYCLES_STATS_END_WITH_OVERHEAD): Added convenience
+       macros.
+       
+       * src/vm/cycles-stats.c (cycles_stats_print): Fixed divide-by-zero.
+       Minor
+       output changes.
+
+2006-04-24 10:08  twisti
+
+       * src/vm/jit/mips/md.c (md_get_method_patch_address): Renamed from
+       md_assembler_get_patch_address.
+       * src/vm/jit/mips/asmpart.S (asm_call_jit_compiler): Renamed
+       md_assembler_get_patch_address to md_get_method_patch_address.
+
+2006-04-24 10:00  twisti
+
+       * src/vm/jit/powerpc/md.c (md_get_method_patch_address): New method.
+       * src/vm/jit/powerpc/asmpart.S (asm_call_jit_compiler): Use new
+       jit_asm_compile method. This fixes the ecj bugs seens with some mauve
+       tests and eclipse.
+
+2006-04-24 09:58  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Replaced those ugly
+       M_TINTMOVE macros. Use M_LLD macros where possible.
+       * src/vm/jit/powerpc/codegen.h (M_LNGMOVE): Check for equal registers.
+       (M_TINTMOVE): Removed.
+
+2006-04-24 00:19  edwin
+
+       * src/vm/jit/i386/asmpart.S (asm_get_cycle_count): Omit the
+       stackframe.
+       This saves a couple of cycles of measurement overhead.
+
+2006-04-23 23:03  twisti
+
+       * src/vm/jit/alpha/md.c (md_get_method_patch_address): Renamed from
+       md_assembler_get_patch_address.
+       * src/vm/jit/alpha/asmpart.S (asm_call_jit_compiler): Renamed
+       md_assembler_get_patch_address to md_get_method_patch_address.
+
+2006-04-23 19:18  edwin
+
+       * src/vm/cycles-stats.c (cycles_stats_print_percentile): Better
+       extrapolation.
+       * src/vm/cycles-stats.h (CYCLES_STATS_DECLARE, CYCLES_STATS_COUNT)
+       (CYCLES_STATS_PRINT, CYCLES_STATS_PRINT_OVERHEAD): Added total cycles
+       counter.
+
+2006-04-23 19:16  edwin
+
+       * src/vm/builtin.c (builtin_new): Renamed rt-timing identifier.
+       (builtin_newarray): Added rt-timing.
+       
+       * src/vm/rt-timing.h: Added rt-timing for builtin_newarray.
+       * src/vm/rt-timing.c: Likewise.
+
+2006-04-23 16:11  edwin
+
+       * src/vm/builtin.c (builtin_print_cycles_stats): Use
+       CYCLES_STATS_PRINT_OVERHEAD.
+       
+       * src/vm/cycles-stats.h (CYCLES_STATS_PRINT_OVERHEAD): Added.
+       
+       * src/vm/cycles-stats.c (cycles_stats_print_percentile): Added.
+       (cycles_stats_print): Added `overhead` argument and automatic
+       measurement overhead compensation.
+
+2006-04-23 15:39  edwin
+
+       * src/vm/builtin.c (builtin_new): Added rt-timing.
+       (builtin_print_cycles_stats): Removed unused variable.
+       (builtin_monitorenter): Removed rt-timing.
+       (builtin_monitorexit): Likewise.
+       
+       * src/vm/rt-timing.c: rt-timing for buitin_new.
+       * src/vm/rt-timing.h: Likewise.
+
+2006-04-23 15:31  edwin
+
+       * src/vm/cycles-stats.c (cycles_stats_get_cpu_MHz): Better error
+       handling.
+
+2006-04-23 15:24  edwin
+
+       * src/vm/builtin.c (builtin_new): Gather cycle count statistics.
+       (CYCLES_STATS_DECLARE): Moved declarations to beginning of file.
+       
+       * src/vm/cycles-stats.c (cycles_stats_get_cpu_MHz): Added function for
+       automatic CPU frequency detection via /proc/cpuinfo.
+       (cycles_stats_print): Calculate estimated CPU times.
+
+2006-04-22 09:35  edwin
+
+       * src/vm/cycles-stats.c (cycles_stats_print): Made count, floor, and
+       ceiling
+       of type u8. This should avoid overflow problems.
+       
+       * src/vm/cycles-stats.h (cycles_stats_print): Made count an u8.
+
+2006-04-21 21:36  edwin
+
+       * src/vm/cycles-stats.c: New file. Better cycle count statistics.
+       
+       * src/vm/cycles-stats.h (CYCLES_STATS_PRINT): This is now a wrapper
+       for
+       cycles_stats_print.
+       
+       * src/vm/Makefile.am (cycles-stats.c): Added to sources.
+
+2006-04-21 14:32  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_inline_fillStackTrace): Assert
+       that
+       there is an exception before dereferencing it.
+       (stacktrace_create): Document that this function may return NULL.
+       (stacktrace_getClassContext): Check return value of stacktrace_create.
+       (stacktrace_getCurrentClass): Likewise.
+       (stacktrace_getStack): Likewise. Document that this function may
+       return NULL.
+
+2006-04-21 13:08  edwin
+
+       * src/vm/jit/stacktrace.c (stacktrace_getClassContext): Document that
+       return
+       value may be NULL (in case of an exception).
+       
+       * src/native/vm/VMStackWalker.c
+       (Java_gnu_classpath_VMStackWalker_getCallingClass): Check return
+       value of
+       stacktrace_getClassContext.
+       (Java_gnu_classpath_VMStackWalker_getCallingClassLoader): Likewise.
+       
+       * src/native/vm/Field.c (cacao_get_field_address): Check return value
+       of
+       stacktrace_getClassContext.
+       
+       * src/native/vm/Method.c (Java_java_lang_reflect_Method_invokeNative):
+       Check return value of stacktrace_getClassContext.
+
+2006-04-21 11:07  twisti
+
+       * src/vm/jit/i386/md.c (md_get_method_patch_address): New method.
+       (md_icacheflush): Added.
+       (md_dcacheflush): Likewise.
+
+2006-04-21 10:54  twisti
+
+       * src/vm/jit/jit.c (jit_asm_compile): New method.
+       * src/vm/jit/jit.h (jit_asm_compile): Added.
+       (md_get_method_patch_address): Likewise.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_vm_call_method): Store
+       asm_call_jit_compiler on stack as for the other architectures.
+       (asm_call_jit_compiler): Use new jit_asm_compile.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Use REG_ITMP3 for calling
+       methods. This is required for asm_vm_call_method to work.
+       
+       * src/vm/jit/x86_64/md.c (md_get_method_patch_address): New method.
+       (md_icacheflush): Added.
+       (md_dcacheflush): Added.
+       * src/vm/jit/x86_64/md-asm.h (mptr): Defined.
+
+2006-04-21 10:45  twisti
+
+       * src/vm/jit/stacktrace.c (stacktrace_add_method_intern): Reformatted
+       comments.
+
+2006-04-21 00:00  edwin
+
+       * src/vm/linker.c (link_class_intern): Impose loading constraints on
+       the
+       more general types of the overwritten method, instead of on the over-
+       writing method. Don't impose loading constraints when "overwriting"
+       the
+       instance initializaton method <init>, as it is not called virtually.
+
+2006-04-20 22:28  edwin
+
+       * src/vm/classcache.c (classcache_add_constraint): Also constrain the
+       return type of the given method.
+
+2006-04-20 21:47  edwin
+
+       * src/vm/linker.c (linker_addinterface): Add loading constraints when
+       an
+       interface method is overwritten.
+       (link_class_intern): Check new return value of linker_addinterface.
+
+2006-04-20 20:40  edwin
+
+       * src/vm/linker.c (link_class_intern): Only record loading constraints
+       for ENABLE_VERIFIER.
+
+2006-04-20 20:38  edwin
+
+       * src/vm/classcache.c (classcache_add_constraints_for_params): Added.
+       (classcache_add_constraint): Only define for ENABLE_VERIFIER.
+       
+       * src/vm/classcache.h (classcache_add_constraints_for_params): Added.
+       (classcache_add_constraint): Only define for ENABLE_VERIFIER.
+       
+       * src/vm/linker.c (link_class_intern): When overwriting a method,
+       record loading constraints for the parameter types, as required
+       by the spec.
+
+2006-04-20 19:18  edwin
+
+       * src/mm/memory.c (Changes): Added my name.
+       (vim boilerplate): Added.
+
+2006-04-20 18:59  edwin
+
+       * src/mm/memory.c: Added comments and some cleanup.
+
+2006-04-20 18:04  edwin
+
+       * configure.ac (ENABLE_LOOP): Changed default to "no".
+       
+       * src/vm/options.h (opt_loops): Only define for ENABLE_LOOP.
+       
+       * src/vm/options.c (opt_loops): Only define for ENABLE_LOOP.
+       
+       * src/vm/vm.c (-oloop, -i): Only recognize these options if
+       enabled with ENABLE_LOOP/ENABLE_INLINING.
+       
+       * src/vm/jit/allocator/lsra.c (opt_loops): Only use for ENABLE_LOOP.
+
+2006-04-20 10:55  twisti
+
+       * src/vm/jit/x86_64/codegen.h (M_ALD32): Added.
+
+2006-04-20 10:42  twisti
+
+       * src/vm/jit/x86_64/md-abi.h (REG_METHODPTR): Added.
+
+2006-04-20 08:45  twisti
+
+       * src/lib/vm/reference/java/lang/VMClassLoader.java: Updated to GNU
+       Classpath version.
+
+2006-04-19 01:05  edwin
+
+       * src/vm/builtin.c (builtin_print_cycles_stats): Added.
+       (builtin_monitorenter): Gather cycle count statistics.
+       (builtin_monitorexit): Likewise.
+       
+       * src/vm/builtin.h (builtin_print_cycles_stats): Added.
+       
+       * src/vm/jit/i386/asmpart.S (asm_get_cycle_count): Added.
+       
+       * src/vm/jit/asmpart.h (asm_get_cycle_count): Added.
+       
+       * src/vm/vm.c (vm_exit_handler): Call builtin_print_cycles_stats.
+       
+       * src/vm/cycles-stats.h: New file.
+       
+       * src/vm/Makefile.am (CYCLES_STATS_SOURCE): Added.
+       
+       * src/cacaoh/headers.c (asm_get_cycle_count): Dummy implementation
+       added.
+       
+       * configure.ac (--enable-cycles-stats): Added configure option.
 
-2005-04-11 12:02  twisti
+2006-04-18 21:16  twisti
 
-       * src/cacaoh/headers.c: Changed asm_builtin_newarray signature.
+       * src/vm/jit/x86_64/emitfuncs.c: Moved to emit.c.
+       * src/vm/jit/x86_64/emitfuncs.h: Moved to md-emit.h
+       
+       * src/vm/jit/x86_64/codegen.c (vm/jit/x86_64/emitfuncs.h): Removed.
+       (vm/jit/x86_64/md-emit.h): Added.
+       
+       * src/vm/jit/x86_64/Makefile.am (libarch_la_SOURCES): Added emit.c and
+       md-emit.h, removed emitfuncs.c and emitfuncs.h.
 
-2005-04-11 12:00  twisti
+2006-04-18 20:36  twisti
 
-       * src/vm/jit/helper.c: Warning fixes (arghhh).
+       * src/vm/jit/jit.h (IS_ADR_TYPE): Changed to use ==.
+       (IS_INT_TYPE): Added.
+       (IS_LNG_TYPE): Likewise.
 
-2005-04-11 11:58  twisti
+2006-04-18 20:34  twisti
 
-       * src/vm/jit/x86_64/: asmpart.S, codegen.c, codegen.h, emitfuncs.c,
-         emitfuncs.h: Lazy loading changes (CHECKCAST and INSTANCEOF are
-         still missing).
+       * src/vm/jit/x86_64/codegen.c (vm/jit/emit.h): Added.
+       (codegen): Use emit_load/store functions instead of macors. Saves over
+       25kB object code size.
+       
+       * src/vm/jit/x86_64/codegen.h (ALIGNCODENOP): Added.
+       (var_to_reg_int): Removed.
+       (var_to_reg_flt): Likewise.
+       (store_reg_to_var_int): Likewise.
+       (store_reg_to_var_flt): Likewise.
+       (M_INEG, M_LNEG, M_INEG_MEMBASE, M_LNEG_MEMBASE): Added.
+       (M_CMOVEQ_MEMBASE, M_CMOVNE_MEMBASE, M_CMOVLT_MEMBASE)
+       (M_CMOVLE_MEMBASE, M_CMOVGE_MEMBASE, M_CMOVGT_MEMBASE): Likewise.
+       
+       * src/vm/jit/x86_64/emitfuncs.c (emit_load_s1): Added.
+       (emit_load_s2): Likewise.
+       (emit_load_s3): Likewise.
+       (emit_store): Likewise.
+       (emit_copy): Likewise.
+       (emit_cmovxx): Likewise.
+       
+       * src/vm/jit/x86_64/emitfuncs.h (emit_cmovxx): Added.
 
-2005-04-11 11:57  twisti
+2006-04-18 20:20  twisti
 
-       * src/vm/jit/tools/genoffsets.c: Generate some defines for code
-         patching functions.
+       * src/vm/jit/x86_64/md-abi.h (REG_IFTMP): Defined.
 
-2005-04-11 11:56  twisti
+2006-04-18 20:17  edwin
 
-       * src/vm/jit/: parse.c, reg.inc, stack.c: Lazy loading changes.
+       * src/vm/jit/stack.c (stack_show_icmd): Updated to use the correct
+       macros for
+       (un)resolved methods. Minor output format changes.
+       
+       * src/vm/field.c (field_print): Print the class name.
+
+2006-04-18 20:10  twisti
+
+       * src/vm/jit/alpha/Makefile.am (DISASS_SOURCES): Added.
+       * src/vm/jit/mips/Makefile.am: Likewise.
+
+2006-04-18 15:55  twisti
+
+       * configure.ac (intl): Check on NetBSD too.
+
+2006-04-18 15:40  twisti
+
+       * configure.ac: Fixed typos.
+
+2006-04-18 13:36  twisti
+
+       * src/vm/jit/mips/codegen.h (M_FLTMOVE): Removed.
+       (M_TFLTMOVE): Likewise.
+       (M_TFLD): Likewise.
+       (M_TFST): Likewise.
+       (M_CCFLTMOVE): Likewise.
+       (M_CCFLD): Likewise.
+       (M_CCFST): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen): Use float and double
+       explicitely.
+       * src/vm/jit/mips/emit.c: Likewise.
+
+2006-04-17 15:49  edwin
+
+       * src/vm/jit/intrp/codegen.c (intrp_codegen): Cast mcodeptr to u1*.
+       This should fix intrp on archs with u4* mcodeptr.
+
+2006-04-17 15:20  edwin
+
+       * src/vm/builtin.c (builtin_monitorenter, builtin_monitorexit): Added
+       rt-timing.
+       
+       * src/vm/rt-timing.c, src/vm/rt-timing.h: rt-timing for locks.
+
+2006-04-17 11:47  twisti
+
+       * src/vm/jit/codegen-common.h (codegendata): Define lastmcodeptr on
+       all architectures. I think it does not matter.
+
+2006-04-14 23:50  edwin
+
+       * src/vm/jit/codegen-common.h: Typo fix.
+
+2006-04-14 23:48  edwin
+
+       * src/vm/jit/parse.c (parse): Removed unused variable `mi`.
+
+2006-04-14 23:46  edwin
+
+       * src/vm/rt-timing.c: include stdlib.h to fix warning.
+
+2006-04-14 12:40  twisti
+
+       * src/vm/jit/mips/emit.c: New file.
+       * src/vm/jit/mips/Makefile.am (libarch_la_SOURCES): Added emit.c
+       
+       * src/vm/jit/mips/codegen.c (vm/jit/emit.h): Added.
+       (codegen): Use cd->mcodeptr instead of mcodeptr, and emit_load/store
+       functions instead of macors. Saves over 50kB object code size.
+       
+       * src/vm/jit/mips/codegen.h (var_to_reg_int): Removed.
+       (var_to_reg_flt): Likewise.
+       (store_reg_to_var_int): Likewise.
+       (store_reg_to_var_flt): Likewise.
+
+2006-04-14 11:57  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_setup): Fixed compiler
+       warnings, set lastmcodeptr.
+       (codegen_increase): Fixed compiler warnings.
+       (codegen_finish): Likewise.
+       (codegen_createnativestub): Likewise.
 
-2005-04-11 11:55  twisti
+2006-04-14 11:28  twisti
 
-       * src/vm/jit/parse.h: Added OP2AT which also sets the target.
+       * src/vm/jit/alpha/emit.h: Removed. There's now a common one in
+       src/vm/jit/.
 
-2005-04-11 11:48  twisti
+2006-04-14 11:20  twisti
 
-       * src/vm/jit/codegen.inc: Print memory address in dseg_display.
+       * src/vm/jit/emit.h: New file.
+       * src/vm/jit/Makefile.am (noinst_HEADERS): Added emit.h.
+       
+       * src/vm/jit/powerpc/emit.c: New file.
+       * src/vm/jit/powerpc/Makefile.am (libarch_la_SOURCES): Added emit.c.
+       
+       * src/vm/jit/powerpc/codegen.c (vm/jit/emit.h): Added.
+       (codegen): Use cd->mcodeptr instead of mcodeptr, and emit_load/store
+       functions instead of macors. Saves over 100kB object code size.
+       
+       * src/vm/jit/powerpc/codegen.h (var_to_reg_int): Removed.
+       (var_to_reg_lng): Likewise.
+       (var_to_reg_lng_low): Likewise.
+       (var_to_reg_lng_high): Likewise.
+       (var_to_reg_flt): Likewise.
+       (var_to_reg_dbl): Likewise.
+       (store_reg_to_var_int): Likewise.
+       (store_reg_to_var_lng): Likewise.
+       (store_reg_to_var_adr): Likewise.
+       (store_reg_to_var_flt): Likewise.
+       (store_reg_to_var_dbl): Likewise.
+       (M_LLD_INTERN): Added.
+       (M_LLD): Likewise.
+       (M_LST_INTERN): Likewise.
+       (M_LST): Likewise.
+
+2006-04-13 20:45  edwin
+
+       * src/vm/loader.c (load_class_from_classloader): Detailed rt-timing.
+       (load_class_bootstrap): Likewise.
+       
+       * src/vm/rt-timing.c: Added rt-timing for loading from classloaders.
+       * src/vm/rt-timing.h: Likewise.
+
+2006-04-13 18:21  edwin
+
+       * src/vm/loader.c (load_class_from_classbuffer): Separate timing for
+       descriptor_pool_new.
+       
+       * src/vm/rt-timing.c: Likewise.
+       
+       * src/vm/rt-timing.h: Likewise.
+
+2006-04-13 18:00  edwin
+
+       * src/vm/loader.c (load_class_from_classbuffer): Added real-time
+       loading time
+       measurements.
+       
+       * src/vm/rt-timing.c: Likewise.
+       * src/vm/rt-timing.h: Likewise.
+
+2006-04-13 17:23  edwin
+
+       * src/vm/rt-timing.c: Added timing of linker stages.
+       * src/vm/rt-timing.h: Likewise.
+       * src/vm/linker.c: Likewise.
+
+2006-04-13 16:58  edwin
+
+       * src/vm/rt-timing.h (RT_TIMING_TIME_DIFF): Added.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Use RT_TIMING_TIME_DIFF.
+       
+       * src/vm/linker.c (link_class): Use rt-timing for measuring link time.
+       
+       * src/cacaoh/Makefile.am (cacaoh_LDFLAGS): Link with librt for
+       ENABLE_RT_TIMING.
+
+2006-04-13 16:48  edwin
+
+       * src/vm/rt-timing.c (rt_timing_stat): Added field `totalindex`.
+       (rt_timing_stat_defs): Likewise.
+       (rt_timing_diff): Renamed to rt_timing_time_diff.
+       (rt_timing_print_time_stats): Use `totalindex` to calculate
+       percentage.
+       
+       * src/vm/rt-timing.h (RT_TIMING_LINK_TOTAL): Added.
+       (rt_timing_diff): Renamed to rt_timing_time_diff.
+
+2006-04-13 14:09  twisti
+
+       * src/vm/jit/alpha/emit.c: New file.
+       * src/vm/jit/alpha/emit.h: Likewise.
+
+2006-04-13 13:10  twisti
+
+       * src/vm/jit/codegen-common.h (codegendata): Changed mcodeend to
+       u1*. Define mcodeptr to u4* for non-i386/x86_64 architectures.
+
+2006-04-13 09:32  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Use argument registers
+       directly in exception stubs, instead of temporary ones. This reduces
+       code-size about 150kB for -all.
+
+2006-04-13 09:19  twisti
+
+       * src/vm/jit/x86_64/emitfuncs.c (x86_64_emit_ishift): Bugfixes found
+       by javver.
+       (x86_64_emit_lshift): Likewise.
+
+2006-04-12 22:20  edwin
+
+       * src/vm/rt-timing.c: Added file.
+       * src/vm/rt-timing.h: Likewise.
+       
+       * src/vm/jit/jit.c: Moved real-time timing stuff to rt-timing.[ch]
+       * src/vm/jit/jit.h: Likewise.
+       
+       * src/vm/vm.c (vm_exit_handler): Call rt_timing_print_time_stats.
+       
+       * src/vm/Makefile.am (rt-timing.c, rt-timing.h): Added.
+
+2006-04-12 22:16  edwin
+
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers): Fixed
+       compiler warning.
+
+2006-04-12 20:06  edwin
+
+       * src/vm/jit/parse.c (parse): New unresolved reference scheme: Data
+       structures
+       for unresolved fields/methods are only created if really needed.
+       Otherwise
+       a lazy resolving is done on-the-fly. This reduced compile time by
+       over 10% for
+       SpecJVM98 and eclipse.
+       
+       * src/vm/resolve.c (resolve_subtype_check): Added.
+       (resolve_lazy_subtype_checks): Likewise.
+       (resolve_and_check_subtype_set): Use resolve_subtype_check. Return
+       resolve_result_t instead of bool. Removed `checked` argument.
+       (resolve_class): Use resolve_subtype_check.
+       (resolve_field_verifier_checks): Added.
+       (resolve_field_lazy): Added.
+       (resolve_field): Use resolve_field_verifier_checks.
+       (resolve_method_invokespecial_lookup): Added.
+       (resolve_method_verifier_checks): Added.
+       (resolve_method_lazy): Added.
+       (resolve_method): Use resolve_method_invokespecial_lookup and
+       resolve_method_verifier_checks.
+       (constrain_unresolved_method): Adapted to new unresolved reference
+       scheme.
+       (constrain_unresolved_field): Likewise.
+       (unresolved_field_debug_dump): Likewise.
+       (unresolved_method_debug_dump): Likewise.
+       
+       * src/vm/jit/patcher.h (intrp_patcher_get_putstatic_clinit): Added.
+       
+       * src/vm/jit/intrp/intrp.h (vm_Cell2afi): Added.
+       (vm_afi2Cell): Likewise.
+       (printarg_afi): Added.
+       (vim boilerplate): Added.
+       (Changes): Added my name.
+       
+       * src/vm/jit/intrp/patcher.c (intrp_patcher_get_putstatic_clinit):
+       Added.
+       
+       * src/vm/jit/intrp/disass.c (printarg_afi): Added.
+       (Changes): Added my name.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/intrp/java.vmg (GETSTATIC_CELL, GETSTATIC_INT,
+       GETSTATIC_FLOAT)
+       (GETSTATIC_LONG, PUTSTATIC_CELL, PUTSTATIC_INT, PUTSTATIC_FLOAT)
+       (PUTSTATIC_LONG, GETFIELD_CELL, GETFIELD_INT, GETFIELD_FLOAT)
+       (GETFIELD_LONG, PUTFIELD_CELL, PUTFIELD_INT, PUTFIELD_FLOAT)
+       (PUTFIELD_LONG): Now take a fieldinfo instead of an unresolved_field.
+       (INVOKEVIRTUAL, INVOKESTATIC, INVOKESPECIAL, INVOKEINTERFACE): Now
+       take
+       a methodinfo instead of an unresolved_method.
+       (PATCHER_GETSTATIC_CLINIT_INT, PATCHER_GETSTATIC_CLINIT_FLOAT)
+       (PATCHER_GETSTATIC_CLINIT_LONG, PATCHER_GETSTATIC_CLINIT_CELL): Added.
+       (PATCHER_PUTSTATIC_CLINIT_INT, PATCHER_PUTSTATIC_CLINIT_FLOAT)
+       (PATCHER_PUTSTATIC_CLINIT_LONG, PATCHER_PUTSTATIC_CLINIT_CELL): Added.
+       
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers):
+       Use INSTRUCTION_GET_METHODDESC to get method descriptor.
+       
+       * src/vm/jit/stack.c (stack_analyse): Ported to new unresolved
+       reference
+       scheme.
+       (stack_show_icmd): Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Ported to new
+       unresolved
+       reference scheme.
+       (verify_basic_block): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       
+       * src/vm/jit/intrp/codegen.c (codegen): Ported to new unresolved
+       reference
+       scheme.
+       (Changes): Added my name.
+       
+       * src/vm/jit/intrp/codegen.h (vim boilerplate): Added.
+
+2006-04-12 18:07  edwin
+
+       * src/vm/resolve.h (resolve_result_t): Added.
+       (resolve_method_lazy): Added prototype.
+       (resolve_field_lazy): Added prototype.
+       (resolve_and_check_subtype_set): Removed prototype. This function is
+       becoming static.
+
+2006-04-12 17:51  edwin
+
+       * src/vm/class.c (class_showconstantpool): Use the new functions
+       method_methodref_print and field_fieldref_print.
+       
+       * src/vm/loader.c (load_constantpool): Use p.index in constant_FMIref.
+       (load_class_from_classbuffer): Likewise.
+       
+       * src/vm/jit/stack.c (stack_show_icmd): Use p.index in
+       constant_FMIref.
+       
+       * src/vm/jit/verify/typecheck.c (verify_invocation): Use p.index in
+       constant_FMIref.
+       
+       * src/vm/resolve.c (resolve_field, resolve_method,
+       constrain_unresolved_field)
+       (unresolved_field_debug_dump, unresolved_method_debug_dump):
+       Use p.index in constant_FMIref.
+       
+       * src/vm/method.c, src/vm/method.h (method_methodref_print): Added.
+       (method_methodref_println): Likewise.
+       
+       * src/vm/field.c, src/vm/field.h (field_fieldref_print): Added.
+       (field_fieldref_println): Likewise.
+       
+       * src/vm/references.h (constant_FMIref): Changed field `classref`
+       into a
+       union that is used for caching of already resolved fields/methods.
+       (IS_FMIREF_RESOLVED): Added.
+       (METHODREF_CLASSNAME): Added.
+       (FIELDREF_CLASSNAME): Added.
+       
+       * src/vm/jit/jit.h (INSTRUCTION_IS_RESOLVED): Added. This is a
+       preparation
+       for the lazy resolving rewrite.
+       (INSTRUCTION_IS_UNRESOLVED): Likewise.
+       (INSTRUCTION_GET_FIELDREF): Likewise.
+       (INSTRUCTION_GET_METHODREF): Likewise.
+       (INSTRUCTION_GET_FIELDDESC): Likewise.
+       (INSTRUCTION_GET_METHODDESC): Likewise.
+       (INSTRUCTION_UNRESOLVED_METHOD): Likewise.
+       (INSTRUCTION_UNRESOLVED_FIELD): Likewise.
+       (INSTRUCTION_RESOLVED_FMIREF): Likewise.
+       (INSTRUCTION_RESOLVED_FIELDINFO): Likewise.
+       (INSTRUCTION_RESOLVED_METHODINFO): Likewise.
+       
+       * src/vm/jit/intrp/disass.c (printarg_auf): Use METHODREF_CLASSNAME.
+
+2006-04-12 11:51  twisti
+
+       * src/vm/jit/alpha/codegen.c (codegen): Use directly argument
+       registers in exception stubs, instead of temporary ones. This reduces
+       code-size about 200kB for -all.
+
+2006-04-12 09:49  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Fixed displacement overflow
+       problem when restoring LR. We can't use r0 here.
+
+2006-04-12 09:30  twisti
+
+       * NEWS: Line-number fix added.
+
+2006-04-12 09:20  edwin
+
+       * src/vm/jit/parse.c (parse): Skip line number entries that span over
+       zero
+       bytecode instructions.
+
+2006-04-12 08:52  edwin
+
+       * src/vm/method.h (methodinfo): Forward declaration moved to
+       refereneces.h.
+       * src/vm/field.h (fieldinfo): Forward declaration moved to
+       refereneces.h.
+       * src/vm/references.h (methodinfo, fieldinfo): Added forward
+       references.
+
+2006-04-12 08:34  edwin
+
+       * src/vm/class.c (class_showconstanti): Removed.
+       (class_showconstantpool): Documented.
+       (class_showmethods): Documented.
+       (vim boilerplate): Added.
+       (Changes): Finally added my name.
+
+2006-04-11 13:13  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Changed signature to use
+       jitdata. Renamed reg_of_var by codegen_reg_of_var.
+       * src/vm/jit/x86_64/codegen.h (M_COPY): Likewise.
+
+2006-04-11 10:54  twisti
+
+       * tests/regression/clinitexception.2output: Updated.
+       * tests/regression/native/checkjni.output: Likewise.
+       * tests/regression/extest.2output: Likewise.
+
+2006-04-11 10:20  twisti
+
+       * src/vm/builtin.c (builtin_throw_exception): Changed return type and
+       return NULL. This is less error-prone in asm_vm_call_method.
+       * src/vm/builtin.h: Likewise.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_vm_call_method_exception_handler):
+       Don't set v0 to NULL. This is now done in builtin_throw_exception.
+       * src/vm/jit/i386/asmpart.S: Likewise.
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
+
+2006-04-11 10:04  twisti
+
+       * src/vm/jit/ifconv/ifconv.c (ifconv_static): Keep compiler happy.
+
+2006-04-11 09:00  edwin
+
+       * src/vm/jit/stack.c (stack_print_stack): Only use `regs` if
+       ENABLE_DISASSEMBLER is defined.
+       (stack_show_method): Likewise.
+       
+       * src/vm/jit/replace.c (replace_executionstate_println): Likewise.
+
+2006-04-11 05:10  edwin
+
+       * src/vm/jit/intrp/asmpart.c (intrp_asm_handle_exception): Do not
+       trace
+       exception when NDEBUG.
+       
+       * src/vm/jit/intrp/dynamic-super.c (disassemble_prim): Only enable for
+       ENABLE_DISASSEMBLER.
+       (dynamic_super_init): Only call disassemble_prim for
+       ENABLE_DISASSEMBLER.
+       
+       * src/vm/jit/intrp/java.vmg: Disable builtin_displaymethodstop and
+       builtin_trace_args for NDEBUG.
+
+2006-04-06 12:54  twisti
+
+       * src/vm/jit/mips: Added TAGS.
+       * src/vm/jit/mips/irix: Likewise.
+       * src/vm/jit/mips/irix/.cvsignore: Likewise.
+       * src/vm/jit/mips/.cvsignore: Likewise.
 
-2005-04-11 11:46  twisti
+2006-04-06 12:51  twisti
 
-       * src/vm/jit/asmpart.h: Added code patching functions.
+       * src/vm/jit/mips/codegen.c (codegen): Changed signature to use
+       jitdata. Renamed reg_of_var by codegen_reg_of_var.
+       (createcompilerstub): Replaced docacheflush by md_cacheflush.
+       * src/vm/jit/mips/codegen.h (M_COPY): Likewise.
+       * src/vm/jit/mips/md.c (sys/mman.h): Removed.
+       (docacheflush): Likewise.
 
-2005-04-11 11:45  twisti
+2006-04-06 00:33  edwin
 
-       * src/vm/jit/: helper.c, helper.h: Major changes: added functions,
-         renamed functions, ...
+       * configure.ac: Added host type `armv5l`.
 
-2005-04-11 11:43  twisti
+2006-04-05 20:31  edwin
 
-       * src/vm/: loader.c, loader.h:
-         - moved class_getconstant, innerclass_getconstant to class.[ch]
-         - check for load_newly_created_array error in load_class_bootstrap
+       * src/vm/jit/parse.h, src/vm/jit/parse.c (OP1LOAD):
+       Split into OP1LOAD_ONEWORD and OP1LOAD_TWOWORD. Index is only checked
+       if
+       ENABLE_VERIFIER.
+       (OP1STORE): Split into OP1STORE_ONEWORD and OP1STORE_TWOWORD. Index
+       is
+       only checked if ENABLE_VERIFIER.
 
-2005-04-11 11:42  twisti
+2006-04-05 19:58  edwin
 
-       * src/vm/: class.c, class.h: Moved from loader.[ch]:
-         class_getconstant, innerclass_getconstant
+       * src/vm/jit/parse.c (parse): Cleaned up and reordered an if.
+
+2006-04-05 19:44  edwin
+
+       * src/vm/jit/parse.c (parse): Remove the `if (!iswide)` check for
+       each opcode
+       by making JAVA_WIDE continue directly to the label fetch_opcode.
+       (This also
+       removed a part of the iswide check at the end of the loop.)
 
-2005-04-11 11:40  twisti
+2006-04-05 18:48  edwin
 
-       * src/vm/builtin.h: Added BUILTIN_nmultianewarray define.
+       * src/vm/jit/alpha/codegen.c (codegen, createnativestub): Remove
+       opt_verbosecall code for NDEBUG builds.
 
-2005-04-11 11:40  twisti
+2006-04-05 18:13  edwin
 
-       * src/vm/builtin.c: Added asm_builtin_newarray to builtin_desc.
+       * src/vm/jit/parse.c (parse): Only do verifier checks if
+       ENABLE_VERIFIER.
+       Cleaned up an obsolete printf.
 
-2005-04-07 13:23  twisti
+2006-04-05 12:56  edwin
 
-       * src/vm/jit/Makefile.am:
-         - added asmhelper.[ch]
-         - removed asmpart.c (duplicate object file)
+       * configure.ac (ENABLE_RT_TIMING): Added.
+       
+       * src/vm/jit/jit.c (ENABLE_RT_TIMING): Added code for real-time timing
+       of compiler passes.
+       
+       * src/vm/jit/jit.h (jit_print_time_stats): Added.
+       
+       * src/vm/vm.c (vm_exit_handler): Call jit_print_time_stats.
 
-2005-04-07 13:21  twisti
+2006-04-05 11:32  edwin
 
-       * src/vm/jit/asmpart.h: Removed helper prototypes.
+       * src/vm/jit/inline/inline.c (create_block): Use BASICBLOCK_INIT.
 
-2005-04-07 13:20  twisti
+2006-04-05 10:02  twisti
 
-       * src/vm/jit/x86_64/asmpart.S: Comment fix.
+       * src/vm/jit/alpha/asmpart.S (asm_vm_call_method): Removed !NDEBUG as
+       builtin_throw_exception actually posts the thrown exception to the VM
+       system.
+       * src/vm/jit/powerpc/asmpart.S: Likewise.
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
 
-2005-04-07 13:20  twisti
+2006-04-05 09:57  edwin
 
-       * src/vm/jit/helper.h: Helper header.
+       * src/vm/jit/jit.h (instruction): Removed `method` field.
+       (insinfo_inline): Added.
+       (basicblock): Added `method` field.
+       
+       * src/vm/jit/dseg.c (dseg_addlinenumber_inline_start)
+       (dseg_addlinenumber_inline_end): Use new insinfo_inline struct.
+       
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Removed unused
+       variable `myclass`.
+       
+       * src/vm/jit/inline/inline.c (emit_inlining_prolog,
+       emit_inlining_epilog):
+       Use insinfo_inline struct.
+       (inline_write_exception_handlers): Removed `method` field.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Use insinfo_inline struct.
+       
+       * src/vm/jit/parse.h (several macros): Removed `method` field from
+       instruction.
+       
+       * src/vm/jit/stack.c (stack_show_icmd): Adapted to new insinfo_inline
+       struct.
 
-2005-04-07 13:19  twisti
+2006-04-05 09:54  twisti
 
-       * src/vm/jit/helper.c: Renamed.
+       Fixes GCC Bugzilla Bug #26990.
+       * src/vm/vm.c (vm_exit): Don't check for exception of System.exit().
 
-2005-04-06 18:06  twisti
+2006-04-04 21:31  edwin
 
-       * src/cacaoh/headers.c: Added proper asm_builtin_new.
+       * src/vm/builtin.c (builtin_throw_exception): No twisti, we don't
+       turn off
+       exceptions just because it is NDEBUG ;)
+       * src/vm/jit/i386/asmpart.S (asm_vm_call_method_exception_handler):
+       Likewise.
 
-2005-04-06 18:06  twisti
+2006-04-04 18:14  edwin
 
-       * src/vm/jit/x86_64/codegen.c: Removed function checking from
-         BUILTINn, this is now done in parse.
+       * src/vm/jit/i386/Makefile.am: Do not build disassebmler for
+       --disable-disassembler
+       * src/vm/jit/i386/codegen.c (codegen): disable verbosecall code for
+       NDEBUG
 
-2005-04-06 18:05  twisti
+2006-04-04 18:11  edwin
 
-       * src/vm/builtin.c: Added asm_builtin_new to builtin table.
+       * src/vm/jit/ifconv/ifconv.c (ifconv_static): #ifdef debug code.
+       (check): Likewise.
 
-2005-04-06 18:05  twisti
+2006-04-04 09:17  twisti
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - don't pass pv to asm_builtin_new_helper
-         - save float argument register in asm_invokespecial
+       * src/threads/native/threads.c (tablelock): Removed.
+       (tables_lock, tables_unlock): Likewise.
+       (criticalcompare): Removed tablelock initialization.
+       * src/vm/hashtable.h (tables_lock, tables_unlock): Removed.
+       * src/vm/global.h (VFTBLINTERFACETABLE): Likewise.
+       (cast_lock, cast_unlock): Likewise.
 
-2005-04-06 18:04  twisti
+2006-04-04 09:14  twisti
 
-       * src/vm/jit/stack.c: Print descriptors for function calls with
-         -si.
+       * src/vm/exceptions.c (exceptions_new_nosuchmethoderror): Print
+       classname with dots.
+       (exceptions_handle_exception): Compiler warning fix.
 
-2005-04-06 18:03  twisti
+2006-04-04 09:13  edwin
 
-       * src/vm/jit/parse.c: Check which function to call in JAVA_NEW.
+       * src/vm/jit/verify/typeinfo.c (CLASSINFO_IMPLEMENTS_INTERFACE):
+       Removed the
+       single use of the macro VFTBLINTERFACETABLE
 
-2005-04-06 17:49  twisti
+2006-04-04 08:45  twisti
 
-       * src/vm/jit/: asmpart.h, helper.c: No need for pv, removed it.
+       * src/native/vm/VMClass.c: Reordered methods like in the
+       VMClass.java. This eases the 1.5 changes addition.
 
-2005-04-06 17:10  edwin
+2006-04-04 08:30  edwin
+
+       * src/vm/jit/parse.c (parse): Removed obsolete variable
+       `skipBasicBlockChange`.
+
+2006-04-04 08:24  edwin
 
-       * src/vm/jit/jit.c: revert commit of debug code
+       * src/vm/jit/parse.c (parse): Removed obsolete variable `firstlocal`.
+       (Was used for the old inliner.)
 
-2005-04-06 17:07  edwin
+2006-04-03 15:36  twisti
 
-       * src/vm/: classcache.c, resolve.c, jit/jit.c: fixed bug in
-         classcache_add_constraint
+       * src/vm/jit/powerpc/codegen.c (codegen): Changed signature to use
+       jitdata. Renamed reg_of_var by codegen_reg_of_var.
+       * src/vm/jit/powerpc/codegen.h (M_COPY): Likewise.
+
+2006-04-03 13:59  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Renamed parentargs_base to
+       stackframesize.
+       (codegen_trace_args): Likewise.
+
+2006-04-02 16:17  edwin
+
+       * src/vm/jit/i386/codegen.c (codegen): Implemented inlining of
+       synchronized
+       methods (INLINE_START, INLINE_END do monitorenter/exit).
+
+2006-04-02 16:16  edwin
+
+       * src/vm/jit/inline/inline.c (inline_node): Added fields for inlining
+       synchronized methods.
+       (inline_context): Added `master` pointer to outermost caller. Added
+       field
+       `calls_others`. (Leaf method detection should really be done after
+       inlining).
+       (several methods): Implemented inlining of synchronized methods.
+       (inline_new_stackslot): Added.
+       (inline_write_exception_handlers): Added.
 
-2005-04-06 15:04  twisti
+2006-04-01 21:03  edwin
 
-       * src/vm/jit/: parse.c, stack.c: Fixed compile problems.
+       * src/vm/jit/intrp/codegen.c (createcalljavafunction): Create
+       codeinfo with
+       the right methodinfo pointer.
 
-2005-04-06 14:16  twisti
+2006-04-01 21:00  edwin
 
-       * src/vm/linker.c: Include missing vm/classcache.h
+       * src/vm/jit/codegen-common.h (intrp_createnativestub): Takes a
+       `jitdata *` now.
+       
+       * src/vm/jit/intrp/codegen.c (intrp_codegen, intrp_createnativestub)
+       (createcalljavafunction): Use jitdata.
 
-2005-04-06 14:13  twisti
+2006-03-31 12:38  edwin
+
+       * src/vm/jit/inline/inline.c, src/vm/jit/inline/inline_debug.c:
+       Adapted to
+       twisti's jitdata changes.
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - changes for asm_check_clinit: don't use a stack location to pass
-           the patch machine code, instead read 8 bytes in a bunch and pass it
-           in a itmp register
-         - added: asm_builtin_new, asm_invokespecial
+2006-03-31 07:50  twisti
 
-2005-04-06 14:12  twisti
+       * src/vm/jit/powerpc/asmpart.S (asm_vm_call_method): Replaced $stub
+       symbols with old symbols and define them for darwin in the
+       corresponding md-asm.h.
+       (asm_call_jit_compiler): Likewise.
+       (asm_wrapper_patcher): Likewise.
+       (asm_replacement_out): Likewise.
+       * src/vm/jit/powerpc/darwin/md-asm.h (builtin_asm_get_exceptionptrptr)
+       (builtin_throw_exception, exceptions_handle_exception, jit_compile)
+       (replace_me, stacktrace_create_extern_stackframeinfo)
+       (stacktrace_remove_stackframeinfo): Changed to $stub symbol.
+       (stacktrace_extern_fillInStackTrace): Removed.
+       
+       * src/vm/jit/powerpc/linux/md-abi.c (regs): Added.
+
+2006-03-31 07:14  twisti
+
+       * src/vm/jit/powerpc/patcher.c
+       (patcher_checkcast_instanceof_interface): Compile fix (typo).
 
-       * src/vm/jit/x86_64/codegen.c:
-         - changes to use codegen_addpatchref
-         - BUILTIN_new and INVOKESPECIAL use lazy loading
+2006-03-30 12:01  twisti
 
-2005-04-06 14:10  twisti
+       * src/vm/jit/alpha/asmpart.S (vm/jit/abi.h): Changed to
+       vm/jit/abi-asm.h.
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/i386/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
 
-       * src/vm/jit/: stack.c, reg.inc: Lazy loading changes, #ifdef'd for
-         x86_64.
+2006-03-30 11:59  twisti
+
+       * src/vm/jit/powerpc/codegen.c (codegen): Changed signature to use
+       jitdata. Renamed reg_of_var by codegen_reg_of_var.
+       * src/vm/jit/powerpc/codegen.h (M_COPY): Likewise.
+       
+       * src/vm/jit/powerpc/asmpart.S (vm/jit/abi.h): Changed to
+       vm/jit/abi-asm.h.
+       (asm_vm_call_method_exception_handler): Export it.
+       (asm_vm_call_method): Don't put label addresses into the
+       "data-segment", as it's located in the .text area and that may be
+       read-only. Changed to use PIC code. Linux stuff is still missing.
+       
+       * src/vm/jit/powerpc/Makefile.am (DISASS_SOURCES): Added.
+       * src/vm/jit/powerpc/disass.c (regs): Removed.
+
+2006-03-30 10:26  twisti
+
+       * src/vm/jit/ifconv/Makefile.am (AM_CPPFLAGS): Added OS_DIR.
+       (LIBS): Added.
+
+2006-03-30 10:23  twisti
+
+       * src/vm/jit/Makefile.am (noinst_HEADERS): Added abi-asm.h.
+       * src/vm/jit/abi.h (vm/jit/abi-asm.h): Added.
+       (nregdescint, regs, nregdescfloat): Added.
+       * src/vm/jit/abi-asm.h: New file.
+       * src/vm/jit/reg.h (nregdescint, nregdescfloat): Removed.
+       * src/vm/jit/reg.c (vm/jit/abi.h): Added.
+       * src/vm/jit/replace.c: Likewise.
+       * src/vm/jit/allocator/lsra.c: Likewise.
+       * src/vm/jit/powerpc/darwin/md-asm.h
+       (asm_vm_call_method_exception_handler): Added.
+       * src/vm/jit/powerpc/darwin/md-abi.c (regs): Added.
+
+2006-03-30 10:14  twisti
+
+       * src/vm/jit/codegen-common.c: Use ENABLE_DISASSEMBLER.
+       * src/vm/jit/codegen-common.h: Likewise.
+       * src/vm/jit/stack.c: Likewise. Plus ENABLE_LSRA.
+       * src/vm/jit/disass.h: Likewise.
+       * src/vm/jit/jit.c: Likewise. Plus ENABLE_LOOP.
+
+2006-03-30 10:10  twisti
+
+       * src/vm/jit/powerpc/patcher.c (patcher_invokevirtual): Use disp
+       variable for code patching. This will ease the overflow code
+       comming.
+       (patcher_invokeinterface): Likewise.
+       (patcher_checkcast_instanceof_interface): Likewise.
+
+2006-03-30 09:52  twisti
+
+       * src/vm/exceptions.c (exceptions_handle_exception): Check for special
+       * start/endpc-NULL case. This makes asmpart stuff much easier, like on
+       * Darwin or IRIX.
+       
+       * src/vm/jit/asmpart.h (asm_vm_call_method_exception_handler): Added.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_vm_call_method_exception_handler):
+       Export it.
+       (asm_vm_call_method): Don't put label addresses into the
+       "data-segment", as it's located in the .text area and that may be
+       read-only.
+       * src/vm/jit/i386/asmpart.S: Likewise.
+       * src/vm/jit/mips/asmpart.S: Likewise.
+       * src/vm/jit/x86_64/asmpart.S: Likewise.
+
+2006-03-30 09:20  twisti
+
+       * src/vm/jit/mips/asmpart.S (asm_vm_call_method): Return NULL for
+       exception.
+
+2006-03-30 08:48  twisti
+
+       * configure.ac (opcodes): Check for disassembler symbol as
+       init_disassemble_info isn't defined everywhere, like NetBSD.
+
+2006-03-29 23:11  twisti
+
+       * src/vm/jit/powerpc/netbsd: New directory.
+       * src/vm/jit/powerpc/netbsd/md-abi.h: New file.
+       * src/vm/jit/powerpc/netbsd/md-os.c: Likewise.
+       * src/vm/jit/powerpc/netbsd/md-asm.h: Likewise.
+       * src/vm/jit/powerpc/netbsd/Makefile.am: Likewise.
+       * src/vm/jit/powerpc/netbsd/md-abi.c: Likewise.
+       * src/vm/jit/powerpc/netbsd/.cvsignore: Likewise.
+       * configure.ac (host_os): Added NetBSD.
+       (AC_CONFIG_FILES): Added src/vm/jit/powerpc/netbsd/Makefile.
+
+2006-03-28 15:43  twisti
+
+       * tests/regression/codepatching/test.java: Made functions static
+       final.
+       --This line, and those below, will be ignored--
+       
+       M test.java
+
+2006-03-28 15:41  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Changed signature to use
+       jitdata. Renamed reg_of_var by codegen_reg_of_var.
+       * src/vm/jit/i386/codegen.h (M_COPY): Likewise.
+
+2006-03-28 15:14  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Added src/vm/jit/ifconv/Makefile.
+
+2006-03-28 15:10  twisti
+
+       * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added ifconv.
+       * src/vm/jit/ifconv: New directory.
+       * src/vm/jit/ifconv/ifconv.c: New file.
+       * src/vm/jit/ifconv/Makefile.am: Likewise.
+       * src/vm/jit/ifconv/ifconv.h: Likewise.
+       * src/vm/jit/ifconv/.cvsignore: Likewise.
+
+2006-03-28 14:52  twisti
+
+       * src/vm/method.h (vm/jit/code.h): Added.
+       (codeinfo, rplpoint, executionstate, sourcestate): typedef's removed.
+       
+       * src/vm/jit/codegen-common.c (codegendata): Removed code.
+       (codegen_setup, codegen_finish, createnativestub, codegen)
+       (intrp_codegen): Changed signature to use jitdata.
+       (reg_of_var): Renamed to codegen_reg_of_var. Changed signature.
+       (codegen_free): Removed.
+       * src/vm/jit/codegen-common.h: Likewise.
+       
+       * src/vm/jit/stack.c (lock_show_icmd): Renamed to
+       lock_stack_show_icmd.
+       (analyse_stack): Renamed to stack_analyse. Changed signature to use
+       jitdata.
+       (ICMD_IF_ICMPxx): Make ICMD_IFxx last instruction in basic block. This
+       is required for if-conversion.
+       (stack_print): Renamed to stack_print_stack.
+       (show_icmd_method): Renamed to stack_show_method. Changed signature to
+       use jitdata.
+       (show_icmd_block): Renamed to stack_show_basicblock. Changed signature
+       to use jitdata.
+       (show_icmd): Renamed to stack_show_icmd.
+       * src/vm/jit/stack.h: Likewise.
+       
+       * src/vm/jit/code.h (codeinfo): Added typedef.
+       
+       * src/vm/jit/dseg.c (assert.h): Moved.
+       (dseg_resolve_datareferences, dseg_display): Changed signature to use
+       jitdata.
+       * src/vm/jit/dseg.h: Likewise.
+       
+       * src/vm/jit/verify/typecheck.c (typecheck): Changed signature to use
+       jitdata.
+       * src/vm/jit/verify/typecheck.h: Likewise.
+       
+       * src/vm/jit/loop/loop.c (analyseGraph): Changed signature to use
+       jitdata.
+       * src/vm/jit/loop/loop.h: Likewise.
+       * src/vm/jit/loop/graph.c (depthFirst): Likewise.
+       * src/vm/jit/loop/graph.h: Likewise.
+       * src/vm/jit/loop/analyze.c (optimize_loops): Likewise.
+       * src/vm/jit/loop/analyze.h: Likewise.
+       * src/vm/jit/allocator/lsra.c (lsra): Likewise.
+       * src/vm/jit/allocator/lsra.h: Likewise.
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc)
+       (local_regalloc,allocate_scratch_registers): Likewise.
+       * src/vm/jit/allocator/simplereg.h: Likewise.
+       * src/vm/jit/parse.c (parse): Likewise.
+       * src/vm/jit/replace.c (replace_create_replacement_points): Likewise.
+       * src/vm/jit/intrp/codegen.c (intrp_codegen): Likewise.
+       * src/vm/jit/reg.c (reg_setup): Likewise.
+       * src/vm/jit/reg.h: Likewise.
+       
+       * src/vm/jit/jit.c (jit_compile): Use new function signatures and
+       jitdata structure.
+       (jit_compile_intern): Changed signature to use jitdata.
+       * src/vm/jit/jit.h (jitdata): Added.
+       (ICMD_OPCODE_MASK): Likewise.
+       (ICMD_CONDITION_MASK): Likewise.
+       
+       * src/vm/jit/replace.h (rplpoint, executionstate, sourcestate):
+       typedef's added.
+       (replace_create_replacement_points): Changed signature to use jitdata.
+       
+       * src/vm/jit/parse.h (INDEX_ONEWORD, INDEX_TWOWORD): Use goto.
+       (parse): Changed signature to use jitdata.
+
+2006-03-28 14:31  twisti
+
+       * src/vm/jit/x86_64/md.c (md_signal_handler_sigsegv)
+       (md_signal_handler_sigfpe): Comment changes.
+
+2006-03-28 14:30  twisti
+
+       * src/vm/jit/i386/codegen.c (createnativestub): Replaced _exceptionptr
+       by _no_threads_exceptionptr.
+
+2006-03-28 14:22  twisti
+
+       * NEWS: Added upcoming 0.96 release. Added miranda-methods fix.
+
+2006-03-28 14:21  twisti
+
+       * src/tests/regression/native/checkjni.c (PushLocalFrame): New method.
+       * src/tests/regression/native/checkjni.java (PushLocalFrame):
+       Likewise.
+       (equal(int,int)): Likewise.
+       * src/tests/regression/native/Makefile.am (NOTESTNAMES): Added.
+
+2006-03-28 11:54  twisti
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Renamed parentargs_base to
+       stackframesize.
+       * tests/regression/extest.2output: Updated.
+
+2006-03-28 10:42  twisti
+
+       * src/vm/Makefile.am (noinst_LTLIBRARIES): Reformatted.
+
+2006-03-28 10:21  twisti
+
+       * src/native/vm/VMClassLoader.c (loadClass): Smaller changes.
+
+2006-03-28 09:41  twisti
+
+       * src/native/native.c (dummynativetable): Renamed getModifiers
+       functions to getModifiersInternal due to GNU Classpath VM interface
+       changes.
+       * src/native/vm/Constructor.c (getModifiers): Renamed to
+       getModifiersInternal.
+       * src/native/vm/Field.c (getModifiers): Likewise.
+       * src/native/vm/Method.c (getModifiers): Likewise.
+
+2006-03-27 11:37  twisti
+
+       * src/vm/class.c: Don't initialize classes to NULL.
+       
+       * src/vm/loader.c (loader_load_all_classes): Added NDEBUG.
+       * src/vm/builtin.c (builtin_new): Likewise.
+       * src/vm/jit/codegen-common.c (codegen_createnativestub): Likewise.
+       (codegen_disassemble_nativestub): Likewise.
+       * src/vm/jit/codegen-common.h (codegen_disassemble_nativestub):
+       Likewise.
+       * src/vm/jit/stack.c (stack_print): Likewise.
+       * src/vm/jit/stack.h (stack_print, show_icmd_method, show_icmd_block)
+       (show_icmd): Likewise.
+       * src/vm/exceptions.c (exceptions_handle_exception): Likewise.
+       * src/vm/linker.c (link_class_intern): Likewise.
+       * src/cacao/cacao.c (main): Likewise.
+       
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/x86_64/asmpart.S (asm_vm_call_method): Likewise.
+       * src/vm/jit/x86_64/Makefile.am (DISASS_SOURCES): Added. Put into
+       ENABLE_DISASSEMBLER.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Added ENABLE_LOOP.
+       * src/vm/vm.c (vm_create): Added ENABLE_PROFILING.
+       (vm_exit_handler): Likewise.
+       
+       * configure.ac (AC_ENABLE_SHARED, AC_DISABLE_STATIC): Removed. Set it
+       manually.
+       (EXPORT_SYMBOLS_FLAGS): Removed.
+       (--enable-disassembler): Added.
+       (--ensable-loop): Likewise.
+       (--ensable-profiling): Likewise.
+       (--ensable-libjvm): Likewise.
+       (--ensable-inlining): Moved.
+       
+       * src/vm/jit/Makefile.am (LOOP_LIB): Added. Put into ENABLE_LOOP.
+       (PROFILE_LIB): Put into ENABLE_PROFILING.
+       * src/cacao/Makefile.am (cacao_LDFLAGS): Use -export-dynamic and let
+       libtool do the work. Add -all-static for ENABLE_STATICVM.
+       
+       * src/lib/Makefile.am: Made it -j aware.
+       
+       * src/vm/resolve.c (config.h, vm/global.h): Added.
+       * src/vm/classcache.c (config.h): Moved to top.
+       
+       * src/vm/exceptions.h: Small change.
+
+2006-03-27 11:15  twisti
+
+       * src/vm/utf8.c: Removed superfluous comment.
+
+2006-03-24 11:50  motse
+
+       * src/cacao/cacao.c (main): remove debug code
+
+2006-03-23 12:48  edwin
+
+       * src/vm/jit/parse.h (bound_check): Renamed to CHECK_BYTECODE_INDEX,
+       made
+       a NOP for ENABLE_VERIFIER undefined.
+       (bound_check_exclusive): Renamed to CHECK_BYTECODE_INDEX_EXCLUSIVE,
+       made
+       a NOP for ENABLE_VERIFIER undefined.
+       
+       * src/vm/jit/parse.c (fillextable): Cleaned up.
+       (bound_check): Renamed to CHECK_BYTECODE_INDEX.
+       (bound_check_exclusive): Renamed to CHECK_BYTECODE_INDEX_EXCLUSIVE.
+       (parse): Only do checks if ENABLE_VERIFIER is defined.
+
+2006-03-23 11:22  edwin
+
+       * src/vm/jit/parse.c (CHECK_END_OF_BYTECODE): Added a macro for
+       checking
+       the end of the bytecode that becomes a NOP if ENABLE_VERIFIER is
+       undefined.
+
+2006-03-23 02:06  edwin
+
+       * src/vm/jit/parse.c (parse): Uncuddled else's.
+
+2006-03-23 00:56  edwin
+
+       * src/vm/jit/powerpc/darwin/md-asm.h (_asm_replacement_out)
+       (_asm_replacement_in, _replace_me): Added #defines for Darwin.
+
+2006-03-23 00:30  edwin
+
+       * src/vm/jit/stack.h (CHECK_STACK_DEPTH): Added. Uses goto to a common
+       label for stack depth mismatches.
+       (MARKREACHED): Use CHECK_STACK_DEPTH, which becomes a NOP if
+       ENABLE_VERIFIER is undefined.
+       
+       * src/vm/jit/stack.c (anaylse_stack): Use CHECK_STACK_DEPTH.
+       Added common label `throw_stack_depth_error` for stack depth
+       mismatches.
+       Uncuddled else's.
+
+2006-03-23 00:08  edwin
+
+       * src/vm/global.h (TYPECHECK_STACK_COMPCAT): Replaced by
+       ENABLE_VERIFIER.
+       The separation made no sense, anyway.
+       
+       * src/vm/jit/stack.c (TYPECHECK_STACK_COMPCAT): Replaced by
+       ENABLE_VERIFIER.
+       (analyse_stack): Removed code duplication by branching to a common
+       label
+       for all computational category errors: throw_stack_category_error.
+
+2006-03-22 23:51  edwin
+
+       * src/vm/jit/stack.h (BBEND): Inlined this macro (used only once) at
+       its
+       call site in stack.c.
+       
+       * src/vm/jit/stack.c (analyse_stack): Inlined BBEND macro and cleaned
+       up
+       the code.
+
+2006-03-22 23:29  edwin
+
+       * src/vm/jit/stack.c (analyse_stack): Removed obsolete label
+       `icmd_store`.
+
+2006-03-22 23:27  edwin
+
+       * src/vm/jit/jit.h (ICMD_READONLY_ARG, ICMD_CLEAR_ARGREN): Removed.
+       
+       * src/vm/jit/stack.c (analyse_stack): Removed obsolete argument
+       renaming.
+       
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Removed
+       ICMD_READONLY_ARG and ICMD_CLEAR_ARGREN.
+
+2006-03-22 23:17  edwin
+
+       * src/vm/jit/stack.h (TYPE_VERIFYERROR): Changed to CHECK_BASIC_TYPE.
+       This
+       macro now becomes a NOP if ENABLE_VERIFIER is undefined. Otherwise it
+       uses
+       a goto to the common label throw_stack_type_error in order to save
+       space.
+       
+       * src/vm/jit/stack.c (analyse_stack): Added variable `expectedtype`
+       for use
+       by CHECK_BASIC_TYPE. Added label throw_stack_type_error.
 
-2005-04-06 14:06  twisti
+2006-03-22 20:59  edwin
+
+       * src/vm/jit/i386/asmpart.S (asm_vm_call_method): Save/restore stack
+       pointer
+       properly. Fixed copy&paste error in restoring callee-save registers.
+
+2006-03-22 18:32  edwin
+
+       * src/vm/jit/stack.c (analyse_stack): Added throw_stack_overflow
+       label.
+       
+       * src/vm/jit/stack.h (CHECKOVERFLOW): Make this a NOP if
+       ENABLE_VERIFIER
+       is undefined.
+       (REQUIRE): Use #if defined(...)
 
-       * src/vm/jit/parse.c: Lazy loading changes, #ifdef'd for x86_64.
+2006-03-22 17:25  edwin
 
-2005-04-06 14:05  twisti
+       * src/vm/jit/stack.h (REQUIRE): Made a NOP if ENABLE_VERIFIER is
+       undefined.
+       
+       * src/vm/jit/stack.c (analyse_stack): Only define
+       throw_stack_underflow
+       if ENABLE_VERIFIER is defined.
+       (jit_type): Do not define that for NDEBUG.
 
-       * src/vm/jit/parse.h: Added OP2A_NOINC: required for lazy loading
-         code
+2006-03-22 17:14  edwin
 
-2005-04-06 14:04  twisti
+       * src/vm/jit/stack.h (REQUIRE): Avoid duplication of exception
+       throwing code.
+       
+       * src/vm/jit/stack.c (analyse_stack): Added label
+       throw_stack_underflow
+       for the REQUIRE macro.
 
-       * src/vm/jit/codegen.inc.h: Renamed clinitref to patchref.
+2006-03-22 15:30  edwin
 
-2005-04-06 14:04  twisti
+       * src/vm/jit/powerpc/md.c (DISASSINSTR): #ifdef'ed
+       * src/vm/jit/alpha/md.c (DISASSINSTR): #ifdef'ed
+       * src/vm/jit/i386/md.c (DISASSINSTR): #ifdef'ed
+       * src/vm/jit/x86_64/md.c (DISASSINSTR): #ifdef'ed
+       * src/vm/jit/mips/md.c (DISASSINSTR): #ifdef'ed
 
-       * src/vm/jit/codegen.inc:
-         - changed codegen_addclinitref to codegen_addpatchref: different
-           arguments, clinitref is now called patchref
-         - only call codegen_insertmethod for i386/x86_64, problems with xdsp
-         - additionally show integer offset in datasegment
+2006-03-22 12:35  edwin
 
-2005-04-06 12:32  twisti
+       * src/vm/jit/inline/inline.c (stack_depth): Moved here from
+       inline_debug.c.
+       (NDEBUG): Put debug stuff inside #ifndef NDEBUG.
+       
+       * src/vm/jit/inline/inline_debug.c (stack_depth): Moved to inline.c
 
-       * src/cacaoh/headers.c: Removed asm_builtin_new.
+2006-03-22 09:19  edwin
 
-2005-04-06 12:29  twisti
+       * src/vm/jit/inline/inline_debug.c (debug_dump_stack): Fixed warning
+       on
+       platforms that don't define NULL as a pointer.
 
-       * src/vm/jit/Makefile.am: Added asmpart.c
+2006-03-22 01:22  edwin
 
-2005-04-06 12:28  twisti
+       * src/vm/jit/inline/inline.c (relocate_stack_ptr_inter,
+       rewrite_method):
+       Fixed warnings.
+       
+       * src/vm/jit/inline/inline_debug.c (DEBUG_SLOT, dump_inline_tree):
+       Fixed warnings.
 
-       * src/vm/jit/asmpart.h: Added code patching prototypes.
+2006-03-21 14:07  twisti
 
-2005-04-06 12:27  twisti
+       * src/vm/jit/i386/codegen.h (ALIGNCODENOP): Added.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Renamed to parentargs_base to
+       stackframesize. Align stack to 16-bytes.
+       (ICMD_GOTO): Use ALIGNCODENOP.
+       
+       * src/vm/jit/i386/asmpart.S (asm_vm_call_method): Align stack to
+       16-bytes. Use register defines for better readability.
 
-       * src/vm/jit/helper.c: Helper functions for asmpart code patching
-         functions. These do the complicated stuff in portable c.
+2006-03-21 11:58  twisti
+
+       * src/vm/jit/Makefile.am: Removed ifconv. Again...
+
+2006-03-21 11:50  twisti
+
+       * configure.ac (AC_INIT): Changed cvs to svn.
+       (--enable-inlining): Added.
+       
+       * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added ifconv.
+       (ENABLE_IFCONV): Added. Use IFCONV_LIB.
+       (USE_INLINING): Renamed to ENABLE_INLINING.
+
+2006-03-21 07:57  edwin
+
+       * src/vm/jit/alpha/codegen.c (codegen): Comment 16-byte stack
+       alignment.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_replacment_out): Fix comment about
+       stack layout.
+
+2006-03-21 07:42  edwin
+
+       * src/vm/jit/alpha/asmpart.S (REPLACEMENT_ROOM): Fixed deleted
+       characters.
+
+2006-03-21 04:14  edwin
+
+       * src/vm/jit/inline/Makefile.am (AM_CPPFLAGS): Added OS include dir.
+
+2006-03-21 03:15  edwin
+
+       * src/vm/jit/inline/inline_debug.c: Added file.
+
+2006-03-21 00:13  edwin
+
+       * src/vm/jit/inline/inline.c: Committed the inliner. This code works
+       but
+       it is still in prototyping stage.
+       
+       * src/vm/jit/parse.c (parse): Added (#if 0-ed) code for storing the
+       exception table that the inliner uses.
+
+2006-03-21 00:04  motse
+
+       major rework of jvmti. now we have three processes in jvmti mode.
+       there are still many debug statements
+
+2006-03-20 23:56  edwin
+
+       * src/vm/jit/code.h (codeinfo): Comment that profiling fields
+       will be removed.
+
+2006-03-20 15:41  edwin
+
+       * src/vm/jit/alpha/asmpart.S (asm_replacement_out): 16-byte align
+       stack.
+
+2006-03-20 15:37  edwin
+
+       * doc/stack_frames.txt: Some fixes, described PowerPC stack frames.
+
+2006-03-20 15:12  twisti
+
+       * src/vm/jit/alpha/codegen.c (codegen): Align stack to 16-bytes in
+       replacement stub.
+       * src/vm/jit/alpha/asmpart.S (asm_replacement_out): Load GP before
+       symbolic jumps.
+
+2006-03-20 14:43  twisti
+
+       * autogen.sh, src/boehm-gc/autogen.sh: Prefix all shell variables with
+       CACAO_ to prevent problems on OpenBSD.
+
+2006-03-20 14:27  twisti
+
+       * src/boehm-gc/darwin_stop_world.c,
+       src/boehm-gc/threadlibs.c,
+       src/boehm-gc/doc/README.changes,
+       src/boehm-gc/doc/README,
+       src/boehm-gc/doc/gcinterface.html,
+       src/boehm-gc/mark.c,
+       src/boehm-gc/include/gc.h,
+       src/boehm-gc/include/gc_cpp.h,
+       src/boehm-gc/include/gc_pthread_redirects.h,
+       src/boehm-gc/include/leak_detector.h,
+       src/boehm-gc/include/gc_config_macros.h,
+       src/boehm-gc/include/private/gc_priv.h,
+       src/boehm-gc/include/private/gcconfig.h,
+       src/boehm-gc/include/private/gc_pmark.h,
+       src/boehm-gc/include/private/gc_locks.h,
+       src/boehm-gc/configure.in,
+       src/boehm-gc/allchblk.c,
+       src/boehm-gc/powerpc_darwin_mach_dep.s,
+       src/boehm-gc/dbg_mlc.c,
+       src/boehm-gc/version.h,
+       src/boehm-gc/pthread_stop_world.c,
+       src/boehm-gc/malloc.c,
+       src/boehm-gc/headers.c,
+       src/boehm-gc/pthread_support.c,
+       src/boehm-gc/Makefile.direct,
+       src/boehm-gc/os_dep.c,
+       src/boehm-gc/Makefile.am,
+       src/boehm-gc/dyn_load.c,
+       src/boehm-gc/alloc.c,
+       src/boehm-gc/misc.c: Updated to upstream version 6.7.
+
+2006-03-19 19:46  edwin
+
+       * src/vm/jit/code.c (code_get_stack_frame_size): Implement stack
+       alignment
+       for MIPS.
+       
+       * src/vm/jit/mips/md.c (md_patch_replacement_point): Added.
+       
+       * src/vm/jit/mips/codegen.c (codegen): Handle replacement points.
+       8-byte align blocks that start with replacement points.
+       
+       * src/vm/jit/mips/asmpart.S (asm_replacement_out): Added.
+       (asm_replacement_in): Likewise.
+       
+       * src/vm/jit/replace.c (replace_activate_replacement_point): Activated
+       for MIPS.
+       (replace_deactivate_replacement_poin): Likewise.
+       (replace_me): Likewise.
+       (replace_read_executionstate): MIPS also keeps returnAddress in ITMP1.
+       (replace_write_executionstate): Likewise.
+       
+       * doc/stack_frames.txt: Documented MIPS stack frames.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_replacement_out): Fixed comment.
+
+2006-03-18 04:14  edwin
+
+       * src/vm/jit/powerpc/md.c (md_patch_replacement_point): Added.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Handle replacement points.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_replacement_out): Added.
+       (asm_replacement_in): Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Added missing initialization
+       of `replacementpoint`.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_replacement_out): Store PV register.
+       
+       * src/vm/jit/code.c (code_get_sync_slot_count): Ported to PowerPC.
+       (code_get_stack_frame_size): Likewise.
+       
+       * src/vm/jit/replace.c (replace_activate_replacement_point)
+       (replace_deactivate_replacement_poin): Activated for PowerPC.
+       (replace_read_value, replace_write_value): Added.
+       (replace_read_executionstate): Ported to PowerPC, more complete
+       data type handling.
+       (replace_write_executionstate): Ported to Ported, more complete
+       data type handling, fixed missing initialization of `topslot`.
+       (replace_me): Activated for PowerPC.
+
+2006-03-16 23:32  edwin
+
+       * src/vm/jit/alpha/codegen.c (codegen): Use `disp` for displacement.
+
+2006-03-16 21:12  edwin
+
+       * src/vm/jit/alpha/md.c (Changes): Added my name.
+
+2006-03-16 21:11  edwin
+
+       * src/vm/jit/alpha/md.c (md_patch_replacement_point): Added.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/replace.c (replace_activate_replacement_point)
+       (replace_deactivate_replacement_point, replace_me):
+       Activated replacement for alpha.
+
+2006-03-16 20:31  edwin
+
+       * src/vm/jit/alpha/asmpart.S (asm_replacement_out)
+       (asm_replacement_in): Use stt/ldt for float registers.
+       
+       * src/vm/jit/alpha/codegen.c (codegen): Put replacement-out stub
+       generation in correct scope. Fix warnings.
+
+2006-03-16 19:55  edwin
+
+       * src/vm/jit/alpha/codegen.c (codegen): Handle replacement points.
+       
+       * src/vm/jit/alpha/asmpart.S (asm_replacement_out): Added.
+       (asm_replacement_in): Likewise.
+       (vim boilerplate): Added.
+
+2006-03-16 19:36  edwin
+
+       * src/vm/jit/replace.c (replace_read_executionstate)
+       (replace_write_executionstate): Position of synchronization slot must
+       be calculated from low addresses up, instead of backwards from stack
+       base.
+
+2006-03-16 19:00  edwin
+
+       * src/vm/jit/replace.c (replace_create_replacement_points): Set
+       isleafmethod.
+
+2006-03-16 18:57  edwin
+
+       * src/vm/jit/code.c (code_codeinfo_new): Set codeinfo.isleafmethod.
+
+2006-03-16 18:44  edwin
+
+       * src/vm/jit/x86_64/codegen.c (codegen): Reuse `disp` variable.
+       * src/vm/jit/i386/codegen.c (codegen): Likewise.
+
+2006-03-16 18:38  edwin
+
+       * src/vm/jit/i386/asmpart.S (asm_replacement_out): Added pv.
+       * src/vm/jit/x86_64/asmpart.S (asm_replacement_out): Added pv.
+       
+       * src/vm/jit/replace.c (replace_read_executionstate)
+       (replace_write_executionstate): Prepared for alpha. Some cleanup.
+       
+       * src/vm/jit/replace.c (replace_write_executionstate):
+       Calculate stack pointer from given stack base.
+       (replace_executionstate_println): Added pv.
+       (replace_sourcestate_println): Added stackbase.
+       
+       * src/vm/jit/replace.h (executionstate): Added pv.
+       (sourcestate): Added stackbase.
+       
+       * src/vm/jit/tools/genoffsets.c (main): Added offes_pv.
+       
+       * doc/stack_frames.txt: Clarifications.
 
-2005-04-06 11:05  twisti
+2006-03-16 18:32  edwin
 
-       * src/vm/jit/powerpc/codegen.c:
-         - float argument store bugfix (use M_FST for float values)
-         - CHECKCAST bugfix
-         - throw native stub size exception
-         - bugfix in passing the xpc to asm_handle_nat_exception
+       * src/vm/jit/code.c (code_get_sync_slot_count): No synchronization
+       slots
+       if USE_THREADS is undefined.
+       (code_get_stack_frame_size): Added x86_64 alignment slot.
 
-2005-04-06 01:00  edwin
+2006-03-16 17:29  edwin
 
-       * src/vm/: resolve.c, resolve.h: link class in
-         resolve_field/resolve_method
+       * doc/stack_frames.txt: Added description of x86_64 stack frames.
 
-2005-04-06 00:52  christian
+2006-03-16 17:24  twisti
 
-       * src/vm/jit/powerpc/codegen.h: new ARGVAR Handler for Powerpc
+       * src/vm/jit/mips/md.c (sys/cachectl.h): Added.
+       (md_cacheflush, md_icacheflush, md_dcacheflush): New method.
+       
+       * src/vm/jit/mips/codegen.c: Use new exception stubs.
+       * src/vm/jit/mips/codegen.h (gen_nullptr_check, gen_bound_check)
+       (gen_div_check): Use new add reference functions.
+       
+       * src/vm/jit/mips/patcher.c: Replaced cacheflush with md_icacheflush
+       or md_dcacheflush.
+       
+       * src/vm/jit/mips/asmpart.S: (asm_calljavafunction): Removed.
+       (asm_calljavafunction2): Renamed to asm_vm_call_method. Pointer to
+       vm_arg block is now in a2. Use new defines.
 
-2005-04-05 22:51  edwin
+2006-03-16 17:22  edwin
 
-       * src/vm/resolve.c: do not use members set by
-         method_descriptor2types in resolve_ functions
+       * doc/stack_frames.txt: Added description of alpha stack frames.
 
-2005-04-05 22:36  edwin
+2006-03-16 17:16  twisti
 
-       * src/vm/resolve.c: call method_descriptor2types
+       * src/vm/vm.c (version): Check if __VERSION__ is defined.
 
-2005-04-05 20:01  christian
+2006-03-16 15:36  twisti
 
-       * src/vm/jit/x86_64/codegen.h: consecutive argument numbering for
-         -si
+       * src/vm/jit/x86_64/md.c (md_cacheflush): New method.
 
-2005-04-05 19:38  christian
+2006-03-16 15:28  edwin
 
-       * src/vm/jit/: reg.h, alpha/codegen.h, mips/codegen.h: new ARGVAR
-         handling for mips and alpha
+       * src/vm/jit/alpha/codegen.c (codegen): Cast to avoid compiler
+       warning.
 
-2005-04-05 17:54  christian
+2006-03-16 15:19  twisti
 
-       * src/vm/jit/stack.c: [no log message]
+       * src/vm/jit/alpha, src/vm/jit/alpha/linux,
+       src/vm/jit/alpha/linux/.cvsignore, src/vm/jit/alpha/freebsd,
+       src/vm/jit/alpha/freebsd/.cvsignore, src/vm/jit/alpha/.cvsignore:
+       Added TAGS.
 
-2005-04-05 17:49  christian
+2006-03-16 15:16  twisti
 
-       * src/vm/jit/codegen.inc: [no log message]
+       * src/vm/jit/alpha/md.c (md_cacheflush, md_icacheflush): New method.
+       * src/vm/jit/alpha/asmpart.S (asm_sync_instruction_cache): Renamed to
+       asm_cacheflush.
+       * src/vm/jit/alpha/patcher.c: Replaced asm_sync_instruction_cache with
+       md_icacheflush.
 
-2005-04-05 17:42  christian
+2006-03-16 14:29  twisti
+
+       * src/vm/jit/i386/md.c (md_cacheflush): New method.
+
+2006-03-16 14:23  twisti
+
+       * src/vm/jit/powerpc, src/vm/jit/powerpc/linux,
+       src/vm/jit/powerpc/linux/.cvsignore, src/vm/jit/powerpc/darwin,
+       src/vm/jit/powerpc/darwin/.cvsignore, src/vm/jit/powerpc/.cvsignore:
+       Added TAGS.
+
+2006-03-16 14:19  twisti
+
+       * src/vm/jit/jit.h (md_cacheflush, md_icacheflush, md_dcacheflush):
+       Added.
+       * src/vm/jit/asmpart.h (asm_sync_instruction_cache): Removed.
+       
+       * src/vm/jit/codegen-common.c (codegen_finish): Call md_cacheflush for
+       the dynamic superinstructions (intrp) and the generated code.
+       
+       * src/vm/jit/powerpc/codegen.c: Use new exception stubs.
+       * src/vm/jit/powerpc/codegen.h (gen_nullptr_check, gen_bound_check):
+       Use new add reference functions.
+       
+       * src/vm/jit/powerpc/md.c (vm/jit/asmpart.h): Added.
+       (md_cacheflush, md_icacheflush, md_dcacheflush): New function.
+       * src/vm/jit/powerpc/patcher.c: Use new cache flush functions.
+
+2006-03-16 14:00  twisti
+
+       * src/cacao/cacao.c (mm/boehm.h, mm/memory.h): Removed.
+
+2006-03-16 13:59  twisti
+
+       * src/vm/jit/intrp/engine.c (USE_spTOS): Define it for __POWERPC__,
+       __POWERPC64__, __SPARC__. We know we need it there.
+
+2006-03-16 13:56  twisti
+
+       * tests/regression/native/Makefile.am (AM_CPPFLAGS): Added OS_DIR.
+
+2006-03-16 12:53  twisti
+
+       * src/vm/jit/tools/Makefile.am, src/vm/jit/verify/Makefile.am,
+       src/vm/jit/loop/Makefile.am, src/vm/jit/profile/Makefile.am,
+       src/cacao/Makefile.am, src/native/tools/Makefile.am,
+       src/native/vm/Makefile.am, src/native/Makefile.am,
+       src/toolbox/Makefile.am, src/mm/Makefile.am, src/cacaoh/Makefile.am
+       (AM_CPPFLAGS): Added OS_DIR.
+
+2006-03-16 12:03  twisti
+
+       * src/vm/jit/alpha/codegen.c: Use new exception stubs.
+       * src/vm/jit/alpha/codegen.h (gen_nullptr_check, gen_bound_check): Use
+       new add reference functions.
+
+2006-03-16 04:38  edwin
+
+       * src/vm/jit/replace.h (RPLPOINT_SBR): Removed obsolete flag constant.
+
+2006-03-16 04:17  edwin
+
+       * src/vm/jit/code.c (code_codeinfo_new): Commented.
+       (code_get_sync_slot_count): Added.
+       (code_get_stack_frame_size): Commented.
+       (code_codeinfo_free): Commented.
+       (code_free_code_of_method): Commented. Some cleanup.
+       
+       * src/vm/jit/code.h (code_get_sync_slot_count): Added.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Use cd->lastmcodeptr to avoid
+       patching over basic block boundaries.
+       * src/vm/jit/x86_64/codegen.c (codegen): Likewise.
+       
+       * src/vm/jit/replace.h (rplpoint): `type` and `flags` added,
+       `hashlink` removed.
+       (sourcestate): Added slots for synchronized methods.
+       
+       * src/vm/jit/replace.c (replace_create_replacement_points): Store
+       basicblock
+       type.
+       (replace_read_executionstate, replace_write_executionstate):
+       Handle 2-word locals. Special handling for BBTYPE_SBR and BBTYPE_EXH
+       blocks.
+       Transfer synchronization slots.
+
+2006-03-16 00:05  edwin
+
+       * src/vm/jit/code.c (code_get_stack_frame_size): Deal with 4/8-byte
+       stackslots.
+       
+       * src/vm/jit/tools/genoffsets.c (main): Offsets of intregs and
+       fltregs.
+       
+       * src/vm/jit/i386/asmpart.S (asm_replacement_out): Renamed regs to
+       intregs. Some cleanup.
+       
+       * src/vm/jit/replace.c (replace_activate_replacement_point)
+       (replace_deactivate_replacement_point): Enabled on x86_64.
+       (replace_read_executionstate, replace_write_executionstate):
+       Deal with 4/8-byte stackslots. Handle float registers.
+       (replace_executionstate_println, replace_sourcestate_println):
+       Print register names where possible.
+       
+       * src/vm/jit/x86_64/md.c (md_patch_replacement_point): Added.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Handle replacement points.
+       Generate replacement-out stubs.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_replacement_out,
+       asm_replacement_in):
+       Added.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/replace.h (executionstate): Separate registers into int
+       and float registers. Some cleanup, use INT_REG_CNT, FLT_REG_CNT
+       macros.
+
+2006-03-15 21:27  edwin
+
+       * src/vm/jit/replace.c (replace_read_executionstate): Commented.
+       (replace_write_executionstate): Likewise, and set new PC here.
+       (replace_me): Target PC is now set in replace_write_executionstate.
+
+2006-03-15 20:53  edwin
+
+       * src/vm/jit/code.h (codeinfo): Changed regalloc to use rplalloc
+       structs.
+       Added fields storing stack slot counts.
+       
+       * src/vm/jit/code.c, src/vm/jit/code.h (code_get_stack_frame_size):
+       Added.
+       
+       * src/vm/jit/replace.c (replace_create_replacement_points): Store full
+       allocation info for locals and stack slots in rplalloc structs. Store
+       number of stack slots.
+       
+       * src/vm/jit/replace.c (replace_read_executionstate): Added.
+       (replace_write_executionstate): Likewise.
+       
+       * src/vm/jit/replace.c (replace_me): Use dump memory for sourcestate.
+       Read an write executionstate. Do actual replace by calling
+       asm_replace_in.
+       
+       * src/vm/jit/replace.c (replace_replacement_point_println)
+       (replace_executionstate_println): Print new fields. Show correct
+       number
+       of stack slots.
+       (replace_sourcestate_println): Added.
+       
+       * src/vm/jit/replace.h (rplalloc): Added.
+       (rplpoint): Changed regalloc fields to use rplalloc structs.
+       (executionstate): Removed saved regs.
+       (sourcestate): Added saved regs.
+       (replace_executionstate_println): Now takes codeinfo* argument.
+       (replace_sourcestate_println): Added.
+
+2006-03-15 20:43  edwin
+
+       * doc/stack_frames.txt: Added arrows indicating increasing
+       addresses/indices.
+
+2006-03-15 20:42  edwin
+
+       * src/vm/jit/asmpart.h (asm_replacement_in): Added prototype.
+
+2006-03-15 20:40  edwin
+
+       * src/vm/jit/i386/asmpart.S (asm_replacement_out): Save all integer
+       registers,
+       add space between stack frame and executionstate to accomodate
+       changing stack
+       frame size.
+       
+       * src/vm/jit/i386/asmpart.S (asm_replacement_in): Added.
+
+2006-03-15 20:38  edwin
+
+       * src/vm/jit/tools/genoffsets.c (main): Added offset of pc and sp
+       in executionstate.
+
+2006-03-15 17:17  twisti
+
+       * src/vm/jit/i386/codegen.c: Use new exception stubs. Don't cast with
+       M_MOV_IMM.
+       * src/vm/jit/i386/codegen.h (M_MOV_IMM, M_IST_IMM, M_IST32_IMM)
+       (M_PUSH_IMM): Added cast.
+       (M_CMP, M_CMP_MEMBASE, M_CMP_IMM_MEMBASE): Added.
+
+2006-03-15 16:36  twisti
+
+       * src/vm/jit/codegen-common.h (branchref): Removed.
+       (codegendata): Removed xboundrefs, xnullrefs, xcastrefs, xstorerefs,
+       xdivrefs and xexceptionrefs. Added exceptionrefs.
+       (codegen_addxboundrefs, codegen_addxcastrefs, codegen_addxdivrefs)
+       (codegen_addxstorerefs, codegen_addxnullrefs)
+       (codegen_addxexceptionrefs): Removed.
+       (codegen_add_arithmeticexception_ref)
+       (codegen_add_arrayindexoutofboundsexception_ref)
+       (codegen_add_arraystoreexception_ref)
+       (codegen_add_classcastexception_ref)
+       (codegen_add_nullpointerexception_ref)
+       (codegen_add_fillinstacktrace_ref): New function.
+       * src/vm/jit/codegen-common.c: Likewise.
+       
+       * src/vm/jit/dseg.h (exceptionref): New structure.
+       
+       * src/vm/jit/x86_64/codegen.c: Use new exception stubs. Don't cast
+       with M_MOV_IMM.
+       * src/vm/jit/x86_64/codegen.h (M_MOV_IMM, M_IMOV_IMM): Added cast.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_inline_fillInStackTrace): Moved.
+       * src/vm/jit/stacktrace.h (STACKTRACE_inline_arithmeticexception)
+       (STACKTRACE_inline_arrayindexoutofboundsexception)
+       (STACKTRACE_inline_arraystoreexception)
+       (STACKTRACE_inline_classcastexception)
+       (STACKTRACE_inline_nullpointerexception)
+       (STACKTRACE_inline_fillInStackTrace): Added functionptr defines.
+       
+       * src/vm/jit/jit.h (branchref): Added.
+
+2006-03-15 12:14  edwin
+
+       * doc/stack_frames.txt: Added slots for synched methods.
+
+2006-03-15 12:04  edwin
+
+       * doc/stack_frames.txt: Added file.
+       
+       * src/vm/jit/code.h (codeinfo): Rearranged fields.
+       
+       * src/vm/jit/i386/md.c, src/vm/jit/i386/asmpart.S,
+       src/vm/jit/replace.c:
+       Comment changes.
+
+2006-03-15 11:38  edwin
+
+       * src/vm/jit/i386/md.c (md_patch_replacement_point): Generalized to
+       activation and deactivation of replacement points.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Prepare machine code for
+       patching replacement points.
+       
+       * src/vm/jit/replace.c, src/vm/jit/replace.h
+       (replace_deactivate_replacement_point): Added.
+       
+       * src/vm/jit/replace.c
+       (replace_replacement_point_println): Print machine code.
+       
+       * src/vm/jit/replace.h (rplpoint): Added `mcode` field.
+
+2006-03-15 11:18  twisti
+
+       * src/vm/jit/i386/codegen.c (GETFIELD, PUTFIELD, PUTFIELDCONST): Use
+       M_ILD32 and M_LLD32 macros.
+       (patcher): Save REG_ITMP3. Don't allocate a codegendata structure,
+       just do it as on Alpha.
+       * src/vm/jit/i386/codegen.h (var_to_reg_lng): Added.
+       (store_reg_to_var_lng): Likewise.
+       (M_ILD32, M_LLD, M_LLD32, M_IST32, M_IST32_IMM, M_LST, M_LST32)
+       (M_LST_IMM, M_LST32_IMM): Likewise.
+       
+       * src/vm/jit/i386/patcher.c: Changed position of return address due to
+       saving of REG_ITMP3.
+       * src/vm/jit/i386/asmpart.S (asm_wrapper_patcher): Changed due to
+       saving of REG_ITMP3.
+
+2006-03-15 10:34  edwin
+
+       * src/vm/jit/replace.c (replace_create_replacement_points): Don't use
+       rd->locals in the interpreter -- it's NULL there.
+
+2006-03-15 05:13  edwin
+
+       * src/vm/jit/codegen-common.c (codegen_finish): Removed a compiler
+       warning.
+
+2006-03-15 05:08  edwin
+
+       * src/vm/jit/replace.h, src/vm/jit/i386/md.c
+       (md_patch_replacement_point):
+       Fixed return type.
+       
+       * src/vm/jit/replace.c (replace_activate_replacement_point): Only call
+       md_patch_replacement_point if ENABLE_JIT is defined.
+
+2006-03-15 04:57  edwin
+
+       * src/vm/jit/replace.c (replace_activate_replacement_point): Do not
+       use
+       the symbol md_patch_replacement_point on platforms where it does not
+       exist, yet.
+
+2006-03-15 04:43  edwin
+
+       * src/vm/jit/replace.h, src/vm/jit/replace.c
+       (replace_activate_replacement_point): Added.
+       (replace_activate): Added prototype.
+       (md_patch_replacement_point): Added prototype.
+       (replace_me): Added.
+       (replace_replacement_point_println): Added.
+       (replace_show_replacement_points): Cleaned up.
+       (replace_executionstate_println): Added.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Generate replacement-out stubs.
+       
+       * src/vm/jit/codegen-common.c (codegen_finish): Resolve replacement
+       points.
+       
+       * src/vm/jit/asmpart.h, src/vm/jit/i386/asmpart.S
+       (asm_replacement_out): Added.
+       
+       * src/vm/method.h (executionstate): Typo fixed.
+       
+       * src/vm/jit/stack.c (src/vm/jit/stack.c): Minor output change.
+       
+       * src/vm/jit/tools/genoffsets.c (executionstate): Added size and
+       offset.
+       
+       * src/vm/jit/i386/md.c (md_patch_replacement_point): Added.
+
+2006-03-15 01:50  edwin
+
+       * src/vm/jit/replace.h, src/vm/jit/replace.c
+       (replace_replacement_info_print): Renamed to
+       replace_show_replacement_points.
+       * src/vm/jit/stack.c: Likewise.
+
+2006-03-15 01:39  edwin
+
+       * src/vm/jit/replace.c, src/vm/jit/replace.h
+       (replace_create_replacement_points): Added.
+       (replace_free_replacement_points): Added.
+       (replace_replacement_info_print): Added.
+       
+       * src/vm/jit/replace.h (rplpoint): Changed fields, made fixed length.
+       
+       * src/vm/jit/code.h (codeinfo): Changed replacement point fields.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Create replacement points.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Use already allocated
+       codeinfo
+       for do-nothing methods.
+       
+       * src/vm/jit/code.c (code_codeinfo_free): Free replacement points.
+       
+       * src/vm/jit/stack.c (show_icmd_method): Print replacement points.
+
+2006-03-15 00:06  edwin
+
+       * src/vm/jit/stack.c, src/vm/jit/stack.h (icmd_print_stack): Renamed
+       to
+       stack_print. Documented.
+       (show_icmd_method, show_icmd_block, show_icmd): Documented.
+       (show_icmd_block): Print basicblock.bitflags.
+       
+       * src/vm/jit/stack.h (MARKREACHED): Mark targets of backward branches
+       as replacement points (BBFLAG_REPLACEMENT)
+
+2006-03-14 23:49  edwin
+
+       * src/vm/jit/jit.h (basicblock): Added `bitflags` field. Note: The
+       flags
+       of this struct should really be cleaned up.
+       
+       * src/vm/jit/jit.h (BASICBLOCK_INIT): Added, so we have a central
+       place
+       where to put initialization of the fields.
+       
+       * src/vm/jit/parse.c (parse): Cleaned up basicblock allocation.
+
+2006-03-14 23:16  edwin
+
+       * src/vm/jit/jit.h (basicblock): Comment.
+
+2006-03-14 23:00  edwin
+
+       * src/vm/jit/parse.c (fillextable): Removed unused label_index.
+       (parse): Likewise.
+       
+       * src/vm/jit/replace.h: Comment moved.
+
+2006-03-14 22:30  edwin
+
+       * src/native/jvmti/jvmti.c (GetMethodLocation): Use the new
+       m->code field to get to the location of the method.
+
+2006-03-14 22:16  edwin
+
+       * src/vm/method.h (methodinfo): Moved `entrypoint` to `codeinfo`.
+       * src/vm/loader.c (load_method): Likewise.
+       
+       * src/vm/loader.c (load_newly_created_array): Use codeinfo.entrypoint.
+       * src/vm/builtin.c (builtin_trace_exception): Likewise. Note:
+       Currently
+       we always use the current codeinfo. This is preliminary.
+       
+       * src/vm/jit/powerpc/codegen.c (codegen): Use cd->code->entrypoint.
+       * src/vm/jit/alpha/codegen.c (createnativestub): Likewise.
+       * src/vm/jit/dseg.c (dseg_resolve_datareferences): Likewise.
+       * src/vm/jit/mips/codegen.c (codegen, createnativestub): Likewise.
+       * src/vm/jit/i386/codegen.c (createnativestub): Likewise.
+       * src/vm/jit/intrp/codegen.c (intrp_codegen, intrp_createnativestub)
+       (createcalljavafunction): Likewise.
+       * src/vm/jit/x86_64/codegen.c (createnativestub): Likewise.
+       
+       * src/vm/jit/intrp/codegen.c (nativecall): Use m->code->entrypoint.
+       
+       * src/vm/jit/codegen-common.h, src/vm/jit/codegen-common.c,
+       src/cacaoh/headers.c (codegen_createnativestub): Now returns
+       the created codeinfo instead of the entrypoint.
+       
+       * src/vm/jit/stacktrace.c (stacktrace_add_method): Find the codeinfo
+       that contains the current PC. Note: This is preliminary. We should
+       find the codeinfo * via the PV of the code containing the PC.
+       
+       * src/vm/jit/jit.c (jit_compile): Use m->code. Create a codeinfo
+       for native stubs and the do-nothing stub
+       
+       * src/vm/jit/codegen-common.c (codegen_finish): Set entrypoint
+       in codeinfo instead of in methodinfo.
+
+2006-03-14 20:59  edwin
+
+       * src/vm/jit/code.c, src/vm/jit/replace.c, src/vm/jit/replace.h:
+       Added GPL header and boilerplate.
+
+2006-03-14 20:57  edwin
+
+       * src/vm/jit/code.h: Added GPL header and boilerplate.
+
+2006-03-14 20:51  edwin
+
+       * src/vm/jit/code.c, src/vm/jit/code.h: Files added.
+       
+       * src/vm/jit/replace.c, src/vm/jit/replace.h: Files added.
+       
+       * src/vm/jit/Makefile.am (code.[ch], replace.[ch]): Added.
+       
+       * src/vm/method.h (methodinfo): Added field `code`. Each method
+       may now have zero or more codeinfo:s associated with it. A
+       codeinfo represents the machine code of a particular version
+       of the compiled method. Note: Some fields in methodinfo that
+       may need to be moved to codeinfo where marked XXX.
+       
+       * src/vm/jit/codegen-common.h (codegendata): Added field `code`.
+       
+       * src/vm/jit/codegen-common.c (codegen_setup): Allocate
+       a new codeinfo.
+       (codegen_finish): Use `code` field of codegendata.
+       (codegen_createnativestub): Likewise.
+       
+       * src/vm/jit/stack.c (show_icmd_method, show_icmd_block):
+       Use `code` field of codegendata.
+       * src/vm/jit/dseg.c (dseg_display): Likewise.
+       * src/vm/jit/jit.c (jit_compile_intern): Likewise. Switch
+       current codeinfo after compilation is complete.
+       
+       * src/cacaoh/headers.c (code_free_code_of_method): Added stub.
+       
+       * src/vm/method.c (method_free): Free codeinfo:s of method.
+       
+       * src/vm/loader.c (load_method): Initialize m->code.
 
-       * src/vm/jit/: jit.c, reg.h, reg.inc: old ARGVAR handling in
-         stack.c eliminated
+2006-03-14 16:40  twisti
 
-2005-04-05 17:26  christian
+       * src/cacao/Makefile.am (ENABLE_STATICVM): Added cacao_LDFLAGS,
+       otherwise the sumbols are not exported.
+       
+       * src/native/include/Makefile.am (ENABLE_STATICVM): Renamed to
+       WITH_STATIC_CLASSPATH.
 
-       * src/vm/jit/: stack.c, i386/codegen.h, x86_64/codegen.h: new
-         ARGVAR Handling in stack.c
+2006-03-14 16:30  twisti
 
-2005-04-05 12:26  edwin
+       * src/vm/jit/stacktrace.c (stacktrace_create): We have to check for an
+       OOM when allocating from the heap. Fixes a crash in Jonas.
 
-       * src/vm/: resolve.c, resolve.h: dont use stack in
-         create_unresolved_ functions if no typeinfo available
+2006-03-14 15:00  edwin
 
-2005-04-05 12:12  edwin
+       * doc/design_onstack_replacement.txt: More design options added.
 
-       * src/vm/: resolve.c, resolve.h: enable the create_unresolved_...
-         functions to work without typeinfo
+2006-03-13 21:26  edwin
 
-2005-04-04 16:59  edwin
+       * design_onstack_replacement.txt: Added file.
 
-       * src/vm/: resolve.c, resolve.h: renamed resolve_class to
-         resolve_class_from_name added unresolved_class and resolve_class
+2006-03-13 11:35  twisti
 
-2005-04-04 16:36  twisti
+       * src/vm/vm.c (vm_create): Only put .jar file into classpath. Fixes
+       startup bug with knopflerfish.
 
-       * src/vm/jit/x86_64/codegen.c: Argument counting more compact.
+2006-03-13 08:02  edwin
 
-2005-04-04 15:05  edwin
+       * src/native/vm/VMClass.c (Java_java_lang_VMClass_getComponentType):
+       Link class before accessing c->vftbl->arraydesc.
 
-       * src/vm/: initialize.c, initialize.h: do not include class.h in
-         initialize.h
+2006-03-13 07:06  edwin
 
-2005-04-04 13:34  christian
+       * src/native/vm/VMClass.c (Java_java_lang_VMClass_getSuperclass): We
+       must not
+       assume that the class is already linked, so we have to resolve the
+       super class
+       reference. This fixes a NPE bug with Jonas.
 
-       * src/vm/jit/stack.c: [no log message]
+2006-03-12 23:23  twisti
 
-2005-04-04 12:39  christian
+       * src/vm/suck.c (suck_start): We really should close class files after
+       reading it.
 
-       * src/: cacao/cacao.c, vm/method.h, vm/statistics.c,
-         vm/statistics.h, vm/jit/codegen.inc, vm/jit/jit.c, vm/jit/lsra.h,
-         vm/jit/lsra.inc, vm/jit/reg.h, vm/jit/reg.inc, vm/jit/stack.c,
-         vm/jit/stack.h, vm/jit/i386/codegen.c, vm/jit/i386/emitfuncs.c,
-         vm/jit/mips/codegen.c: Adress Register File, Neues ARG_VAR
-         Handling, neue LSRA Version
+2006-03-11 21:34  edwin
 
-2005-04-04 12:06  twisti
+       * src/vm/resolve.c (resolve_class_from_typedesc): Safer check for
+       reference types.
 
-       * src/cacao/cacao.c: Call load_class_bootstrap for specific method
-         compilation. This option is mostly used to develop new ports, where
-         calling java code is not yet possible.
+2006-03-11 20:41  edwin
 
-2005-04-04 11:41  twisti
+       * src/vm/jit/codegen-common.c (codegen_finish): When setting the
+       entrypoint of a method, be sure not to overwrite an already set
+       entrypoint.
 
-       * src/native/vm/: VMClass.c, VMClassLoader.c: Forgot to include
-         initialize.h
+2006-03-11 20:34  edwin
 
-2005-04-04 11:31  twisti
+       * src/vm/references.h (IS_XCLASSREF): Commented.
 
-       * src/vm/jit/tools/genoffsets.c: Include all headers explicitly.
+2006-03-11 20:32  edwin
 
-2005-04-04 11:28  twisti
+       * src/vm/references.h (IS_XCLASSREF): Added.
+       (CLASSREF_OR_CLASSINFO_NAME): Added.
 
-       * src/vm/jit/: alpha/Makefile.am, i386/Makefile.am,
-         mips/Makefile.am, powerpc/Makefile.am, x86_64/Makefile.am:
-         offsets.h depends on genoffsets and config.h, all other headers are
-         included in genoffsets.c.
+2006-03-11 20:30  edwin
 
-2005-04-04 11:20  twisti
+       * src/vm/class.c, src/vm/class.h (class_classref_print): Added.
+       (class_classref_println): Added.
 
-       * src/vm/jit/powerpc/asmpart.S: Renamed class_init to
-         initialize_class.
+2006-03-11 16:06  edwin
 
-2005-04-04 00:51  twisti
+       * src/vm/jit/jit.c (jit_compile_intern): Check if the method has been
+       compiled during static class initialization.
 
-       * src/vm/jit/mips/asmpart.S: Renamed class_init to
-         initialize_class.
+2006-03-11 15:03  edwin
 
-2005-04-04 00:48  twisti
+       * src/vm/method.c (vim boilerplate): Added.
 
-       * src/vm/jit/alpha/codegen.c:
-         - -verbosecall bugfix
-         - comment fix
+2006-03-11 15:01  edwin
 
-2005-04-04 00:36  twisti
+       * src/vm/method.c (method_vftbl_lookup): Check ACC_INTERFACE on the
+       class, instead of on the method, where it is not set. Do not check
+       ACC_ABSTRACT here, because non-interface ACC_ABSTRACT methods are
+       looked up just like non-abstract non-interface methods.
 
-       * src/vm/jit/alpha/asmpart.S: Renamed class_init to
-         initialize_class.
+2006-03-10 22:22  twisti
 
-2005-04-03 23:56  twisti
+       * src/native/vm/VMRuntime.c (vm/options.h): Added.
+       (nativeLoad): Print dlerror output when dlopen fails.
 
-       * src/vm/jit/i386/asmpart.S: Renamed class_init to
-         initialize_class.
+2006-03-09 16:13  twisti
 
-2005-04-03 23:48  twisti
+       * autogen.sh: Fixed typo.
 
-       * src/cacao/cacao.c: Renamed class_init to initialize_class.
+2006-03-09 13:51  twisti
 
-2005-04-03 23:44  twisti
+       * src/vm/jit/powerpc/darwin/md-asm.h (asm_calljavafunction): Removed.
+       (asm_calljavafunction_int): Likewise.
+       (asm_calljavafunction2): Likewise.
+       (asm_calljavafunction2int): Likewise.
+       (asm_calljavafunction2long): Likewise.
+       (asm_calljavafunction2float): Likewise.
+       (asm_calljavafunction2double): Likewise.
+       (_exceptionptr): Likewise.
+       (asm_vm_call_method): Define added.
+       (asm_vm_call_method_int): Likewise.
+       (asm_vm_call_method_long): Likewise.
+       (asm_vm_call_method_float): Likewise.
+       (asm_vm_call_method_double): Likewise.
 
-       * src/: vm/jit/jit.c, vm/jit/x86_64/asmpart.S, native/jni.c,
-         native/vm/Field.c, native/vm/VMClass.c,
-         native/vm/VMClassLoader.c: Renamed class_init to
-         initialize_class.
+2006-03-09 13:46  twisti
 
-2005-04-03 23:44  twisti
+       * src/vm/jit/powerpc/patcher.c (patcher_get_putfield): Check for the
+       instruction order on long fields.
 
-       * src/vm/: class.c, class.h, linker.c: Renamed create_classinfo to
-         class_create_classinfo.
+2006-03-09 13:26  twisti
 
-2005-04-03 23:42  twisti
+       * autogen.sh: Check for installed programs and exit if no proper one
+       was found.
+       * src/boehm-gc/autogen.sh: Use the programs found by top-level
+       autogen.
 
-       * src/vm/: loader.c, loader.h: Removed class_init* stuff (now in
-         initialize.[ch]).
+2006-03-08 09:44  twisti
 
-2005-04-03 23:41  twisti
+       * src/native/jni.c (PushLocalFrame): Implemented.
+       (PopLocalFrame): Likewise.
+       (DeleteLocalRef): Walk through all local frames.
+       (NewLocalRef): Allocate a new local frame if the current frame is out
+       of space.
+       (EnsureLocalCapacity): Implemented.
+       * src/vm/jit/codegen-common.c (codegen_finish_native_call): Release
+       all local reference frames.
 
-       * src/vm/builtin.c: Renamed class_init to initialize_class.
+2006-03-07 20:44  twisti
 
-2005-04-03 23:40  twisti
+       * src/native/vm/VMClassLoader.c (nativeGetResources): Check if
+       resource is a directory and don't add it.
 
-       * src/vm/initialize.h: Added comment.
+2006-03-07 19:32  twisti
 
-2005-04-03 23:39  twisti
+       * src/vm/vm.c (usage): Small change.
+       
+       * src/native/vm/VMSystemProperties.c (preInit): Set java.ext.dirs to
+       $JAVA_HOME/jre/lib/ext.
 
-       * src/vm/: initialize.c, initialize.h: Static class initializer
-         functions.
+2006-03-07 18:18  twisti
 
-2005-04-03 23:37  twisti
+       * src/cacaoh/headers.c (intrp_main_stack): Changed type.
 
-       * src/vm/Makefile.am: Added initialize.[ch]
+2006-03-07 17:21  twisti
 
-2005-04-03 18:53  edwin
+       test
 
-       * src/: cacao/cacao.c, native/jni.c, native/native.c,
-         native/vm/VMClass.c, native/vm/VMClassLoader.c,
-         native/vm/VMStackWalker.c, native/vm/VMThread.c,
-         threads/green/threads.c, vm/builtin.c, vm/class.c, vm/class.h,
-         vm/classcache.c, vm/classcache.h, vm/linker.c, vm/loader.c,
-         vm/loader.h, vm/resolve.c, vm/tables.c, vm/jit/parse.c,
-         vm/jit/stacktrace.c, vm/jit/inline/parseXTA.c,
-         vm/jit/verify/typeinfo.c: removed the class hash and all
-         functions identifying classes by name only
+2006-03-07 17:19  twisti
 
-2005-04-03 18:13  twisti
+       test
 
-       * src/: cacaoh/headers.h, native/jni.c, toolbox/util.c,
-         vm/descriptor.c, vm/resolve.c, vm/jit/asmpart.h: Fixed
-         --disable-threads compiling issues (missing header includes).
+2006-03-07 10:48  twisti
 
-2005-04-02 21:33  edwin
+       * src/native/jni.c (_Jv_jni_CallIntMethodA): New function.
+       (CallBooleanMethodA): Implemented.
+
+2006-03-07 10:36  twisti
+
+       * src/vm/string.c (string_java_lang_StringIndexOutOfBoundsException):
+       Added.
+       * src/vm/stringlocal.h: Likewise.
+       
+       * src/vm/exceptions.c
+       (exceptions_new_stringindexoutofboundsexception): New function.
+       (exceptions_throw_stringindexoutofboundsexception): Likewise.
+       * src/vm/exceptions.h: Likewise.
+       
+       * src/native/jni.c (GetStringRegion): Implemented.
+
+2006-03-07 09:40  twisti
+
+       * src/vm/vm.c (_Jv_jvm): Changed type to _Jv_JavaVM.
+       * src/vm/vm.h (_Jv_jvm): Added.
+       
+       * src/native/jni.c (ptr_jvm): Removed.
+       (ptr_env): Likewise.
+       (CallStaticObjectMethodA): Implemented.
+       (GetJavaVM): Return _Jv_jvm as vm.
+       (AttachCurrentThread): Return _Jv_env as env.
+       (GetEnv): Likewise.
+       (JNI_JavaVMTable): Renamed to _Jv_JNIInvokeInterface.
+       (JNI_JNIEnvTable): Renamed to _Jv_JNINativeInterface.
+       (JNI_CreateJavaVM): Allocate a _Jv_JavaVM structure and set it up
+       correctly, this fixes the usage in C++ programs.
+       * src/native/jni.h (_Jv_JavaVM): Added.
+       
+       * src/native/jvmti/jvmti.c: Renamed JNI_JavaVMTable to
+       _Jv_JNIInvokeInterface and JNI_JNIEnvTable to _Jv_JNINativeInterface.
+
+2006-03-06 18:45  christian
+
+       * src/vm/jit/stack.c (analyse_stack): Bugfix for copy elimination.
+
+2006-03-06 13:03  twisti
+
+       * src/vm/jit/powerpc/linux/Makefile.am (LIBS): Added defined empty, as
+       * this makes problems on darwin and actually we do not need to link
+       * the configured libraries into convenience libraries.
+       * src/vm/jit/powerpc/darwin/Makefile.am: Likewise.
+       * src/vm/jit/powerpc/Makefile.am: Likewise.
+       * src/vm/jit/alpha/linux/Makefile.am: Likewise.
+       * src/vm/jit/alpha/Makefile.am: Likewise.
+       * src/vm/jit/alpha/freebsd/Makefile.am: Likewise.
+       * src/vm/jit/tools/Makefile.am: Likewise.
+       * src/vm/jit/verify/Makefile.am: Likewise.
+       * src/vm/jit/mips/linux/Makefile.am: Likewise.
+       * src/vm/jit/mips/Makefile.am: Likewise.
+       * src/vm/jit/mips/irix/Makefile.am: Likewise.
+       * src/vm/jit/loop/Makefile.am: Likewise.
+       * src/vm/jit/inline/Makefile.am: Likewise.
+       * src/vm/jit/allocator/Makefile.am: Likewise.
+       * src/vm/jit/i386/linux/Makefile.am: Likewise.
+       * src/vm/jit/i386/Makefile.am: Likewise.
+       * src/vm/jit/i386/freebsd/Makefile.am: Likewise.
+       * src/vm/jit/schedule/Makefile.am: Likewise.
+       * src/vm/jit/intrp/Makefile.am: Likewise.
+       * src/vm/jit/x86_64/Makefile.am: Likewise.
+       * src/vm/jit/profile/Makefile.am: Likewise.
+       * src/vm/jit/Makefile.am: Likewise.
+       * src/vm/Makefile.am: Likewise.
+       * src/native/tools/Makefile.am: Likewise.
+       * src/native/vm/Makefile.am: Likewise.
+       * src/native/Makefile.am: Likewise.
+       * src/toolbox/Makefile.am: Likewise.
+       * src/mm/Makefile.am: Likewise.
+       * src/threads/native/Makefile.am: Likewise.
+       * src/fdlibm/Makefile.am: Likewise.
+       
+       * src/cacaoh/Makefile.am (INCLUDES): Renamed to AM_CPPFLAGS.
+
+2006-03-06 00:30  twisti
+
+       * src/vm/jit/powerpc/asmpart.S (asm_calljavafunction): Removed.
+       (asm_calljavafunction2): Renamed to asm_vm_call_method.
+
+2006-03-05 23:53  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_calljavafunction): Removed.
+       (asm_calljavafunction2): Renamed to asm_vm_call_method.
+
+2006-03-05 23:35  twisti
+
+       * src/vm/jit/codegen-common.c (codegen_init): Removed
+       asm_calljavafunction.
+       * src/vm/jit/i386/asmpart.S (asm_calljavafunction): Removed.
+       (asm_calljavafunction2): Renamed to asm_vm_call_method.
+
+2006-03-05 23:24  twisti
+
+       * src/vm/vm.c (vm_call_method_intern): Removed.
+       (vm_vmargs_from_valist): Added.
+       (vm_vmargs_from_jvalue): Likewise.
+       (vm_call_method): New function.
+       (vm_call_method_valist): Likewise.
+       (vm_call_method_jvalue): Likewise.
+       (vm_call_method_vmarg): Likewise.
+       (vm_call_method_int): Likewise.
+       (vm_call_method_int_valist): Likewise.
+       (vm_call_method_int_jvalue): Likewise.
+       (vm_call_method_int_vmarg): Likewise.
+       (vm_call_method_long): Likewise.
+       (vm_call_method_long_valist): Likewise.
+       (vm_call_method_long_jvalue): Likewise.
+       (vm_call_method_long_vmarg): Likewise.
+       (vm_call_method_float): Likewise.
+       (vm_call_method_float_valist): Likewise.
+       (vm_call_method_float_jvalue): Likewise.
+       (vm_call_method_float_vmarg): Likewise.
+       (vm_call_method_double): Likewise.
+       (vm_call_method_double_valist): Likewise.
+       (vm_call_method_double_jvalue): Likewise.
+       (vm_call_method_double_vmarg): Likewise.
+       * src/vm/vm.h: Likewise.
+       
+       * src/native/jni.c (_Jv_jni_fill_vmargs_from_vargs): Removed.
+       (_Jv_jni_vmargs_from_args): Likewise.
+       (_Jv_jni_CallObjectMethodA): New function.
+       (_Jv_jni_CallObjectMethod): Use vm_call_method.
+       (_Jv_jni_CallIntMethod): Likewise.
+       (_Jv_jni_CallLongMethod): Likewise.
+       (_Jv_jni_CallFloatMethod): Likewise.
+       (_Jv_jni_CallDoubleMethod): Likewise.
+       (_Jv_jni_CallVoidMethod): Likewise.
+       (_Jv_jni_CallVoidMethodA): Likewise.
+       (_Jv_jni_invokeNative): Likewise.
+       (CallObjectMethodA): Implemented.
+       
+       * src/vm/loader.c (load_class_from_sysloader): Replaced
+       vm_call_method_intern by vm_call_method.
+       (load_class_from_classloader): Likewise.
+       * src/vm/finalizer.c (finalizer_run): Likewise.
+       * src/vm/initialize.c (initialize_class_intern): Likewise.
+       * src/vm/jit/stacktrace.c (stacktrace_inline_fillInStackTrace):
+       Likewise.
+       * src/vm/exceptions.c (throw_exception_exit_intern): Likewise.
+       (new_arrayindexoutofboundsexception): Likewise.
+       * src/vm/properties.c (properties_system_add): Likewise.
+       * src/cacao/cacao.c (setup_debugger_process): Likewise.
+       (getmainclassnamefromjar): Likewise.
+       (main): Likewise.
+       * src/native/vm/VMClassLoader.c (nativeGetResources): Likewise.
+       * src/native/native.c (native_new_and_init): Likewise.
+       (native_new_and_init_string): Likewise.
+       (native_new_and_init_int): Likewise.
+       (native_new_and_init_throwable): Likewise.
+       * src/threads/native/threads.c (threads_init): Likewise.
+       (threads_startup_thread): Likewise.
+       * src/cacaoh/headers.c: Likewise.
+       
+       * src/vm/jit/x86_64/asmpart.S (asm_calljavafunction): Removed.
+       (asm_calljavafunction2): Renamed to asm_vm_call_method.
+       * src/vm/jit/intrp/asmpart.c: Likewise.
+       * src/vm/jit/asmpart.h: Likewise.
+
+2006-03-05 23:05  twisti
+
+       * tests/regression/native/testarguments.c (nlsub): Use %llx on all
+       architectures.
+       (ndsub): Likewise.
+
+2006-03-05 21:54  christian
+
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers):
+       Bugfix and reformatting.
+
+2006-03-05 15:51  twisti
+
+       * src/vm/jit/i386/asmpart.S (asm_calljavafunction2): Pointer to vm_arg
+       block is now in a2. Use new defines.
+
+2006-03-04 18:35  twisti
+
+       * src/vm/jit/alpha/asmpart.S (asm_calljavafunction2): Pointer to
+       vm_arg block is now in a2. Use new defines.
+
+2006-03-04 18:01  twisti
+
+       * src/vm/jit/powerpc/asmpart.S (asm_calljavafunction2): Pointer to
+       vm_arg block is now in a2. Use new defines.
+
+2006-03-04 17:19  twisti
+
+       * src/vm/jit/asmpart.h (ASM_CALLJAVAFUNCTION): Removed.
+       (ASM_CALLJAVAFUNCTION_ADR): Likewise.
+       (ASM_CALLJAVAFUNCTION_INT): Likewise.
+       (ASM_CALLJAVAFUNCTION2): Likewise.
+       (ASM_CALLJAVAFUNCTION2_ADR): Likewise.
+       (ASM_CALLJAVAFUNCTION2_INT): Likewise.
+       (ASM_CALLJAVAFUNCTION2_LONG): Likewise.
+       (ASM_CALLJAVAFUNCTION2_FLOAT): Likewise.
+       (ASM_CALLJAVAFUNCTION2_DOUBLE): Likewise.
+       (asm_calljavafunction2int): Changed signature.
+       (asm_calljavafunction2long): Likewise.
+       (asm_calljavafunction2float): Likewise.
+       (asm_calljavafunction2double): Likewise.
+
+2006-03-04 17:15  twisti
+
+       * src/vm/global.h (jni_callblock): Removed.
+       
+       * src/vm/vm.c (vm/vm.h): Added.
+       (vm_call_method_intern): New function.
+       (vm_call_method_intern_int): Likewise.
+       (vm_call_method): Likewise.
+       (vm_call_method_int): Likewise.
+       (vm_call_method_long): Likewise.
+       (vm_call_method_float): Likewise.
+       (vm_call_method_double): Likewise.
+       * src/vm/vm.h (vm_arg): Structure added.
+       (vm_call_method_intern): New function.
+       (vm_call_method_intern_int): Likewise.
+       (vm_call_method): Likewise.
+       (vm_call_method_int): Likewise.
+       (vm_call_method_long): Likewise.
+       (vm_call_method_float): Likewise.
+       (vm_call_method_double): Likewise.
+       
+       * src/vm/jit/tools/genoffsets.c (vm/vm.h): Added.
+       (sizejniblock): Renamed to sizevmarg.
+       (offjniitemtype): Renamed to offvmargtype.
+       (offjniitem): Renamed to offvmargdata.
+       * src/vm/jit/x86_64/asmpart.S (asm_calljavafunction2): Pointer to
+       vm_arg block is now in a2. Use new defines.
+       
+       * src/vm/jit/stacktrace.c (vm/vm.h): Added.
+       (ASM_CALLJAVAFUNCTION): Replaced with vm_call_method_intern.
+       * src/vm/exceptions.c: Likewise.
+       * src/vm/properties.c: Likewise.
+       * src/vm/loader.c: Likewise.
+       * src/vm/finalizer.c: Likewise.
+       * src/vm/initialize.c: Likewise.
+       * src/cacao/cacao.c: Likewise.
+       * src/native/vm/VMClassLoader.c: Likewise.
+       * src/threads/native/threads.c: Likewise.
+       
+       * src/cacaoh/headers.c (asm_calljavafunction): Removed.
+       (intrp_asm_calljavafunction): Likewise.
+       (vm_call_method_intern): New function.
+       
+       * src/native/jni.c (fill_callblock_from_vargs): Renamed to
+       _Jv_jni_vmargs_from_vargs.
+       (fill_callblock_from_objectarray): Renamed to
+       _Jv_jni_vmargs_from_objectarray.
+       (_Jv_jni_vmargs_from_objectarray): New function.
+       (_Jv_jni_CallVoidMethodA): Likewise.
+       (ASM_CALLJAVAFUNCTION2): Replaced with appropriate vm_call_method
+       function.
+       (NewObjectA): Implemented.
+       (CallVoidMethodA): Likewise.
+       (CallNonvirtualVoidMethodA): Likewise.
+       (CallStaticVoidMethodA): Likewise.
+
+2006-03-03 00:00  twisti
+
+       * src/vm/linker.c (link_class_intern): Handle miranda methods
+       properly.
+       * src/vm/global.h (ACC_MIRANDA): Defined.
+       * src/native/vm/VMClass.c (getDeclaredMethods): Don't return miranda
+       methods.
+
+2006-03-01 17:00  twisti
+
+       * src/vm/options.c: Renamed runverbose to opt_verbosecall.
+       * src/vm/options.h: Likewise.
+       * src/vm/jit/alpha/codegen.c: Likewise.
+       * src/vm/jit/i386/codegen.c: Likewise.
+       * src/vm/jit/intrp/codegen.c: Likewise.
+       * src/vm/jit/mips/codegen.c: Likewise.
+       * src/vm/jit/powerpc/codegen.c: Likewise.
+       * src/vm/jit/x86_64/codegen.c: Likewise.
+       * src/vm/jit/intrp/asmpart.c: Likewise.
+       * src/vm/jit/intrp/dynamic-super.c: Likewise.
+       * src/vm/jit/intrp/java.vmg: Likewise.
+       
+       * src/vm/builtin.c (builtin_trace_exception): Renamed runverbose to
+       opt_verbosecall. Removed stacktrace printing code.
+       * src/vm/exceptions.c (exceptions_handle_exception): Renamed
+       runverbose to opt_verbosecall. Print exception stacktrace when caught.
+       
+       * src/vm/vm.c: Support Sun's commandline options and ignore them if
+       not supported. Reordered options.
+       
+       * src/native/vm/VMObject.c (notify): Removed debug output.
+       (notifyAll): Likewise.
+       (wait): Likewise.
+       * src/native/vm/VMThread.c (suspend): Likewise.
+       (resume): Likewise.
+       (nativeSetPriority): Likewise.
+       (nativeStop): Likewise.
+       (yield): Likewise.
+       
+       * src/native/vm/VMThrowable.c (fillInStackTrace): Renamed par1 to t.
+
+2006-02-23 14:08  twisti
+
+       * src/vm/jit/intrp/dynamic-super.c (disassemble_prim): New function.
+       (dynamic_super_init): Added disassembling of IADD, ILOAD and
+       GETFIELD_INT.
+
+2006-02-22 14:03  twisti
+
+       * src/vm/jit/i386/codegen.c (createnativestub): Renamed _exceptionptr
+       to _no_threads_exceptionptr.
+
+2006-02-22 13:34  twisti
+
+       * src/vm/jit/i386/codegen.c (mm/memory.h): Added.
+
+2006-02-21 16:17  twisti
+
+       * configure.ac (VERSION_CONFIGURE_ARGS, VERSION_CC, VERSION_CFLAGS):
+       Added define.
+       * src/vm/vm.c (version): Print configure options, compiler version and
+       CFLAGS.
+
+2006-02-21 16:06  twisti
+
+       * src/vm/jit/intrp/java.vmg (MULTIANEWARRAY): Use malloc instead of a
+       dynamic-sized array (-fomit-frame-pointer).
+
+2006-02-21 13:43  twisti
+
+       * src/vm/jit/intrp/codegen.c (cacao/cacao.h): Removed.
+       (vm/vm.h): Added.
+       (createnativestub): Replaced ENABLE_STATICVM with
+       WITH_STATIC_CLASSPATH and &env by _Jv_env.
+       
+       * src/vm/jit/intrp/patcher.c: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       * src/vm/jit/intrp/java.vmg: Likewise.
+       
+       * src/vm/vm.c (mm/memory.h): Added.
+       (vm_create): Allocate the main thread interpreter stack on the Java
+       heap.
+
+2006-02-21 13:40  twisti
+
+       * src/vm/jit/jit.c (jit_compile_intern): Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+
+2006-02-21 13:39  twisti
+
+       * src/cacao/cacao.c (main): Added main utf variable for better
+       debugability.
+
+2006-02-21 13:37  twisti
+
+       * src/native/native.c: Small changes.
+
+2006-02-21 13:35  twisti
+
+       * src/vm/loader.c (load_class_from_classloader): Added name
+       java.lang.String variable for better debugability.
+
+2006-02-21 12:41  twisti
+
+       * src/vm/jit/powerpc/asmpart.S: Rewritten for PIC code.
+
+2006-02-21 10:47  twisti
+
+       * src/vm/jit/alpha/asmpart.S: Rewritten for PIC code.
+
+2006-02-21 10:39  twisti
+
+       * src/vm/jit/x86_64/codegen.c (cacao/cacao.h): Removed.
+       (vm/vm.h): Added.
+       (createnativestub): Replaced ENABLE_STATICVM with
+       WITH_STATIC_CLASSPATH and &env by _Jv_env.
+
+2006-02-21 10:25  twisti
+
+       * src/vm/jit/i386/.cvsignore, src/vm/jit/i386/linux/.cvsignore: Added
+       TAGS.
+
+2006-02-21 09:34  twisti
+
+       * src/vm/jit/i386/asmpart.S: Rewritten for PIC code.
+
+2006-02-21 09:31  twisti
+
+       * src/threads/native/threads.c (vm/vm.h): Added.
+       (threads_startup_thread): Compiler warning fix.
+
+2006-02-21 09:25  twisti
+
+       * src/vm/jit/stacktrace.c (stacktrace_getCurrentClassLoader): Renamed
+       to stacktrace_getCurrentClass and it returns the first Java method's
+       class on the stack.
+       * src/vm/jit/stacktrace.h (stacktrace_getCurrentClassLoader):
+       Likewise.
 
-       * src/: cacao/cacao.c, cacaoh/cacaoh.c, cacaoh/headers.c,
-         native/jni.c, native/native.c, native/vm/VMClass.c,
-         native/vm/VMClassLoader.c, native/vm/VMThrowable.c,
-         threads/native/threads.c, vm/builtin.c, vm/class.c, vm/class.h,
-         vm/exceptions.c, vm/linker.c, vm/loader.c, vm/loader.h,
-         vm/resolve.c, vm/string.c, vm/jit/parse.c, vm/jit/stacktrace.c,
-         vm/jit/inline/parseRT.c, vm/jit/inline/parseXTA.c,
-         vm/jit/inline/parseXTA.h, vm/jit/verify/typeinfo.c: no more
-         unloaded classinfos! use references for superclass and
-         superinterfaces until linking
+2006-02-21 09:18  twisti
 
-2005-04-02 19:24  twisti
+       * src/vm/jit/intrp/engine.c (cacao/cacao.h): Removed.
+
+2006-02-21 09:14  twisti
+
+       * configure.ac (AC_CONFIG_FILES): Remvoed ifconv, not yet.
+
+2006-02-21 09:11  twisti
+
+       * configure.ac: Default to AC_ENABLE_SHARED and AC_DISABLE_STATIC.
+       (ifconv): Added.
+       (jni.h): Check for jni.h in GNU Classpath.
+       (static-classpath): Added.
+       
+       * src/vm/vm.c, src/vm/vm.h: New files, contain the JVM startup code.
+       * src/vm/Makefile.am (libvm_la_SOURCES): Added vm.[ch].
+       
+       * src/cacao/cacao.c: Removed JVM startup code.
+       * src/cacao/cacao.h: Removed.
+       * src/cacao/Makefile.am: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       (ENABLE_STATICVM): Build a shared library when not defined.
+       
+       * src/vm/options.c, src/vm/options.h (mm/memory.h, native/jni.h):
+       Added.
+       (native/jni.h): Added.
+       (opt_ind): Renamed to opt_index.
+       (opt_jar, opt_run, opt_method, opt_signature, opt_ifconv): Added.
+       (get_opt): Renamed to options_get.
+       (options_prepare): New method.
+       
+       * src/cacaoh/cacaoh.c (main): Use new option handling.
+       
+       * src/vm/jit/alpha/codegen.c, src/vm/jit/arm/codegen.c,
+       src/vm/jit/i386/codegen.c, src/vm/jit/mips/codegen.c,
+       src/vm/jit/powerpc/codegen.c (cacao/cacao.h): Removed.
+       (vm/vm.h): Added.
+       (createnativestub): Replaced ENABLE_STATICVM with
+       WITH_STATIC_CLASSPATH and &env by _Jv_env.
+       
+       * src/vm/jit/patcher.h, src/vm/jit/alpha/patcher.c,
+       src/vm/jit/arm/patcher.c, src/vm/jit/i386/patcher.c,
+       src/vm/jit/mips/patcher.c, src/vm/jit/powerpc/patcher.c,
+       src/vm/jit/x86_64/patcher.c: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       
+       * src/vm/jit/x86_64/asmpart.S: Rewritten for PIC code.
+       
+       * src/vm/signal.c (cacao/cacao.h): Removed.
+       (vm/vm.h): Added.
+       (signal_handler_sigint): Use vm_* functions.
+       
+       * src/native/native.c: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       (cacao/cacao.h): Removed.
+       (native_resolve_function): Smaller changes.
+       
+       * src/native/vm/VMRuntime.c: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       (cacao/cacao.h): Removed.
+       (vm/vm.h): Added.
+       (execInternal): Removed.
+       (exit): Use vm_shutdown.
+       
+       * src/native/native.h: Replaced ENABLE_STATICVM by
+       WITH_STATIC_CLASSPATH.
+       * src/native/Makefile.am: Likewise.
+       * src/native/vm/VMSystemProperties.c: Likewise.
+       
+       * src/threads/native/threads.c (cacao/cacao.h): Removed.
+       
+       * src/native/jni.h: Removed our JNI stuff and include GNU Classpath's.
+       * src/native/jni.c: Adapt to the new jni.h header.
+       (Release<type>ArrayElements): Copy correct element type.
+       (Get<type>ArrayRegion): Likewise.
+       (Set<type>ArrayRegion): Likewise.
+
+2006-02-20 23:35  twisti
+
+       * src/vm/global.h: Sorted java_<type>array definitions.
+
+2006-02-20 23:31  twisti
+
+       * src/vm/linker.c (link_class_intern): Comment reformatted.
+
+2006-02-20 15:19  twisti
+
+       * src/vm/jit/intrp/engine.c (USE_spTOS): Disable per default.
+
+2006-02-20 14:08  twisti
+
+       * src/vm/classcache.c (classcache_new_name): Keep c89 compilers happy.
+
+2006-02-19 22:27  christian
+
+       * src/vm/jit/jit.h: added define STKEEP
+       
+       * src/vm/jit/simplereg.c (reg_free_tmp_func): SAVEDTMP and TMPARG
+       flags are not cleared anymore from Stackslots.
+       (reg_alloc_dup): TEMPVARs are not reused as SAVEDVARs anymore. This
+       has to be checked for conflicts.
+       (reg_mark_copy): Added. TEMPVAR Destination Stackslots are marked here
+       with STCOPY, if they use a duplicated register/memory location. Not
+       reused register/memory locations of TEMPVAR source Stacklots are freed
+       again.
+       (allocate_scratch_registers): ICMD_DUPx and ICMD_SWAP use now the new
+       reg_mark_copy.
+
+2006-02-16 19:39  christian
+
+       * src/vm/jit/stack.h (COPY): Prevent setting varkind to STACKVAR for
+       stackslots copied by DUPx and SWAP.
+       (DUP) Likewise.
+       * src/vm/jit/stack.c (analyse_stack): Copy elimination and needed
+       conflict resolution was implemented as
+       described in the CACAO paper. As "potential exception throwing
+       instruction" for now only INVOKE*s are
+       regarded. Conflict resolution over DUPx and SWAP should be refined to
+       be less conservative.
+       * src/vm/jit/jit.c (jit_init): Stackreq for JAVA_IINC is set to 0
+       again, since no dummy stackslot is
+       needed anymore for conflict resolution with XSTORE.
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Reuse unused
+       float and int argument registers
+       for interfaces, too.
+       (reg_free_temp): Regard the new stackslot flag STCOPY, before freeing
+       a register/memory location.
+       (reg_alloc_dup): New function to allocate, if possible, the same
+       register/memory location for stackslot
+       copied by DUPx and SWAP.
+       (allocate_scratch_registers): The new function reg_alloc_dup is used
+       now for allocation at ICMD_DUPx and
+       ICMD_SWAP, if possible.
+       * src/vm/jit/jit.h: Added STCOPY as stackslot flag to mark
+       simultanously live stackslots with same
+       register after DUPx and SWAP.
+       * doc/stack.txt: Updated invariants to show the change with IINC (no
+       dummy stacklot anymore).
+
+2006-02-14 20:27  edwin
+
+       * src/native/jni.c (_Jv_jni_invokeNative): Cleanup.
+       
+       * src/native/jni.c (Changes): Added my name.
+       
+       * src/native/jni.c (vim boilerplate): Added.
+
+2006-02-14 20:10  edwin
+
+       * src/native/jni.c (_Jv_jni_invokeNative): Look up _all_ instance
+       methods
+       in the vftbl.
+
+2006-02-14 20:09  edwin
+
+       * src/vm/linker.c (link_class_intern): Do not override
+       package-private methods
+       from other packages.
+       
+       * src/vm/linker.c (vim boilerplate): Added.
 
-       * configure.in:
-         - map alphaev56 cpu to alpha
-         - bugfix: removed --{en,dis}able-load-library configure options,
-           this causes a bug in Double.<clinit> since initIDs() is in the if
-         statement
+2006-02-14 15:53  edwin
 
-2005-04-02 15:54  edwin
+       * src/vm/classcache.c, src/vm/classcache.h: Merge cache entries when
+       they are resolved to the same class.
 
-       * src/vm/: loader.c, jit/verify/typeinfo.c: started changing
-         constant pool to constant_classrefs
+2006-02-14 15:34  edwin
 
-2005-04-02 12:07  edwin
+       * src/vm/utf8.c, src/vm/utf8.h (utf_full_hashkey): Added.
 
-       * src/: vm/class.h, vm/classcache.c, vm/linker.c, vm/loader.c,
-         vm/method.h, vm/jit/alpha/codegen.c, vm/jit/i386/codegen.c,
-         vm/jit/mips/codegen.c, vm/jit/powerpc/codegen.c,
-         vm/jit/verify/typecheck.c, vm/jit/x86_64/codegen.c,
-         native/native.c, native/vm/VMClass.c: changed exception types and
-         innerclass references to classref_or_classinfo
+2006-02-14 11:01  twisti
 
-2005-04-02 04:05  edwin
+       * configure.ac (AC_INIT): Changed version number to 0.95+cvs.
+       (CFLAGS): Changed optimization back to -O0.
 
-       * src/vm/: loader.c, references.h, resolve.c, resolve.h,
-         jit/codegen.inc, jit/parse.c, jit/inline/inline.c,
-         jit/inline/parseRT.c, jit/inline/parseXTA.c: removed "class"
-         field in constant_FMIref
+2006-02-14 10:30  twisti
 
-2005-04-02 03:15  edwin
+       * ChangeLog: Updated for release 0.95.
 
-       * src/native/vm/VMClassLoader.c: fixed segfault in defineClass
+2006-02-14 10:14  twisti
 
-2005-04-02 02:46  edwin
+       * configure.ac: Updated version to 0.95, set optimization level to
+       -O2, some indent changes.
+       * ChangeLog-2005: Removed 2006 entries.
 
-       * src/cacaoh/headers.c: classinfo: changed type of super and
-         interfaces to classref_or_classinfo
+2006-02-14 01:10  twisti
 
-2005-04-02 02:41  edwin
+       * src/vm/jit/profile/profile.c (profile_thread): Fixed compiler
+       warning.
+
+2006-02-14 01:05  twisti
+
+       * src/vm/jit/intrp/codegen.c (createcompilerstub): Store the
+       methodinfo pointer in the same place as in the methodheader for
+       compiled methods.
+
+2006-02-14 00:41  twisti
+
+       * src/vm/jit/x86_64/codegen.c (createcompilerstub): Store the
+       methodinfo pointer in the same place as in the methodheader for
+       compiled methods.
+
+2006-02-14 00:33  twisti
 
-       * src/: native/jni.c, native/native.c, native/vm/VMClass.c,
-         vm/class.c, vm/class.h, vm/classcache.c, vm/descriptor.c,
-         vm/linker.c, vm/loader.c, vm/loader.h, vm/method.c, vm/resolve.c,
-         vm/jit/inline/parseRT.c, vm/jit/inline/parseRTstats.c,
-         vm/jit/inline/parseXTA.c, vm/jit/verify/typecheck.c,
-         vm/jit/verify/typeinfo.c, vm/jit/verify/typeinfo.h: classinfo:
-         changed type of super and interfaces to classref_or_classinfo fixed
-         some warnings
+       * contrib/svn2cl.xsl: New file.
+       * THIRDPARTY (contrib/svn2cl.xsl): Added copyright message.
 
-2005-04-01 23:24  edwin
+2006-02-14 00:05  twisti
+
+       * NEWS: Updated 0.95 release notes.
+
+2006-02-14 00:03  twisti
 
-       * src/vm/jit/: parse.c, parse.h, inline/parseXTA.c: moved
-         descriptor2typesL to jit/inline/parseXTA.c
+       * src/vm/loader.c (load_field): Removed f->xta.
+       
+       * src/vm/class.h (vm/method.h): Added.
+       (vm/jit/inline/sets.h): Removed.
+       
+       * src/vm/method.h (vm/jit/inline/parseXTA.h): Removed.
+       
+       * src/vm/field.h (vm/jit/inline/parseXTA.h): Likewise.
+       (fieldinfo): Removed member xta.
+       
+       * src/lib/Makefile.am (EXTRA_DIST): Fixed typo.
 
-2005-04-01 23:19  edwin
+2006-02-14 00:01  twisti
 
-       * src/vm/: method.c, method.h, jit/jit.c, jit/parse.c, jit/parse.h,
-         jit/alpha/codegen.c, jit/i386/codegen.c, jit/inline/inline.c,
-         jit/inline/parseRT.c, jit/inline/parseXTA.c, jit/mips/codegen.c,
-         jit/powerpc/codegen.c, jit/x86_64/codegen.c: changed
-         descriptor2types to parsed descriptors and moved it to method.c
+       * src/vm/jit/inline/sets.c, src/vm/jit/inline/parseRTstats.c,
+       src/vm/jit/inline/parseRT.c, src/vm/jit/inline/parseRTflags.h,
+       src/vm/jit/inline/parseRTprint.h, src/vm/jit/inline/sets.h,
+       src/vm/jit/inline/parseRTstats.h, src/vm/jit/inline/parseRT.h,
+       src/vm/jit/inline/parseXTA.c, src/vm/jit/inline/parseXTA.h: Removed.
 
-2005-04-01 22:57  edwin
+2006-02-13 23:45  twisti
 
-       * src/native/: jni.c, native.c, vm/Field.c, vm/VMClass.c: switched
-         JNI to parsed descriptors
+       * src/vm/class.c (class_findmethod_approx): Removed.
+       * src/vm/class.h (class_findmethod_approx): Likewise.
+       (class_resolvemethod_approx): Likewise.
 
-2005-04-01 22:56  edwin
+2006-02-13 23:16  edwin
 
-       * src/vm/: descriptor.c, descriptor.h, global.h, linker.c,
-         loader.c, loader.h, resolve.c, resolve.h, jit/verify/typeinfo.c:
-         removed old descriptor parsing functions added declared type in
-         typedesc rearranged PRIMITIVETYPE_ constants
+       * NEWS: Added JNI method resolution fix.
 
-2005-04-01 18:53  edwin
+2006-02-13 18:55  twisti
 
-       * src/vm/: Makefile.am, access.h, class.c, class.h, classcache.c,
-         classcache.h, descriptor.c, descriptor.h, exceptions.h, field.h,
-         global.h, linker.c, linker.h, loader.c, loader.h, method.c,
-         method.h, references.h, resolve.c, resolve.h, stringlocal.h,
-         utf8.h, jit/codegen.inc.h, jit/jit.h, jit/stack.c, jit/stack.h,
-         jit/inline/parseXTA.h, jit/inline/sets.c, jit/inline/sets.h,
-         jit/tools/genoffsets.c, jit/verify/typecheck.c,
-         jit/verify/typeinfo.c, jit/verify/typeinfo.h: extended type
-         system to use symbolic references introduce pre-parsed descriptors
-         cleaned up headers made classcache thread-safe
+       * src/vm/method.c (assert.h): Added.
+       (vm/linker.h): Likewise.
+       (vm/jit/methodheader.h): Likewise.
+       (method_vftbl_lookup): New method.
+       
+       * src/vm/method.h (vm/linker.h): Added.
+       (method_vftbl_lookup): New method.
+       
+       Fixes bug #17 and #18.
+       * src/native/jni.c: Complete rewrite of Call*Method code.
 
-2005-04-01 15:31  twisti
+2006-02-13 10:53  twisti
 
-       * src/vm/jit/mips/asmpart.S:
-         - added asm_calljavafunction_int
-         - call proper class load/link functions
-         - set the noreorder/reorder pragmas on better positions
+       * src/vm/utf8.c (utf_display): Some reformatting.
+       (utf_display_classname): Likewise.
 
-2005-04-01 15:28  twisti
+2006-02-13 00:12  twisti
 
-       * src/vm/jit/x86_64/codegen.c: Patched back in the s1 == REG_ITMP1
-         (former d == REG_ITMP3) optimization.
+       * src/vm/jit/mips/codegen.c (createcompilerstub): Store the methodinfo
+       pointer in the same place as in the methodheader for compiled methods.
 
-2005-04-01 15:20  twisti
+2006-02-12 23:43  twisti
 
-       * src/vm/jit/alpha/codegen.c: CHECKCAST bugfix.
+       * src/vm/jit/alpha/md.c (md_assembler_get_patch_address): New method.
+       (md_codegen_findmethod): Use assert's directly.
+       
+       * src/vm/jit/mips/md.c (md_assembler_get_patch_address): Likewise.
+       (md_codegen_findmethod): Likewise.
+       
+       * src/vm/jit/alpha/codegen.c (createcompilerstub): Store the
+       methodinfo pointer in the same place as in the methodheader for
+       compiled methods and pass the pointer in REG_ITMP1.
+       
+       * src/vm/jit/alpha/md-asm.h (mptr): Defined.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_call_jit_compiler): methodinfo
+       pointer is passed via itmp1. Use md_assembler_get_patch_address to
+       get the patch address.
+       (asm_calljavafunction, asm_calljavafunction2): Pass methodinfo pointer
+       via itmp1.
 
-2005-04-01 15:10  twisti
+2006-02-12 23:22  twisti
 
-       * src/vm/jit/i386/codegen.c: CHECKCAST bugfix.
+       * src/vm/jit/powerpc/codegen.c (createcompilerstub): Store the
+       methodinfo pointer in the same place as in the methodheader for
+       compiled methods.
+       
+       * src/vm/jit/powerpc/asmpart.S (asm_call_jit_compiler): methodinfo
+       pointer is passed via itmp1.
+       (asm_calljavafunction, asm_calljavafunction2): Pass methodinfo pointer
+       via itmp1.
 
-2005-04-01 15:00  twisti
+2006-02-12 22:08  edwin
 
-       * src/vm/jit/powerpc/asmpart.S:
-         - added asm_calljavafunction_int
-         - call proper class load/link functions
+       * src/threads/native/threads.c (threads_dump): Removed unused
+       variable 'ee'.
 
-2005-04-01 13:23  twisti
+2006-02-12 21:57  edwin
 
-       * src/vm/jit/x86_64/codegen.c:
-         - fixed CHECKCAST bug
-         - align stack to 16-byte only in non-leafmethods (this saves some
-           stack frames)
+       * src/native/vm/VMClass.c (Java_java_lang_VMClass_getDeclaredMethods):
+       Cast to java_lang_Class in order to avoid compiler warning.
+       
+       * src/native/vm/VMClass.c (Changes): Added my name.
+       
+       * src/native/vm/VMClass.c (vim biolerplate): Added.
 
-2005-04-01 10:42  twisti
+2006-02-12 21:47  edwin
 
-       * src/native/vm/VMClass.c: Arghhh, small type in #if.
+       * src/threads/native/threads.c (allocLockRecordSimple): Fixed
+       declaration
+       after code error.
 
-2005-03-31 21:29  twisti
+2006-02-12 16:28  twisti
 
-       * src/native/vm/VMClassLoader.c:
-         - defineClass: implemented (instead of calling the JNI function,
-           this one is called more often)
-         - loadClass: some changes (not finished)
+       * src/vm/jit/i386/codegen.c (createcompilerstub): Store the
+       methodinfo* in the same place as in the methodheader for compiled
+       methods.
 
-2005-03-31 21:27  twisti
+2006-02-12 16:24  edwin
 
-       * src/native/vm/VMClass.c:
-         - forName: just return NULL, to use classpath default implementation
-         - isAssignableFrom: use builtin function instead of JNI
-         - isInstance: use builtin function instead of JNI
-         - loadArrayClass: implemented
+       * NEWS: Added directory check bugfix.
 
-2005-03-31 21:23  twisti
+2006-02-12 16:10  edwin
 
-       * src/native/jni.c: Call native functions (instead the other way
-         around) for: DefineClass, IsAssignableFrom, IsInstanceOf
+       * NEWS: Added two bugfixes.
 
-2005-03-31 21:18  twisti
+2006-02-12 16:02  edwin
 
-       * tests/native/: Makefile.am, checkjni.c, checkjni.java: Initial
-         JNI test code.
+       * src/vm/loader.c, src/vm/loader.h (vim boilerplate): Added.
 
-2005-03-31 17:50  twisti
+2006-02-12 13:11  twisti
 
-       * src/vm/linker.c: Fixed bug in adding interface methods to
-         abstract classes (don't add <clinit> and <init> methods).
+       * src/vm/zip.c (zip_open): Don't add directories to the zipfile
+       hashtable. We use the trailing `/' to identify a directory (i hope
+       that's correct).
 
-2005-03-31 16:49  twisti
+2006-02-12 12:59  christian
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - call proper class load/link functions
-         - return NULL on exception in asm_calljavafunction*
+       * src/vm/jit/x86_64/md-abi.c (md_param_alloc): Regard use of A0 for
+       returning float values.
+
+2006-02-12 02:18  edwin
+
+       * src/native/vm/VMClassLoader.c (vim boilerplate): Added.
+
+2006-02-12 02:17  edwin
 
-2005-03-31 11:52  christian
+       * src/vm/classcache.c (classcache_store): Made classcache_store
+       idempotent.
+       
+       * src/native/vm/VMClassLoader.c
+       (Java_java_lang_VMClassLoader_defineClass):
+       Store defined class with classcache_store instead of just with
+       classcache_store_defined, so it an initiating loader is recorded for
+       the
+       class. This should solve problems with classes that are defined
+       outside
+       of a loadClass context (e.g. by java.lang.reflect.Proxy).
 
-       * src/vm/jit/x86_64/emitfuncs.c: shift bug finaly fixed
+2006-02-12 00:30  twisti
 
-2005-03-30 22:32  twisti
+       * src/native/vm/VMClass.c (getDeclaredMethods): Set the method's class
+       in java.lang.reflect.Method.
+       
+       * src/native/vm/Method.c (toolbox/logging.h, vm/jit/stacktrace.h):
+       Removed.
+       
+       * src/native/vm/VMSystem.c (identityHashCode): Use casts.
 
-       * src/mm/: boehm.c, boehm.h: Warning fixes.
+2006-02-12 00:25  twisti
 
-2005-03-30 22:20  twisti
+       * src/vm/exceptions.c, src/vm/exceptions.h
+       (exceptions_throw_nosuchmethoderror): New method.
 
-       * src/native/nativetable.inc:
-         - added nativeGetResources
-         - fix for defineClass
+2006-02-11 21:25  christian
 
-2005-03-30 22:18  twisti
+       * src/vm/jit/stack.h (COPY) All copied stackslots set to TEMPVAR.
+       This prevents conflicts with LOCALVAR
+       and
+       (DUP) Likewise.
+       STACKVARS.
 
-       * src/vm/jit/alpha/asmpart.S:
-         - added asm_calljavafunction_int
-         - call proper class load/link functions
+2006-02-07 23:18  edwin
 
-2005-03-30 22:18  twisti
+       * src/vm/jit/stack.h (TYPE_VERIFYERROR): Converted most of body to a
+       function.
+       
+       * src/vm/exceptions.c, src/vm/exceptions.h
+       (exceptions_throw_verifyerror_for_stack): Added.
+       
+       * src/vm/exceptions.c, src/vm/exceptions.h (vim boilerplate): Added.
 
-       * src/vm/jit/stack.c: Two ICMD_PUT{STATIC,FIELD}CONST bugfixes.
+2006-02-07 21:27  edwin
 
-2005-03-30 22:14  twisti
+       * src/vm/jit/stack.h (vim boilerplate): Fixed.
 
-       * src/vm/jit/i386/asmpart.S: Call proper class load/link functions.
+2006-02-07 21:15  twisti
 
-2005-03-30 22:08  twisti
+       * NEWS: Added some stuff.
 
-       * src/vm/jit/verify/typeinfo.c: Call proper class load/link
-         functions.
+2006-02-07 17:28  edwin
 
-2005-03-30 22:08  twisti
+       * src/vm/jit/intrp/codegen.c (createcalljavafunction):
+       Removed t_inlining_globals.
 
-       * src/vm/jit/inline/parseXTA.h: Moved LAZYLOADING* from loader.h
+2006-02-07 17:22  edwin
 
-2005-03-30 22:07  twisti
+       * src/vm/jit/codegen-common.c, src/vm/jit/codegen-common.h
+       (codegen_setup):
+       Removed t_inlining_globals argument.
+       
+       * src/vm/jit/codegen-common.c (codegen_finish): Prepared for inlined
+       line
+       number tables. References with line number <-3 will not be relocated.
+       
+       * src/vm/jit/codegen-common.c (codegen_createnativestub):
+       Removed t_inlining_globals and inlining_setup.
+       
+       * src/vm/jit/codegen-common.h (Changes): Added my name to 'Changes'.
+       
+       * src/vm/jit/inline/inline.c, src/vm/jit/inline/inline.h: Ripped out
+       old
+       inliner.
+       
+       * src/vm/jit/jit.c: Removed inlining headers.
+       
+       * src/vm/jit/jit.c (INLINE_GOTO): Added instruction name to table.
+       
+       * src/vm/jit/jit.c (jit_compile_intern): Removed t_inlining_globals
+       argument.
+       
+       * src/vm/jit/codegen-common.c, src/vm/jit/codegen-common.h,
+       src/vm/jit/inline/inline.c, src/vm/jit/inline/inline.h (vim
+       boilerplate):
+       Added.
 
-       * src/vm/jit/jit.c: Removed unnecessary stdlib.h include.
+2006-02-07 16:52  edwin
 
-2005-03-30 22:06  twisti
+       * src/vm/jit/i386/codegen.c (codegen): Prepared for inlining. The
+       icmds
+       ICMD_INLINE_START, ICMD_INLINE_END, ICMD_INLINE_GOTO were
+       implemented, and
+       at the start of exception handlers the indepth is no longer assumed
+       to be 1.
 
-       * src/vm/: utf8.c, utf8.h: Added
-         utf_java_lang_NoClassDefFoundError: : required in native vm class
-         loading functions.
+2006-02-07 16:47  edwin
 
-2005-03-30 22:05  twisti
+       * src/vm/jit/jit.h (Changes): Fixed tabs.
 
-       * src/vm/global.h: Removed CLASS_IS_ARRAY macro.x
+2006-02-06 21:06  twisti
 
-2005-03-30 22:05  twisti
+       * src/threads/native/threads.c, src/threads/native/threads.h
+       (sleepThread): Renamed to thread_sleep.
 
-       * src/vm/linker.c: Link primitive type wrapper classes in
-         linker_init.
+2006-02-06 21:01  twisti
 
-2005-03-30 22:04  twisti
+       * src/cacao/cacao.c (vm/jit/profile.h): Changed to
+       vm/jit/profile/profile.h.
+       (main): profile_init and profile_start_thread calls added.
 
-       * src/vm/loader.c: Load primitive type wrapper classes in
-         loader_init.
+2006-02-06 18:50  twisti
 
-2005-03-30 22:03  twisti
+       * configure.ac (AC_CONFIG_FILES): Added src/vm/jit/profile/Makefile.
 
-       * src/vm/loader.h: Moved LAZYLOADING* to xta header.
+2006-02-06 18:49  twisti
 
-2005-03-30 21:30  twisti
+       * src/vm/jit/Makefile.am (DIST_SUBDIRS): Added profile.
+       (PROFILE_LIB): Added.
+       (PROFILE_SOURCES): Removed.
 
-       * src/vm/: class.c, class.h: Added
-         class_java_lang_NoClassDefFoundError: required in native vm class
-         loading functions.
+2006-02-06 18:48  twisti
 
-2005-03-30 21:28  twisti
+       * src/vm/jit/profile/profile.c (profile_init): New method.
+       (profile_thread): Likewise.
+       (profile_start_thread): Likewise.
+       * src/vm/jit/profile/profile.h (profile_init): Added.
+       (profile_start_thread): Likewise.
+       * src/vm/jit/profile/Makefile.am: New file.
+       * src/vm/jit/profile/.cvsignore: Likewise.
 
-       * src/native/vm/: VMClass.c, VMClassLoader.c, VMThrowable.c: Use
-         proper class load and link functions.
+2006-02-06 18:34  twisti
 
-2005-03-30 21:27  twisti
+       * src/vm/jit/profile.h: Moved to src/vm/jit/profile/.
 
-       * src/native/native.c:
-         - proper link_class call
-         - moved primitive wrapper type loading/linking to
-         {loader,linker}_init
+2006-02-06 18:33  twisti
 
-2005-03-30 21:16  twisti
+       * src/vm/jit/profile.c: Moved to src/vm/jit/profile/.
+       * src/vm/jit/profile: Added.
 
-       * src/native/jni.c: Set classloader in DefineClass.
+2006-02-06 18:32  twisti
 
-2005-03-30 21:12  twisti
+       * src/vm/jit/profile: Ooops.
 
-       * src/mm/memory.h: Forward typedef dumpblock and dumpinfo.
+2006-02-06 18:31  twisti
 
-2005-03-30 18:47  twisti
+       * src/vm/jit/profile.c: Moved to src/vm/jit/profile/.
 
-       * src/: vm/builtin.c, vm/builtin.h, vm/class.c, vm/linker.c,
-         vm/linker.h, vm/loader.c, vm/loader.h, vm/resolve.c, vm/string.c,
-         vm/utf8.c, vm/utf8.h, vm/jit/parse.c, cacao/cacao.c,
-         cacaoh/cacaoh.c, threads/native/threads.c: Use proper class load
-         and link functions.
+2006-02-06 18:14  twisti
 
-2005-03-30 18:47  twisti
+       * src/vm/jit/allocator/Makefile.am: Use tabs instead of space.
+       (INCLUDE): Renamed to AM_CPPFLAGS.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         - added new_internalerror (TODO: use get_variable_message_length, if
-           i get some time for it...)
-         - use proper class load and link functions
+2006-02-06 08:22  edwin
 
-2005-03-30 18:44  twisti
+       * doc/Makefile.am (EXTRA_DIST): Added inlining_stacktrace.txt and
+       native_threads.txt.
 
-       * src/native/jni.c: Class loading and linking changes (use proper
-         functions).
+2006-02-06 06:49  edwin
 
-2005-03-30 14:55  twisti
+       * src/threads/native/threads.c: Minor cleanup.
 
-       * src/vm/jit/i386/asmpart.S: Removed deprecated .globl defines:
-         asm_builtin_checkcast, asm_builtin_anewarray,
-         asm_builtin_newarray_array
+2006-02-06 06:46  edwin
 
-2005-03-30 14:55  twisti
+       * src/threads/native/threads.c: Uncuddled `else`s and other cleanup.
 
-       * src/vm/jit/x86_64/asmpart.S: Removed unused .globl defines (from
-         i386): asm_builtin_anewarray, asm_builtin_newarray_array,
-         asm_builtin_arrayinstanceof
+2006-02-06 06:16  edwin
 
-2005-03-30 14:54  twisti
+       * doc/inlining_stacktrace.txt: Clarified, added entry after the
+       inlined body
+       for the rest of the line after the call.
 
-       * src/vm/jit/mips/asmpart.S: Removed deprecated .globl defines:
-         asm_builtin_trace, asm_builtin_exittrace
+2006-02-06 05:00  edwin
 
-2005-03-30 14:53  twisti
+       * src/vm/jit/i386/machine-instr.h (compare_and_swap): Commented.
 
-       * src/vm/jit/alpha/asmpart.S: Removed deprecated .globl defines:
-         asm_builtin_checkcast, asm_builtin_trace, asm_builtin_exittrace
+2006-02-06 04:50  edwin
 
-2005-03-30 14:51  twisti
+       * doc/native_threads.txt: Added.
 
-       * src/vm/jit/asmpart.h: Removed deprecated prototypes.
+2006-02-06 04:46  edwin
 
-2005-03-30 14:32  twisti
+       * src/threads/native/threads.c (allocLockRecordPool): Relink the free
+       list
+       of lock records when reusing a pool from the global_pool. This avoids
+       cross-linking of lock record owned by different threads, and hopefully
+       fixes our long-standing deadlock problem.
+       
+       * src/threads/native/threads.c (allocLockRecordSimple,
+       recycleLockRecord)
+       (initObjectLock): Temporarily added assertions to shake out possible
+       further bugs in the free list handling.
+       
+       * src/threads/native/threads.c (monitorEnter, monitorExit): Commented.
+       
+       * src/threads/native/threads.c (Changes): Added my name to 'Changes'.
+       
+       * src/threads/native/threads.c (vim boilerplate): Added.
 
-       * src/cacaoh/headers.c:
-         - added asm_builtin_new (how did this work?)
-         - include proper headers
-         - changed asmpart function defines
+2006-02-06 01:28  edwin
 
-2005-03-30 12:24  twisti
+       * src/vm/jit/stacktrace.c (stacktrace_add_method_intern): Added.
+       (stacktrace_add_method): Documented. Now uses
+       stacktrace_add_method_intern.
+       (stacktrace_getCurrentClassLoader): Documented.
+       (stacktrace_dump_trace): Removed unused variable.
+       (Changes): Added my name to 'Changes'.
 
-       * src/native/native.h: Added proper header includes.
+2006-02-06 01:08  edwin
 
-2005-03-30 12:23  twisti
+       * src/vm/jit/verify/typecheck.c (verify_basic_block): Teach the
+       verifier
+       about the new inline instructions ICMD_INLINE_START, ICMD_INLINE_END,
+       and ICMD_INLINE_GOTO.
 
-       * src/native/native.c: Removed ProtectionDomain stuff, this is done
-         via gnu classpath.
+2006-02-06 01:02  edwin
 
-2005-03-30 12:18  twisti
+       * src/vm/jit/stack.c (analyse_stack): Set bptr->stack for each visited
+       block.
+       (show_icmd): Implemented printing of new inline instructions.
 
-       * src/vm/: loader.c, loader.h: Removed ProtectionDomain stuff, this
-         is done through gnu classpath.
+2006-02-06 00:02  edwin
 
-2005-03-30 12:03  twisti
+       * src/vm/jit/allocator/simplereg.c (ICMD_INLINE_GOTO): Added.
+       (Changes): Added my name to 'Changes'.
+       (vim boilerplate): Added.
 
-       * src/vm/: utf8.c, utf8.h: Added: utf_strcat_classname
+2006-02-05 23:34  edwin
 
-2005-03-30 11:55  twisti
+       * src/vm/jit/allocator/lsra.c, src/vm/jit/allocator/lsra.h (lsra,
+       lsra_init):
+       Removed t_inlining_globals argument.
+       (Changes): Added my name to 'Changes'.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/jit.c (lsra): Removed t_inlining_globals argument.
 
-       * src/vm/jit/: jit.c, jit.h: Moved builtin table stuff to
-         builtin.[ch]
+2006-02-05 23:24  edwin
 
-2005-03-30 11:54  twisti
+       * src/vm/jit/jit.c (reg_setup): Removed t_inlining_globals argument.
+       
+       * src/vm/jit/codegen-common.c (reg_setup): Removed t_inlining_globals
+       argument.
+       
+       * src/vm/jit/reg.c, src/vm/jit/reg.h (reg_setup): Removed
+       t_inlining_globals
+       argument.
+       (Changes): Added my name to 'Changes'.
+       (vim boilerplate): Added.
 
-       * src/vm/: builtin.c, builtin.h: Moved builtin table stuff from
-         jit.c
+2006-02-05 23:09  edwin
 
-2005-03-30 11:49  twisti
+       * src/vm/jit/jit.h (Changes): Added my name to 'Changes'.
 
-       * src/toolbox/logging.c: Don't use fixed buffer length for
-         log_message_class and log_message_method (todo: change other
-         functions too).
+2006-02-05 23:07  edwin
 
-2005-03-30 00:46  twisti
+       * src/vm/jit/jit.h (ICMD_INLINE_GOTO): Added. Not used, yet.
+       
+       * src/vm/jit/jit.h (basicblock): Added 'stack' field. Not used, yet.
+       
+       * src/vm/jit/jit.h, src/vm/jit/jit.c (vim boilerplate): Added.
 
-       * src/vm/jit/parse.c: Replaced class_load with class_load_extern
-         (this is not finished yet).
+2006-02-05 23:02  edwin
 
-2005-03-30 00:34  twisti
+       * src/vm/jit/parse.c (parseRT.h, parseXTA.h, inline.h,
+       parseRTprint.h):
+       No longer included.
+       (parse): Removed t_inlining_globals * from arguments.
+       
+       * src/vm/jit/jit.c (parse): Removed t_inlining_globals * from
+       arguments.
 
-       * src/cacao/cacao.c:
-         - added linker_init() call
-         - check for exceptions in _init() calls
+2006-02-05 22:47  edwin
 
-2005-03-30 00:30  twisti
+       * src/vm/jit/parse.c, src/vm/jit/parse.h (inline_env): Removed most
+       occurences.
+       (bound_check1): Renamed to bound_check_exclusive.
 
-       * src/vm/Makefile.am: Added additional files.
+2006-02-05 22:22  edwin
 
-2005-03-30 00:27  twisti
+       * src/vm/jit/parse.c (useinlining): Removed.
 
-       * src/native/jni.h: Added header includes: field, method
+2006-02-05 17:36  edwin
 
-2005-03-30 00:24  twisti
+       * doc/inlining_stacktrace.txt: Added warning about signedness.
+       Fixed copy&paste errors.
 
-       * src/toolbox/: util.c, util.h: Added get_variable_message_length:
-         this function determines the buffer size required by e.g. vnsprintf
+2006-02-05 15:26  edwin
 
-2005-03-30 00:23  twisti
+       * doc/inlining_stacktrace.txt: Added.
+       
+       * src/vm/jit/dseg.c (dseg_addlinenumber_inline_start): Added.
+       (dseg_addlinenumber_inline_end): Added.
+       (dseg_addlinenumber): Commented.
+       (vim boilerplate): Added.
+       
+       * src/vm/jit/dseg.h (linenumberref): Changed for inlining stacktraces.
+       Made targetmpc a ptrint, made linenumber s4, reordered fields.
+       (dseg_addlinenumber_inline_start): Added.
+       (dseg_addlinenumber_inline_end): Added.
+       (vim boilerplate): Added.
 
-       * src/: toolbox/logging.h, mm/boehm.h: Changed header includes.
+2006-02-05 13:52  stefan
 
-2005-03-30 00:21  twisti
+       * src/threads/native/threads.h: waiting is correctly typed now
+       (previous checkin was wrong).
 
-       * src/vm/jit/asmpart.h:
-         - changes header includes
-         - use cacao types instead of jni ones
+2006-02-05 13:39  stefan
 
-2005-03-30 00:20  twisti
+       * src/threads/native/threads.c: Let's see if this improves the dead
+       lock situation (waiter handling changed slightly).
 
-       * src/vm/jit/codegen.inc.h:
-         - added header includes
-         - moved function prototypes from jit.h: createcompilerstub,
-           createnativestub, removecompilerstub, removenativestub
+2006-02-05 12:22  twisti
 
-2005-03-30 00:18  twisti
+       * tests/regression/native/.cvsignore (*.h, *.so): Added.
 
-       * src/vm/jit/jit.h:
-         - added header includes
-         - moved function prototypes to codegen.inc.h: createcompilerstub,
-           createnativestub, removecompilerstub, removenativestub
+2006-02-05 12:20  twisti
 
-2005-03-30 00:12  twisti
+       * tests/regression/native/Makefile.am,
+       tests/regression/codepatching/Makefile.am,
+       tests/regression/Makefile.am (JAVAFLAGS): Use VM_ZIP_STRING and
+       GLIBJ_ZIP_STRING.
 
-       * src/vm/jit/stacktrace.h: Moved stuff from global.h
+2006-02-05 12:03  twisti
 
-2005-03-30 00:09  twisti
+       * src/vm/jit/powerpc/asmpart.S, src/vm/jit/alpha/asmpart.S,
+       src/vm/jit/mips/asmpart.S, src/vm/jit/i386/asmpart.S,
+       src/vm/jit/x86_64/asmpart.S, src/vm/jit/arm/asmpart.S: Disable
+       executable stacks, this is required for Gentoo and we actually don't
+       need them.
 
-       * src/vm/class.h:
-         - added constant_classref typedef
-         - removed unused extern
+2006-02-05 00:40  twisti
 
-2005-03-30 00:09  twisti
+       * src/vm/jit/stacktrace.c (stacktrace_create): Get the value of
+       _no_threads_stackframeinfo, since it's a pointer, not a structure.
+       (stacktrace_print_trace): Check for NULL value and return.
+       * src/vm/exceptions.c (exceptions_handle_exception): Compiler warning
+       fixed.
+       (exceptions_print_exception): Check for NULL value, print it and
+       return.
 
-       * src/vm/: class.c, jit/tools/genoffsets.c: Include proper header
-         files.
+2006-02-05 00:16  twisti
 
-2005-03-30 00:00  twisti
+       * src/mm/memory.h (string.h): Moved after config.h.
+       (OFFSET): Use internal datatypes.
+       (NEW, MNEW): Use the proper GC macro when Gc is disabled.
 
-       * src/vm/: loader.c, loader.h, global.h: Moved a lot of stuff to
-         seperate files.
+2006-02-05 00:13  twisti
 
-2005-03-29 23:57  twisti
+       * src/mm/nogc.c (config.h): Moved in front of system headers.
+       (heap_allocate): Call exceptions_throw_outofmemory_exit.
+       (nogc_init): Likewise.
 
-       * src/vm/linker.h: Moved stuff from global.h
+2006-02-05 00:01  twisti
 
-2005-03-29 23:56  twisti
+       * src/threads/none/: New.
+       * src/threads/none/threads.h: New file. We need this one for
+       e.g. stacktrace.c where we use thread stuff in the code.
 
-       * src/vm/linker.c: Moved stuff from loader.c
+2006-02-04 23:59  twisti
 
-2005-03-29 23:55  twisti
+       * src/vm/access.c (assert.h): Move after config.h.
+       * src/vm/properties.c (mm/memory.h): Added.
+       * src/vm/jit/stacktrace.c (mm/memory.h): Likewise.
+       (threads.h): Added.
+       (stacktrace_create): Handle stackframeinfo when threads disabled
+       properly.
 
-       * src/vm/unzip.h: Include proper header files.
+2006-02-04 23:56  twisti
 
-2005-03-29 23:50  twisti
+       * src/vm/jit/allocator/simplereg.c (allocate_scratch_registers):
+       Generate an exception instead of exiting.
+       * src/vm/jit/allocator/lsra.c (lsra_scan_registers_canditates):
+       Likewise.
 
-       * src/vm/tables.h: Include proper header files.
+2006-02-04 20:15  twisti
 
-2005-03-29 23:50  twisti
+       * src/vm/jit/stacktrace.h (stacktrace_getCallingClassLoader): Renamed
+       to stacktrace_getCurrentClassLoader.
+       
+       * src/cacaoh/headers.c (nativelyoverloaded): Fixed compiler warning.
 
-       * src/vm/builtin.h:
-         - added header include
-         - define BUILTIN_anewarray
+2006-02-04 19:09  twisti
 
-2005-03-29 23:49  twisti
+       * src/native/native.c (native_resolve_function): Print failed is the
+       symbol was not found.
 
-       * src/vm/builtin.c: Removed SIZE_FROM_CLASSINFO stuff (i think we
-         don't need this anymore, because we now use boehm as gc).
+2006-02-04 19:08  twisti
 
-2005-03-29 23:42  twisti
+       * src/vm/jit/stacktrace.h (STACKTRACE_CAPACITY_DEFAULT)
+       (STACKTRACE_CAPACITY_INCREMENT): Changed default from 40 to 80, seems
+       this is what eclipse and tomcat want.
+       (stacktracebuffer): Changed entries from an array to a pointer.
 
-       * src/vm/method.h:
-         - moved stuff from global.h
-         - added proper header includes
+2006-02-04 19:04  twisti
 
-2005-03-29 23:36  twisti
+       * src/vm/jit/stacktrace.c (stacktrace_add_entry): Reallocate to
+       stb->entries.
+       (stacktrace_create): Do two dump and heap allocs, does not affect
+       performance.
+       (stacktrace_getCallingClassLoader): Renamed to
+       stacktrace_getCurrentClassLoader.
+       
+       * src/native/jni.c (FindClass): Renamed
+       stacktrace_getCallingClassLoader to stacktrace_getCurrentClassLoader.
+       
+       * src/native/vm/VMStackWalker.c (getCallingClassLoader): Revert to old
+       implementation.
 
-       * src/vm/field.h: Include new proper header files.
+2006-02-04 17:39  edwin
 
-2005-03-29 23:28  twisti
+       * doc/stack.txt: Typos fixed.
 
-       * src/vm/: descriptor.h, resolve.h: Moved stuff from global.h
+2006-02-04 17:31  edwin
 
-2005-03-29 23:26  twisti
+       * doc/stack.txt: Expanded tabs.
+       * doc/Makefile.am (stack.txt): Added EXTRA_DIST entry for stack.txt.
 
-       * src/vm/: classcache.h, access.h, descriptor.c: Include new proper
-         header files.
+2006-02-04 17:25  edwin
 
-2005-03-29 23:25  twisti
+       * doc/stack.txt: Added. This file describes some details about the
+       stack representation.
 
-       * src/vm/exceptions.h: Global variables comment.
+2006-02-04 00:43  twisti
 
-2005-03-29 18:46  twisti
+       * src/native/Makefile.am (CLEANFILES): Always clean nativetable.inc.
+       ($(srcdir)/native.c): Moved inside if ENABLE_STATICVM where it
+       belongs! Dammit!
 
-       * src/vm/utf8.h:
-         - added utf_strcat
-         - added utf structure (from global.h)
+2006-02-04 00:33  twisti
 
-2005-03-29 18:45  twisti
+       * src/native/Makefile.am: Accidentally moved the library into if
+       ENABLE_STATICVM.
+       * src/native/include/Makefile.am: Enable accidentally removed
+       dependencies.
 
-       * src/vm/utf8.c: Added: utf_strcat
+2006-02-04 00:13  edwin
 
-2005-03-29 00:44  twisti
+       * src/vm/jit/verify/typecheck.c (logging): Adapted to new logging API.
 
-       * src/vm/jit/inline/: inline.c, parseRT.c, parseXTA.c, sets.c,
-         sets.h: Changed some includes.
+2006-02-04 00:08  edwin
 
-2005-03-29 00:44  twisti
+       * src/vm/jit/stack.h (MARKREACHED): Use BBREACHED for readability.
+       (vim boilerplate): Added.
 
-       * src/vm/jit/inline/parseXTA.h: Added: xtainfo, xtafldinfo
-         structures
+2006-02-04 00:04  edwin
 
-2005-03-29 00:35  twisti
+       * src/vm/method.h (methodinfo): Fixed copy&paste error in comment.
+       (vim boilerplate): Added.
 
-       * src/vm/class.h: Moved stuff from other headers (global.h,
-         loader.h).
+2006-02-04 00:00  edwin
 
-2005-03-29 00:34  twisti
+       * src/vm/jit/stacktrace.c (vim boilerplate): Added.
 
-       * src/vm/class.c: Added: class_freecpool, class_free
+2006-02-03 22:57  twisti
 
-2005-03-29 00:12  christian
+       * configure.ac (VM_ZIP_STRING): Added.
+       (GLIBJZ): Renamed to GLIBJ_ZIP_STRING.
+       * src/vm/global.h (CACAO_VM_ZIP_PATH): Use GLIBJ_ZIP_STRING.
+       * src/lib/Makefile.am (GLIBJ_ZIP): Likewise.
+       * src/native/include/Makefile.am, src/native/Makefile.am (VM_ZIP): Use
+       VM_ZIP_STRING.
+       (GLIBJ_ZIP): Use GLIBJ_ZIP_STRING.
+       * contrib/setenvinstalled.in, contrib/setenvsource.in: Likewise.
 
-       * src/vm/jit/x86_64/emitfuncs.c: bugfix in saving rcx for lshl
+2006-02-03 22:53  twisti
 
-2005-03-29 00:09  twisti
+       * src/native/vm/VMRuntime.c (nativeLoad): #ifdef ENABLE_STATICVM
+       warning fix.
 
-       * src/vm/resolve.c: Include linker.h instead of loader.h.
+2006-02-03 22:24  twisti
 
-2005-03-28 23:59  twisti
+       * src/vm/global.h (CACAO_VM_ZIP_PATH): Removed accidentally commited
+       VM_ZIP_FILE.
+       * src/native/Makefile.am (VM_ZIP): Likewise.
+       * src/native/include/Makefile.am (VM_ZIP): Likewise.
 
-       * src/vm/: linker.c, linker.h: Linker related stuff (mostly from
-         loader.c/global.h).
+2006-02-03 22:03  twisti
 
-2005-03-28 23:57  twisti
+       * src/vm/global.h (CACAO_VM_ZIP_PATH): Set correctly for ifndef
+       ENABLE_ZLIB.
+       * src/lib/Makefile.am (JAVA_VM_FILES): Renamed to VM_JAVA_FILES.
+       (VM_CLASS_FILES): Added.
+       (pkgdata_DATA): Set to class files for ifndef ENABLE_ZLIB.
+       * src/native/include/Makefile.am (VM_ZIP): Set correctly for ifndef
+       ENABLE_ZLIB.
+       * src/native/Makefile.am (VM_ZIP): Likewise.
 
-       * src/vm/: method.c, method.h: Method related stuff (mostly from
-         loader.c/global.h).
+2006-02-03 21:58  twisti
 
-2005-03-28 23:56  twisti
+       * src/vm/suck.c (suck_add): Fixed compiler warning with #ifndef
+       ENABLE_ZLIB.
 
-       * src/vm/: field.c, field.h: Field related stuff (mostly from
-         loader.c/global.h).
+2006-02-03 21:51  twisti
 
-2005-03-27 21:00  edwin
+       * src/native/tools/.cvsignore (TAGS): Added.
 
-       * src/vm/tables.c: initialize and free classcache
+2006-02-03 20:54  twisti
 
-2005-03-27 20:59  edwin
+       * src/native/Makefile.am (VM_ZIP, GLIBJ_ZIP, CLASSPATH): Added.
 
-       * src/vm/utf8.c: made array_packagename harder to spoof
+2006-02-03 20:53  twisti
 
-2005-03-27 20:56  edwin
+       * src/native/tools/gennativetable.c (main): Don't free bootclasspath,
+       do proper initalization of subsystems, don't link classes.
 
-       * src/vm/: access.c, access.h: check defining classloader in
-         SAME_PACKAGE
+2006-02-03 19:44  twisti
 
-2005-03-27 17:38  edwin
+       * src/native/Makefile.am (nativetable.inc): Pass classpath on
+       commandline, environment variable support was removed.
 
-       * src/vm/jit/verify/typeinfo.c: moved CLASS_IS_ARRAY to
-         vm/jit/verify/typeinfo.c
+2006-02-03 19:42  twisti
 
-2005-03-27 17:17  edwin
+       * src/native/tools/gennativetable.c: Updated to work again.
 
-       * src/vm/descriptor.c: added macro CLASSREF_INIT
+2006-02-03 19:27  twisti
 
-2005-03-27 17:16  edwin
+       * src/cacao/Makefile.am (INCLUDES): Renamed to AM_CPPFLAGS.
+       (CLASSPATH_PREFIX): Renamed to CLASSPATH_LIBDIR.
 
-       * src/vm/: class.c, class.h: added functions for dynamically
-         creating classrefs added macro CLASSREF_INIT
+2006-02-03 18:45  twisti
 
-2005-03-27 17:15  edwin
+       * configure.ac (ENABLE_SOFTFLOAT): Added.
+       (NDEBUG): Bugfix for AM_CONDITIONAL.
 
-       * src/vm/global.h: moved typecheckverbose flag to
-         jit/verify/typeinfo.h
+2006-02-03 14:14  twisti
 
-2005-03-27 16:49  edwin
+       * src/vm/jit/stacktrace.c (stacktrace_entry): Wrong return value,
+       added some checks.
 
-       * src/vm/class.h: added functions for dynamically creating class
-         references
+2006-02-03 13:19  twisti
 
-2005-03-27 16:43  edwin
+       * src/vm/jit/stacktrace.c, src/vm/jit/stacktrace.h
+       (lineNumberTableEntry): Renamed to linenumbertable_entry.
+       (addEntry): Renamed to stacktrace_add_entry.
+       (stacktrace_fillInStackTrace_methodRecursive): Removed.
+       (stacktrace_fillInStackTrace_method): Renamed to
+       stacktrace_add_method.
+       (cacao_stacktrace_fillInStackTrace): Renamed to stacktrace_create.
+       (stackTraceCollector): Removed.
+       (cacao_stacktrace_NormalTrace): Renamed to
+       stacktrace_fillInStackTrace.
+       (classContextCollector): Removed.
+       (cacao_createClassContextArray): Renamed to
+       stacktrace_getClassContext.
+       (stacktrace_classLoaderCollector): Removed.
+       (cacao_currentClassLoader): Renamed to
+       stacktrace_getCallingClassLoader.
+       (getStackCollector): Removed.
+       (cacao_getStackForVMAccessController): Renamed to stacktrace_getStack.
+       
+       * src/native/jni.c (jni_init): Use new GCNEW.
+       (FindClass): Renamed cacao_currentClassLoader to
+       stacktrace_getCallingClassLoader.
+       
+       * src/native/vm/VMAccessController.c (getStack): Renamed
+       cacao_getStackForVMAccessController to stacktrace_getStack.
+       
+       * src/native/vm/VMStackWalker.c (getClassContext): Renamed
+       cacao_createClassContextArray to stacktrace_getClassContext.
+       (getCallingClass): Likewise.
+       (getCallingClassLoader): Call stacktrace_getCallingClassLoader.
+       
+       * src/native/vm/Method.c (config.h): Added.
+       (invokeNative): Renamed cacao_createClassContextArray to
+       stacktrace_getClassContext.
+       
+       * src/native/vm/Field.c (config.h): Added.
+       (cacao_get_field_address): Renamed cacao_createClassContextArray to
+       stacktrace_getClassContext. Check for CLASS_INITIALIZED.
+       
+       * src/native/vm/VMThrowable.c
+       (native/include/gnu_classpath_Pointer.h): Added.
+       (fillInStackTrace): Call stacktrace_fillInStackTrace.
+       (getStackTrace): Adapted.
+       
+       * src/mm/memory.h (GCNEW): Use only 1 parameter, like NEW.
+       (GCMNEW): Added.
+
+2006-02-03 12:46  twisti
+
+       * src/threads/native/threads.h (THREADOBJECT): Don't cast to
+       java_lang_VMThread*, we don't need that.
+
+2006-02-03 12:38  twisti
+
+       * src/vm/method.c (method_printflags, method_print): Check for NULL.
+       * src/vm/field.c (field_printflags, field_print) Likewise.
+       (stdio.h): Added.
+       * src/vm/class.c (class_printflags, class_print): Likewise.
+
+2006-02-02 09:16  twisti
 
-       * src/vm/descriptor.c: added paramslots field in methoddesc
+       * configure.ac (AC_PROG_JAR): Added.
+       * m4/ac_prog_jar.m4: New file.
+       * src/lib/Makefile.am (VM_ZIP): Added.
+       (vm.zip): Check if $(JAR) is zip or jar type.
+
+2006-02-02 08:51  twisti
+
+       * src/vm/loader.c (loader_load_all_classes): Added missing #ifde
+       ENABLE_ZLIB.
+
+2006-02-02 08:45  twisti
+
+       * configure.ac (NDEBUG): Added missing WITH_BINUTILS_DISASSEMBLER
+       conditional.
+       (zlib): Fixed handling.
+
+2006-01-31 23:54  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Added basic block frequency
+       count code.
+
+2006-01-31 23:45  twisti
+
+       * src/vm/jit/profile.c ("mm/memory.h,vm/options.h): Added.
+       (list_method_entry): Likewise.
+       (profile_printstats): Sort methods into a list and print it sorted,
+       added basic block frequency output.
+
+2006-01-31 23:43  twisti
+
+       * src/vm/method.h (methodinfo): Renamed executioncount to
+       frequency. Added bbfrequency and cycles.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Added cycle profiling code.
+       
+       * src/vm/jit/x86_64/codegen.h (M_FMOV): Added.
+       (M_IADD_MEMBASE, M_IADC_MEMBASE, M_ISUB_MEMBASE, M_ISBB_MEMBASE):
+       Likewise.
+       (M_RDTSC, PROFILE_CYCLE_START, PROFILE_CYCLE_STOP): Likewise.
+       
+       * src/vm/jit/x86_64/emitfuncs.c (x86_64_inc_membase)
+       (x86_64_incl_membase): Fixed.
+       (emit_rdtsc): Added.
+       
+       * src/vm/jit/jit.c (jit_compile): Free m->bbfrequency memory.
+       (jit_compile_intern): Allocate m->bbfrequency memory.
+       
+       * src/vm/jit/jit.h: Reformatting.
+
+2006-01-31 23:29  twisti
+
+       * src/vm/statistics.c, src/vm/jit/inline/inline.c: Removed inlining
+       statistics stuff.
+
+2006-01-31 23:27  twisti
+
+       * src/vm/options.c, src/vm/options.h (opt_rt, opt_xta, opt_vta):
+       Removed.
+       (opt_prof_bb): Added.
+       * src/cacao/cacao.c: Likewise.
+       (OPT_PROF_OPTION): Added.
+
+2006-01-31 22:31  twisti
+
+       * src/vm/jit/stack.c (show_icmd_block): Print the basic block type.
+
+2006-01-31 22:27  twisti
+
+       * src/toolbox/list.c, src/toolbox/list.h (list_add_before): Added.
+
+2006-01-31 15:41  twisti
+
+       * src/vm/jit/powerpc/codegen.c, src/vm/jit/alpha/codegen.c,
+       src/vm/jit/mips/codegen.c, src/vm/jit/i386/codegen.c (codegen): Use
+       CLASS_IS_OR_ALMOST_INITIALIZED macro, saves some code space.
+
+2006-01-31 15:35  twisti
+
+       Fixes Debian bug #350729
+       * src/vm/jit/i386/asmpart.S (asm_md_init): Added, puts the FPU to
+       64-bit precision mode.
+       * src/vm/jit/i386/md.c (md_init): Call asm_md_init.
+       
+       * src/vm/jit/asmpart.h (asm_md_init): Added.
+       (has_no_x_instr_set): Removed.
+       * src/vm/options.c, src/vm/options.h (has_ext_instr_set): Removed.
+       * src/vm/jit/jit.c (jit_init): Removed has_no_x_instr_set call.
+       * src/vm/jit/alpha/asmpart.S (has_no_x_instr_set): Renamed to
+       asm_md_init.
+       * src/vm/jit/alpha/md.c (has_ext_instr_set): Added.
+       (md_init): Call asm_md_init.
+       * src/vm/jit/alpha/md.h (has_ext_instr_set): Added.
+
+2006-01-31 15:18  edwin
+
+       * src/vm/classcache.c: Added a formal description of the classcache.
+
+2006-01-31 14:24  twisti
+
+       * src/vm/signal.c (signal_handler_sigint): Typo, reported by Chris
+       Burdess on irc.
+
+2006-01-30 16:25  twisti
+
+       * src/vm/jit/i386/codegen.c (codegen): Added profiling code.
+       (ICMD_IINC): Use macros.
+       * src/vm/jit/i386/codegen.h (ucontext.h): Removed.
+       (thread_restartcriticalsection): Likewise.
+       (M_IADD_IMM_MEMBASE): Added.
+
+2006-01-30 15:44  twisti
+
+       * src/vm/options.h, src/vm/options.c (opt_prof): Added.
+       * src/cacao/cacao.c (OPT_PROF): Added.
+       (exit_handler): Added profile_printstats when opt_prof is enabled.
+       
+       * src/vm/class.h (classinfo): Members classUsed and impldBy removed.
+       * src/vm/loader.c (load_class_from_classbuffer): Likewise.
+       * src/vm/linker.c (link_primitivetype_table): Likewise.
+       (link_class_intern): Likewise.
+       * src/vm/jit/inline/inline.c: Likewise.
+       
+       * src/vm/method.h (methodinfo): Added member executioncount.
+       
+       * src/vm/jit/x86_64/codegen.c (codegen): Added profiling code. Some
+       code reordering, using more macros and save some code space.
+       * src/vm/jit/x86_64/codegen.h (M_ILD32, M_LLD32, M_IST_IMM, M_IST32)
+       (M_LST32, M_IST32_IMM, M_LST32_IMM32, M_IINC_MEMBASE, M_ITEST)
+       (M_CMP_IMM_MEMBASE, M_ICMP, M_ICMP_IMM, M_ICMP_IMM_MEMBASE, M_CMOVEQ)
+       (M_CMOVNE, M_CMOVLT, M_CMOVLE, M_CMOVGE, M_CMOVGT, M_CMOVB, M_CMOVA)
+       (M_CMOVP, M_CLR): Added.
+       
+       * src/vm/jit/x86_64/emitfuncs.c (x86_64_emit_ifcc): Use macros.
+       (x86_64_call_mem): Changed mem argument to ptrint type.
+       * src/vm/jit/x86_64/emitfuncs.h (x86_64_call_mem): Likewise.
+       
+       * src/vm/jit/profile.c, src/vm/jit/profile.h: New files.
+       * src/vm/jit/Makefile.am (DISASS_OBJ): Renamed to DISASS_SOURCES.
+       (PROFILE_SOURCES): Added.
+
+2006-01-30 14:24  christian
+
+       * src/vm/jit/allocator/simplereg.c (interface_regalloc): Used
+       m->parseddesc->arg[int|flt|adr]reguse to enable use of unused
+       argumentregisters in leadmethods.
+       (local_regalloc): Likewise.
+       (reg_init_temp): Likewise.
+
+2006-01-30 11:26  christian
+
+       * src/vm/jit/allocator/simplereg.c: Ensured proper alignment of all
+       doubles and longs if ALIGN_[DOUBLES|LONGS]_IN_MEMORY is defined.
+       (local_regalloc): Fixed error for HAS_ADREDD_REGISTER_FILE - else was
+       missing. Ensured use of unused argument register in leafmethod before
+       use of saved registers. Regarded PACK_REGS for
+       SUPPORT_COMBINE_INTEGER_REGISTER archs for unused integer argument
+       registers.
+       * src/vm/jit/i386/arch.h: Added defines for
+       ALIGN_[DOUBLES|LONGS]_IN_MEMORY.
+       * src/vm/jit/powerpc/arch.h: Likewise.
+
+2006-01-29 17:27  twisti
+
+       * src/vm/jit/stack.c (show_icmd): Fixed ICMD_ELSE_ICONST output.
+
+2006-01-28 14:42  twisti
+
+       * src/vm/jit/powerpc/linux/md-abi.c,
+       src/vm/jit/powerpc/darwin/md-abi.c (md_return_alloc): Use
+       m->parseddesc->paramcount instead of m->paramcount.
+       * src/vm/jit/schedule/schedule.c (schedule_init): Likewise.
+       
+       * src/vm/jit/powerpc/codegen.c, src/vm/jit/alpha/codegen.c,
+       src/vm/jit/mips/codegen.c, src/vm/jit/i386/codegen.c (codegen):
+       Removed first MCODECHECK since it not required.
+       
+       * src/vm/jit/methodheader.h: Added comment.
+
+2006-01-28 14:25  twisti
+
+       * src/vm/jit/x86_64/.cvsignore: Added TAGS.
+
+2006-01-28 14:21  twisti
+
+       * src/vm/loader.c (load_method): Removed reference to
+       nativelyoverloaded, monoPoly, subRedefs, subRedefsUsed, xta.
+       (load_newly_created_array): Removed reference to monoPoly.
+
+2006-01-28 14:18  twisti
+
+       * src/vm/method.c (method_descriptor2types): Removed.
+       * src/vm/method.h (methodinfo): Removed members returntype,
+       returnclass, paramcount, paramtypes, paramclass, xta, methodXTAparsed,
+       methodUsed, monoPoly, subRedefs, subRedefsUsed, and
+       nativelyoverloaded, this saves about 3.2MB of classinfo memory for
+       -all.
+       (method_descriptor2types): Removed.
+       
+       * src/vm/jit/inline/inline.c (inlining_analyse_method): Use
+       m->parseddesc->paramcount instead of m->paramcount.
+       * src/vm/jit/allocator/simplereg.c (local_regalloc): Likewise.
+       * src/vm/jit/x86_64/md-abi.c (md_return_alloc): Likewise.
+       
+       * src/vm/jit/jit.c (jit_compile): Removed RT_jit_parse and
+       XTA_jit_parse calls.
+       (jit_compile_intern): Removed method_descriptor2types call.
+       
+       * src/cacaoh/cacaoh.c (main): Call string_init. Removed
+       nativemethod_chain and nativeclass_chain stuff.
+       
+       * src/cacaoh/headers.c (nativemethod_chain): Removed.
+       (nativeclass_chain): Likewise.
+       (printmethod): Use m->isleafmethod instead of m->nativelyoverloaded.
+       (headerfile_generate): Likewise.
+
+2006-01-28 11:26  twisti
+
+       * src/vm/jit/inline/Makefile.am (INCLUDES): Renamed to AM_CPPFLAGS.
+       (libinline_la_SOURCES): Don't build RTA/XTA stuff.
+
+2006-01-28 11:24  twisti
+
+       * Makefile.am (EXTRA_DIST): Added THIRDPARTY.
+
+2006-01-27 19:05  stefan
 
-2005-03-27 16:41  edwin
+       * src/threads/native/threads.c: Removed a superfluous (I hope) NULL
+       check.
 
-       * src/vm/global.h: added some fields for parsed descriptors removed
-         typecheck configuration macros from global.h
+2006-01-27 18:53  stefan
 
-2005-03-25 21:15  edwin
+       * src/threads/native/threads.c: Repaired thread_getself.
 
-       * src/vm/jit/verify/typeinfo.c: moved the check for
-         classinfo->linked
+2006-01-27 17:35  twisti
 
-2005-03-25 21:14  edwin
+       * src/toolbox/logging.c, src/toolbox/logging.h (log_start): Added.
+       (log_vprint): Likewise.
+       (log_print): Likewise.
+       (log_println): Likewise.
+       (log_finish): Likewise.
+       (log_plain): Removed.
+       (log_nl): Removed.
+       (log_flush): Likewise.
+       (dolog_plain): Likewise.
+       (get_logfile): Likewise.
+       (log_utf): Likewise.
+       (log_plain_utf): Likewise.
+       (log_text): Removed but added a define until we have ported all files.
+       (dolog): Likewise.
+       * src/vm/statistics.c (print_stats): Started to use new logging
+       functions. Print some ratios.
 
-       * src/vm/jit/verify/typeinfo.h: documentation updates for the
-         coming changes
+2006-01-27 16:32  twisti
 
-2005-03-25 18:12  edwin
+       * src/native/vm/VMSystemProperties.c (preInit): Don't add . to
+       java.library.path per default.
 
-       * src/vm/: resolve.c, resolve.h: added functions for freeing memory
+2006-01-27 12:43  twisti
 
-2005-03-25 16:54  twisti
+       * NEWS: Added powerpc fixes found by javver.
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - added asm_calljavafunction_int (for calls which require an int
-           return value).
-         - stack align fix, problems with -sai (you know, this movaps
-           instruction in libc's printf)
+2006-01-24 19:09  twisti
 
-2005-03-25 16:13  edwin
+       * src/vm/jit/powerpc/codegen.h (var_to_reg_dbl): Added.
+       (M_COPY): Handle doubles properly.
 
-       * src/vm/descriptor.c: check if classnames are valid
+2006-01-24 13:52  twisti
 
-2005-03-25 15:25  edwin
+       * src/vm/jit/powerpc/codegen.h (M_LNGMOVE): Added.
+       (var_to_reg_lng): Likewise.
+       (M_COPY): Support longs. This was actually never implemented and never
+       worked, grrr.
 
-       * src/vm/classcache.c: fix merging of classcache_class_entry:s
+2006-01-24 10:30  twisti
 
-2005-03-25 15:05  edwin
+       * src/vm/jit/stacktrace.c (cacao_stacktrace_fillInStackTrace): Use
+       method_print. Fixed typo.
+       * src/vm/jit/powerpc/md.c (md_codegen_findmethod): Handle 2
+       instruction returns properly.
 
-       * src/vm/Makefile.am: added
-         {access,classcache,descriptor,resolve}.[ch] to Makefile.am
+2006-01-24 10:28  twisti
 
-2005-03-25 14:45  edwin
+       * src/vm/builtin.c (builtin_f2i): Enable for interpreter.
+       (builtin_d2i): Likewise.
+       * src/vm/jit/stack.c (icmd_print_stack): Fixed for ENABLE_INTRP and
+       SUPPORT_COMBINE_INTEGER_REGISTERS.
 
-       * src/vm/jit/: jit.h, verify/typecheck.c: moved
-         INSTRUCTION_PUTCONST_* macros to vm/jit/jit.h
+2006-01-23 16:03  twisti
 
-2005-03-25 14:35  edwin
+       * src/vm/jit/stack.c (show_icmd_method): Fixed basic block count
+       output.
+       
+       * src/vm/jit/i386/codegen.c (codegen): Use disp instead of a. Usage of
+       some more macros.
+       * src/vm/jit/i386/codegen.h (M_BLT): Added.
+       (M_BLE): Likewise.
+       (M_BGE): Likewise.
+       (M_BGT): Likewise.
+       (M_BBE): Likewise.
+       (M_BAE): Likewise.
 
-       * src/vm/: statistics.c, statistics.h: added statistics for size of
-         classrefs and parsed descriptors
+2006-01-23 01:12  twisti
 
-2005-03-25 14:32  edwin
+       * configure.ac (AC_INIT): Changed version number to 0.94+cvs.
+       (CFLAGS): Changed optimization back to -O0.
 
-       * src/vm/global.h: minor documentation fixes
+2006-01-23 01:01  twisti
 
-2005-03-25 14:30  edwin
+       * ChangeLog: Updated for 0.94 release.
 
-       * src/vm/: class.c, global.h: added data structures for parsed
-         descriptors and class references
+2006-01-22 23:42  twisti
 
-2005-03-25 13:35  edwin
+       * configure.ac (AC_INIT): Changed version number to 0.94.
+       (CFLAGS): Changed optimization to -O2.
 
-       * src/vm/: resolve.c, resolve.h: added new code for resolving
-         symbolic references
+2006-01-22 23:33  twisti
 
-2005-03-25 13:34  edwin
+       * Updated header: Added 2006. Changed address of FSF. Changed email
+       address.
 
-       * src/vm/: classcache.c, classcache.h: added new code for the
-         loaded class cache and loading constraints
+2006-01-22 23:16  twisti
 
-2005-03-25 13:33  edwin
+       * Updated svn:ignore propset.
 
-       * src/vm/: descriptor.c, descriptor.h: added new code for
-         pre-parsed descriptors
+2006-01-22 23:00  twisti
 
-2005-03-25 13:23  edwin
+       * src/vm/jit/intrp/Makefile.am (EXTRA_DIST): Added gray.fs and
+       BUILT_SOURCES.
 
-       * src/vm/: access.c, access.h: added new code for checking access
-         rights
+2006-01-22 22:46  twisti
 
-2005-03-24 20:06  edwin
+       * tests/regression/extest.java: Typo.
 
-       * src/native/vm/VMSystemProperties.c: temporary fix for getenv
-         returning NULL for LD_LIBRARY_PATH
+2006-01-22 22:36  twisti
 
-2005-03-24 19:48  twisti
+       * NEWS: Added releases 0.90, 0.91, 0.92, 0.93, 0.94.
 
-       * src/vm/jit/alpha/codegen.c:
-         - implemented: ICMD_PUTSTATICCONST, ICMD_PUTFIELDCONST
-         - check for null pointer in ICMD_INVOKESPECIAL
+2006-01-22 22:34  twisti
 
-2005-03-24 18:56  christian
+       * README: Updated.
 
-       * src/vm/jit/x86_64/: codegen.c, emitfuncs.c: Problem with
-         not/wrong saved argument registers used as temp registers resolved
+2006-01-22 21:42  twisti
 
-2005-03-24 13:21  twisti
+       * src/vm/jit/intrp/codegen.c (cacaotype2ffitype): Revert edwin's
+       bugfix, but we can't use ffi_type_slong as it's defined as 64-bit
+       value on 32-bit machines.
 
-       * src/vm/jit/x86_64/: codegen.h, emitfuncs.c: Added
-         x86_64_emit_byte_rex: movb_reg_membase needs a special rex byte,
-         because the 64-bit flag is not set, but we need the low nibbles of
-         all registers (e.g. mov %bpl,(%rax,%rcx,1)).
+2006-01-22 21:40  twisti
 
-2005-03-24 11:13  twisti
+       * src/native/Makefile.am (INCLUDES): Renamed to AM_CPPFLAGS.
+       (libnative_la_SOURCES): Removed nativecalls.inc.
 
-       * src/vm/unzip.c: Add all files (including .properties) to the zip
-         dir list.
+2006-01-22 21:39  twisti
 
-2005-03-23 20:26  twisti
+       * tests/Makefile.am (SUBDIRS): Removed native.
 
-       * src/vm/jit/i386/asmpart.S: Added asm_calljavafunction_int (for
-         calls which require an int return value).
+2006-01-22 21:38  twisti
 
-2005-03-23 12:55  twisti
+       * tests/regression/native/testarguments.output: Updated.
+       * tests/regression/native/Makefile.am: Made it work with distcheck.
+       * tests/regression/codepatching/Makefile.am: Likewise.
+       * tests/regression/Makefile.am: Likewise.
+       
+       * tests/regression/extest.java: Comment changed.
 
-       * src/cacao/cacao.c:
-         - support external classpath
-         - don't add classpath to bootstrap classloader
+2006-01-22 21:22  twisti
 
-2005-03-23 12:46  twisti
+       * configure.in: Renamed to configure.ac.
 
-       * src/native/vm/VMClassLoader.c: Ooops! Sorry for this bug.
+2006-01-22 21:21  twisti
 
-2005-03-23 12:21  twisti
+       * configure.in (AC_CONFIG_FILES): Removed tests/native/Makefile, added
+       tests/regression/native/Makefile.
 
-       * src/vm/jit/asmpart.h: Added asm_calljavafunction_int (for calls
-         which require an int return value).
+2006-01-22 20:21  twisti
 
-2005-03-23 12:19  twisti
+       * tests/native: Moved to tests/regression/native.
 
-       * src/toolbox/Makefile.am: Added util.[ch]
+2006-01-22 20:00  twisti
 
-2005-03-23 12:19  twisti
+       * src/vm/jit/asmpart.h (asm_handle_exception)
+       (asm_handle_nat_exception): #ifdef ENABLE_JIT.
 
-       * src/toolbox/: util.c, util.h: This should be used for the utility
-         functions, like a getcwd() replacement.
+2006-01-22 19:59  twisti
 
-2005-03-23 12:16  twisti
+       * src/vm/jit/jit.c (jit_compile_intern): Use
+       CLASS_IS_OR_ALMOST_INITIALIZED to check uninitialized.
 
-       * src/vm/: loader.c, loader.h: Export classpath_entries (this
-         should be stored somewhere in a jni struct).
+2006-01-22 19:57  twisti
 
-2005-03-23 12:10  twisti
+       * src/vm/jit/stacktrace.c (stacktrace_create_inline_stackframeinfo):
+       Compiler warning fix.
 
-       * src/vm/: utf8.c, utf8.h: Added: utf_java_util_Vector,
-                utf_loadClass, utf_java_lang_String__java_lang_Class
+2006-01-22 19:56  twisti
 
-2005-03-23 12:09  twisti
+       * src/vm/jit/intrp/java.vmg: Some reformatting.
 
-       * src/vm/: class.c, class.h: Added class_java_util_Vector
+2006-01-22 19:55  twisti
 
-2005-03-23 12:08  twisti
+       * src/vm/jit/intrp/asmpart.c (vm/loader.h): Added.
+       (intrp_asm_calljavafunction_intern): Use u1* instead of entrypoint.
+       (jni_invoke_java_intern): Likewise.
 
-       * src/native/include/Makefile.am:
-         - support external classpath
-         - added: java_util_Vector.h
+2006-01-22 19:50  twisti
 
-2005-03-23 11:59  twisti
+       * .cvsignore, src/toolbox/.cvsignore, src/vm/jit/inline/.cvsignore,
+       src/vm/jit/allocator/.cvsignore: TAGS added.
 
-       * src/native/vm/VMClassLoader.c:
-         - implemented
+2006-01-22 19:37  twisti
 
+       * src/boehm-gc/.cvsignore, src/boehm-gc/include/.cvsignore,
+       src/vm/.cvsignore, src/vm/jit/tools/.cvsignore,
+       src/vm/jit/verify/.cvsignore, src/vm/jit/loop/.cvsignore,
+       src/vm/jit/.cvsignore, src/vm/jit/intrp/.cvsignore,
+       src/cacao/.cvsignore, src/native/vm/.cvsignore,
+       src/native/include/.cvsignore, src/native/.cvsignore,
+       src/mm/.cvsignore, src/threads/native/.cvsignore,
+       src/threads/.cvsignore, src/fdlibm/.cvsignore, src/.cvsignore,
+       src/cacaoh/.cvsignore: TAGS added.
 
+2006-01-22 19:29  edwin
 
-         defineClass(Ljava/lang/ClassLoader;Ljava/lang/String;[BIILjava/security/ProtectionDomain;)Ljava/lang/Class;instead of defineClass(Ljava/lang/String;[BII)Ljava/lang/Class;
-         - implemented Java_java_lang_VMClassLoader_nativeGetResources
+       * src/vm/jit/intrp/codegen.c (nativecall): Fixed calculation of the
+       stackframeinfo address.
 
-2005-03-23 11:57  twisti
+2006-01-22 14:44  twisti
 
-       * src/native/vm/VMSystemProperties.c:
-         - support external classpath
-         - add gnu.classpath.boot.library.path property
-         - use util _Jv_getcwd call (prefix?)
+       * src/vm/jit/codegen-common.c (codegen_addreference): The last fix was
+       not correct if only the intrp is built.
 
-2005-03-22 12:21  twisti
+2006-01-22 14:39  twisti
 
-       * src/vm/jit/schedule/schedule.c: Schedule progress.
+       * src/vm/class.c (class_showmethods): Use class_printflags.
+       * src/vm/loader.c, src/vm/loader.h (fprintflags): Removed.
+       (printflags): Likewise.
+       * src/vm/jit/inline/sets.c (printFldSet): Use field_println instead of
+       field_display.
+       * src/vm/field.c, src/vm/field.h (field_display): Removed.
+       (field_printflags): Added.
+       (field_print): Likewise.
+       (field_println): Likewise.
 
-2005-03-21 18:00  twisti
+2006-01-22 00:45  edwin
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Scheduler work.
+       * src/vm/jit/intrp/codegen.c (cacaotype2ffitype): Use ffi_type_sint
+       for
+       values of TYPE_INT. This fixes the interpreter on i386, though I'm not
+       sure if it is a correct and complete solution.
 
-2005-03-21 10:40  twisti
+2006-01-21 21:46  edwin
 
-       * src/vm/jit/schedule/schedule.c: Initial scheduling.
+       * src/vm/jit/codegen-common.c (codegen_addreference): Fixed bug when
+       both ENABLE_INTRP and ENABLE_JIT were defined.
 
-2005-03-20 18:21  twisti
+2006-01-21 20:22  edwin
 
-       * src/vm/jit/mips/codegen.c: Implemented PUTSTATICCONST and
-         PUTFIELDCONST.
+       * src/vm/jit/verify/typecheck.c (typestack_copy,
+       typestack_separable_with)
+       (typestack_separable_from, verify_basic_block): Comment-only changes.
+       (verify_basic_block): Small typo fix in string.
 
-2005-03-20 18:20  twisti
+2006-01-20 14:49  twisti
 
-       * src/vm/jit/mips/arch.h: Enabled SUPPORT_CONST_STORE
+       * src/native/jni.c (fill_callblock_from_objectarray): Fixed typo.
+       (jni_method_invokeNativeHelper): Major code rewrite and speed
+       improvement, renamed to _Jv_jni_invokeNative.
+       (cacao_jni_CallVoidMethod): Fixed interpreter bug, renamed to
+       _Jv_jni_CallVoidMethod.
+       (callLongMethod): Renamed to _Jv_jni_CallLongMethod.
+       * src/native/jni.h (jni_method_invokeNativeHelper): Renamed to
+       _Jv_jni_invokeNative.
+       * src/native/vm/Method.c (Java_java_lang_reflect_Method_invokeNative):
+       Renamed jni_method_invokeNativeHelper to _Jv_jni_invokeNative.
+       * src/native/vm/Constructor.c: Updated includes.
+       (Java_java_lang_reflect_Constructor_constructNative): Renamed
+       jni_method_invokeNativeHelper to _Jv_jni_invokeNative.
 
-2005-03-20 17:26  twisti
+2006-01-20 13:41  twisti
 
-       * src/vm/jit/x86_64/asmpart.S:
-         - don't pass stackpointer to asm_check_clinit
-         - check for compiler exceptions
+       * tests/regression/Makefile.am (EXTRA_DIST): Made it more readable.
 
-2005-03-20 17:26  twisti
+2006-01-20 13:40  twisti
 
-       * src/vm/jit/x86_64/emitfuncs.c: Renamed x86_64_is_immxx to
-         IS_IMMxx.
+       * src/vm/jit/intrp/intrp.h (ffi.h): Removed, not required in this
+       file.
+       * src/vm/jit/intrp/codegen.c (nativecall): Removed unused big-endian
+       code.
+       * src/vm/jit/intrp/asmpart.c (asm_calljavafunction_intern): Renamed to
+       intrp_asm_calljavafunction_intern, just to be sure.
 
-2005-03-20 17:25  twisti
+2006-01-20 13:33  twisti
 
-       * src/vm/jit/x86_64/codegen.h: Renamed x86_64_is_immxx to IS_IMMxx.
-         Maybe these should be moved somewhere else.
+       * src/vm/jit/mips/irix/md-os.c (md_signal_handler_sigsegv): Missed the
+       actal rename from the previous commit.
 
-2005-03-20 17:24  twisti
+2006-01-20 13:28  twisti
 
-       * src/vm/jit/x86_64/codegen.c:
-         - PUTSTATICCONST, PUTFIELDCONST implemented
-         - don't pass stack pointer to asm_check_clinit
-         - removed needless exceptions
+       * src/vm/signal.c (vm/signallocal.h): Added.
+       * src/vm/signallocal.h (md_signal_handler_sigfpe): #ifdef for i386 and
+       x86_64.
 
-2005-03-20 16:03  twisti
+2006-01-20 13:25  twisti
 
-       * src/vm/jit/mips/Makefile.am: Build dir support.
+       * src/vm/jit/powerpc/linux/md-os.c, src/vm/jit/powerpc/darwin/md-os.c,
+       src/vm/jit/alpha/linux/md-os.c, src/vm/jit/alpha/freebsd/md-os.c,
+       src/vm/jit/mips/linux/md-os.c, src/vm/jit/mips/irix/md-os.c
+       (signal_handler_sigsegv): Renamed to md_signal_handler_sigsegv.
+       * src/vm/jit/i386/linux/md-os.c, src/vm/jit/i386/freebsd/md-os.c,
+       src/vm/jit/x86_64/md.c (signal_handler_sigsegv): Renamed to
+       md_signal_handler_sigsegv.
+       (signal_handler_sigfpe): Renamed to md_signal_handler_sigfpe.
+       * src/vm/signal.c (signal_init): Renamed signal_handler_sigsegv to
+       md_signal_handler_sigsegv and signal_handler_sigfpe to
+       md_signal_handler_sigfpe respectively.
+       * src/vm/signallocal.h (md_signal_handler_sigsegv): Added.
+       (md_signal_handler_sigfpe): Likewise.
 
-2005-03-20 15:43  edwin
+2006-01-20 13:19  twisti
 
-       * src/vm/jit/: stack.c, verify/typecheck.c: PUT{STATIC,FIELD}CONST:
-         use iptr[0].op1 for constant type PUT{STATIC,FIELD}CONST: use
-         correct value from iptr[0].val
+       * src/vm/jit/alpha/codegen.h (ucontext.h): Removed.
+       (thread_restartcriticalsection): Removed.
 
-2005-03-20 15:29  edwin
+2006-01-20 13:06  twisti
 
-       * src/vm/jit/verify/typecheck.c: add verification of
-         PUT{STATIC,FIELD}CONST
+       * src/vm/jit/x86_64/disass.c (dis-asm.h): Added.
+       (vm/global.h): Likewise.
+       (mm/memory.h): Removed.
 
-2005-03-20 15:28  edwin
+2006-01-20 13:05  twisti
 
-       * src/vm/jit/stack.c: PUT{FIELD,STATIC}CONST: store type of
-         constant in iptr[1].op1
+       * src/vm/class.c, src/vm/class.h (class_printflags): Added.
+       (class_print): Likewise.
+       (class_println): Likewise.
 
-2005-03-20 14:49  twisti
+2006-01-20 12:58  twisti
 
-       * src/vm/jit/i386/codegen.c: Implemented: PUTSTATICCONST,
-         PUTFIELDCONST
+       * src/vm/jit/i386/disass.c (disassinstr): Set the read_memory_func in
+       disassemble_info to disass_buffer_read_memory.
+       (disassemble): Removed.
 
-2005-03-20 14:42  twisti
+2006-01-20 12:57  twisti
 
-       * src/vm/jit/i386/: emitfuncs.c, emitfuncs.h: Added
-         i386_mov_imm_mem
+       * src/vm/jit/stack.c (show_icmd_method): Print basic blocks count and
+       better basic block header output.
+       ICMD_MULTIANEWARRAY: Changed iptr->target and iptr->val.a value.
+       ICMD_IFLE_ICONST, ICMD_ELSE_ICONST: Print values better.
 
-2005-03-20 14:42  twisti
+2006-01-20 12:01  twisti
 
-       * src/vm/jit/stack.c: PUTSTATICCONST, PUTFIELDCONST bugfixes.
+       * src/vm/jit/powerpc/disass.c (disassinstr): Set the read_memory_func
+       in disassemble_info to disass_buffer_read_memory.
+       (disassemble): Removed.
 
-2005-03-20 14:39  twisti
+2006-01-20 11:38  twisti
 
-       * src/vm/jit/jit.c: SUPPORT_LONG_LOG -> SUPPORT_LONG_LOGICAL
+       * src/vm/jit/disass-common.c, src/vm/jit/disass.h: Added
+       disassemble_info and disass_initialized.
+       (disassemble): Added.
+       (buffer_read_memory): Renamed to disass_buffer_read_memory.
+       * src/vm/jit/x86_64/disass.c (disassinstr): Set the read_memory_func
+       in disassemble_info to disass_buffer_read_memory.
+       (disassemble): Removed.
 
-2005-03-20 12:24  twisti
+2006-01-20 10:15  twisti
 
-       * src/vm/jit/: alpha/arch.h, i386/arch.h, mips/arch.h,
-         powerpc/arch.h, x86_64/arch.h: Added and changed some SUPPORT
-         defines.
+       * regression/extest.java: Removed asmpart exceptions as they are now
+       checked with codepatching.
+       * regression/extest.2output: Regenerated.
+       * regression/extest_clinit.java: Added.
 
-2005-03-20 12:22  twisti
+2006-01-20 10:08  twisti
 
-       * src/vm/jit/: jit.c, jit.h, reg.inc, stack.c: New ICMDs:
-         PUTSTATICCONST, PUTFIELDCONST, IMULPOW2, LMULPOW2
+       * src/vm/jit/alpha/md.c (md_init): Moved #include and extern's to the
+       top of the file, since this broke compilation on debian unstable.
 
-2005-03-19 16:57  twisti
+2006-01-19 23:40  edwin
 
-       * src/vm/jit/mips/codegen.c: Implemented integer ICMD_xASTORECONST
-         instructions.
+       * src/vm/jit/parse.h: Added vim boilerplate.
 
-2005-03-18 14:23  twisti
+2006-01-19 23:35  edwin
 
-       * src/cacaoh/Makefile.am: cacaoh does not need libjavalang.
+       * src/vm/jit/stack.c: Added vim boilerplate.
 
-2005-03-18 13:45  twisti
+2006-01-19 22:21  twisti
 
-       * configure.in, src/Makefile.am: External classpath support.
+       * configure.in (AC_CONFIG_FILES): Removed tests/codepatching/Makefile
+       and added tests/regression/codepatching/Makefile.
+       * tests/Makefile.am (SUBDIRS): Removed codepatching.
+       * tests/regression/Makefile.am (SUBDIRS) Added with codepatching.
+       * tests/regression/codepatching/Makefile.am (JAVAFLAGS): Added.
 
-2005-03-18 13:42  twisti
+2006-01-19 22:11  edwin
 
-       * src/lib/.cvsignore: Ignore Makefiles.
+       * src/vm/jit/parse.c (parse): Removed inlining code.
 
-2005-03-18 13:41  twisti
+2006-01-19 22:06  edwin
 
-       * src/lib/Makefile.am: External classpath support.
+       * src/vm/options.c, src/vm/options.h (useinliningm): Removed.
 
-2005-03-18 10:24  twisti
+2006-01-19 22:05  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: First try to
-         implement the scheduler.
+       * tests/codepatching: Moved to tests/regression/codepatching.
 
-2005-03-10 17:33  twisti
+2006-01-19 21:31  edwin
 
-       * src/vm/jit/Makefile.am: Added: if USE_SCHEDULER
+       * src/vm/jit/jit.c (jit_compile): Removed the INAFTERMAIN hack.
 
-2005-03-10 17:22  twisti
+2006-01-19 21:27  edwin
 
-       * configure.in: Added --enable-scheduler, but disabled by default
-         except for xdspcore.
+       * src/vm/jit/inline/inline.c (inlining_setup): Removed INAFTERMAIN
+       hack.
 
-2005-03-10 17:17  christian
+2006-01-19 21:26  edwin
 
-       * src/vm/jit/: lsra.h, lsra.inc: simple LSRA update
+       * src/cacao/cacao.c (main): Disabled useinlining and useinliningm.
 
-2005-03-10 14:47  twisti
+2006-01-19 20:56  twisti
 
-       * src/vm/jit/jit.h: Added IS_ADR_TYPE macro.
+       * src/vm/jit/intrp/codegen.c, src/vm/jit/intrp/java.vmg (FALOAD)
+       (FASTORE): Added, required for big-endian machines.
+       * src/vm/jit/intrp/engine.c (access_array_float): Likewise.
 
-2005-03-10 14:45  twisti
+2006-01-19 20:53  twisti
 
-       * src/vm/jit/stack.c: Pass stdout to disassinstr for xDSPcore.
+       * src/vm/global.h (java_floatarray): Typo.
 
-2005-03-10 14:43  twisti
+2006-01-19 20:28  edwin
 
-       * src/vm/jit/: lsra.h, lsra.inc:
-         - GNU header update
-         - changed __i386__ to __I386__ (cross-compile problems)
+       * src/vm/jit/parse.c (parse, fillextable): Removed debugging code.
+       Minor cleanup.
 
-2005-03-10 14:31  twisti
+2006-01-19 20:13  edwin
 
-       * src/vm/: statistics.c, statistics.h:
-         - reformated some output, so the number from a whole classpath
-           compile can be read
-         - added scheduler statistics
+       * src/vm/jit/parse.c (parse): Removed commented out debugging code.
 
-2005-03-10 13:20  twisti
+2006-01-19 20:03  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Better latency
-         calculation.
+       * src/vm/class.c (class_showmethods): Replaced method_display with
+       method_println.
 
-2005-03-10 09:15  christian
+2006-01-19 20:00  twisti
 
-       * src/vm/jit/: lsra.h, lsra.inc: simple LSRA: argument precoloring
-         with CONSECUTIVE* flags
+       * src/vm/jit/inline/inline.c, src/vm/jit/inline/sets.c,
+       src/vm/jit/inline/parseRTstats.c, src/vm/jit/inline/parseRT.c,
+       src/vm/jit/inline/parseRTprint.h, src/vm/jit/inline/parseXTA.c:
+       Replaced method_display and method_display_w_class calls with
+       method_println.
 
-2005-03-09 13:11  twisti
+2006-01-19 19:49  twisti
 
-       * configure.in: Added --disable-statistics
+       * src/vm/method.c, src/vm/method.h (method_display): Removed.
+       (method_display_w_class): Likewise.
+       (method_printflags): Added.
+       (method_print): Likewise.
+       (method_println): Likewise.
+       Removed. --This line, and those below, will be ignored--
+       
+       M method.c
+       M method.h
 
-2005-03-09 13:07  twisti
+2006-01-19 17:02  twisti
 
-       * src/cacao/cacao.c: #ifdef STATISTICS statistics option.
+       * src/vm/jit/powerpc/linux/Makefile.am (INCLUDES): Renamed to
+       AM_CPPFLAGS.
+       * src/vm/jit/powerpc/Makefile.am (AM_CPPFLAGS): Added missing
+       $(OS_DIR) include.
 
-2005-03-09 13:06  twisti
+2006-01-19 16:02  twisti
 
-       * src/vm/Makefile.am: Only compile statistics object with
-         STATISTICS.
+       * INCLUDES: Replaced with AM_CPPFLAGS as Tom Tromey suggested on irc,
+       as this is more common these days.
 
-2005-03-09 13:01  twisti
+2006-01-19 11:58  edwin
 
-       * src/vm/loader.c: Include config.h and ifdef statistics stuff to
-         support --disable-statistics.
+       * alpha, mips, nat: removed obsolete directories resurrected by svn
+       migration
 
-2005-03-09 12:57  twisti
+2006-01-19 09:47  twisti
 
-       * src/native/: jni.c, vm/VMSystemProperties.c: Include config.h and
-         ifdef statistics stuff to support --disable-statistics.
+       * INCLUDES: Replaced with AM_CPPFLAGS as Tom Tromey suggested on irc,
+       as this is more common these days.
 
-2005-03-09 12:55  twisti
+2006-01-18 21:41  edwin
 
-       * src/: cacaoh/cacaoh.c, mm/memory.c: ifdef statistics stuff to
-         support --disable-statistics.
+       * havoc.class: fix corruption by svn eol-style conversion
 
-2005-03-09 12:53  twisti
+2006-01-18 15:43  twisti
 
-       * src/: toolbox/logging.c, toolbox/logging.h, cacao/cacao.c:
-         Include config.h and ifdef statistics stuff to support
-         --disable-statistics.
+       * AC_CHECK_HEADER: Added ansidecl.h, symcat.h, bfd.h and zconf.h.
 
-2005-03-09 12:53  twisti
+2006-01-18 15:41  twisti
 
-       * src/vm/global.h:
-         - added CACAO_JRE_DIR
-         - removed STATISTICS (configure option)
+       * main: Call nogc_init for DISABLE_GC.
 
-2005-03-09 12:37  twisti
+2006-01-17 18:51  twisti
 
-       * src/vm/jit/: inline/inline.c, inline/parseRT.c,
-         inline/parseRTstats.c, inline/parseXTA.c, jit.c: Include config.h
-         and ifdef statistics stuff to support --disable-statistics.
+       * Removed extern stuff that was removed from the lib.
 
-2005-03-09 12:14  twisti
+2006-01-17 18:37  twisti
 
-       * src/: vm/jit/x86_64/dis-asm.h, toolbox/avl.c, toolbox/list.c:
-         Added config.h to resolve undefined reference on recompilation with
-         a changes config.
+       * Updated to new classpath configure options.
 
-2005-03-08 07:34  christian
+2006-01-17 18:24  twisti
 
-       * src/vm/jit/powerpc/codegen.c: simple lsra first POWERPC Version
-         (all long in memory)
+       * CLASSPATH_INSTALL_DIR: Renamed to CLASSPATH_PREFIX.
 
-2005-03-08 07:27  christian
+2006-01-17 17:06  twisti
 
-       * src/cacao/cacao.c: simple lsra first POWERPC Version (all long in
-         memory)
+       * CACAO_INSTALL_PREFIX: Renamed to CACAO_PREFIX.
+       * NDEBUG: Check for libintl on cygwin and darwin.
+       * --with-classpath-install-dir: Renamed to --with-classpath-prefix.
+       * --with-classpath-libdir: Added to support 64-bit platforms where the
+       libdir may be /usr/lib64.
 
-2005-03-08 07:24  christian
+2006-01-17 16:59  twisti
 
-       * src/vm/jit/: lsra.h, lsra.inc, powerpc/codegen.c: simple lsra
-         first POWERPC Version (all long in memory)
+       * main: Removed CACAO_INSTALL_PREFIX and CLASSPATH_INSTALL_DIR since
+       CACAO_VM_ZIP_PATH and CLASSPATH_GLIBJ_ZIP_PATH are now full paths.
 
-2005-03-07 12:39  twisti
+2006-01-17 16:58  twisti
 
-       * src/vm/jit/stack.c: For xdsp debugging purposes.
+       * Java_gnu_classpath_VMSystemProperties_preInit: Renamed
+       CACAO_INSTALL_PREFIX to CACAO_PREFIX.
 
-2005-03-07 11:46  christian
+2006-01-17 16:57  twisti
 
-       * configure.in, src/vm/global.h: lsra configure switch
+       * CACAO_VM_ZIP_PATH: Prepend CACAO_PREFIX.
+       * CLASSPATH_GLIBJ_ZIP_PATH: Prepend CLASSPATH_PREFIX.
+       * CLASSPATH_LIBRARY_PATH: Prepend CLASSPATH_LIBDIR.
 
-2005-03-07 11:15  twisti
+2006-01-17 16:55  twisti
 
-       * src/native/: nativetable.inc, include/Makefile.am: Forgot to add
-         native functions which are implemented in classpath itself.
+       * CLASSPATH_INSTALL_DIR: Renamed to CLASSPATH_PREFIX.
 
-2005-03-07 10:50  twisti
+2006-01-17 16:53  twisti
 
-       * src/native/native.c: Compile warning fix.
+       * Added.
 
-2005-03-07 10:04  christian
+2006-01-17 16:51  twisti
 
-       * src/vm/jit/: lsra.h, lsra.inc: simple LSRA Update
+       * m4/as-ac-expand.m4: Added.
 
-2005-03-07 09:43  christian
+2006-01-16 00:07  twisti
 
-       * src/: cacao/cacao.c, vm/global.h, vm/jit/lsra.h, vm/jit/lsra.inc,
-         vm/jit/x86_64/codegen.c: simple LSRA for i386,alpha, x86_64
+       * jni_init: Fixed small typo.
 
-2005-03-07 00:10  stefan
+2006-01-16 00:04  twisti
 
-       * src/vm/jit/powerpc/: asmpart.S, codegen.c: don't use r2 as a temp
-         register on linux was also used as an "argument register" to
-         asm_call_jit_compiler
+       * Java_gnu_classpath_VMSystemProperties_preInit: Use the same os.arch
+       property values as SUN and others do, so we are compatible (e.g.
+       jogl had
+       some problems), file.encoding removed as it's set by GNU Classpath,
+       hardcode values for gnu.cpu.endian.
 
-2005-03-05 19:47  twisti
+2006-01-15 23:32  twisti
 
-       * src/scripts/: cacao.in, java.in, rmiregistry.in: Bugfix.
+       * utf_java_nio_DirectByteBufferImpl_ReadWrite: Removed.
+       * utf_gnu_classpath_Pointer{32,64}: Likewise.
+       * class_java_nio_Buffer: Added, load and link this class in
+       jni_init().
+       * class_java_nio_DirectByteBufferImpl: Likewise.
+       * NewDirectByteBuffer: Removed debug output.
+       * GetDirectBufferAddress: Added instanceof check.
+       * GetDirectBufferCapacity: Likewise.
 
-2005-03-05 18:54  twisti
+2006-01-15 14:12  twisti
 
-       * configure.in: Removed src/native/tools/Makefile.
+       * native_new_and_init: Ooops, reverting last change and added an
+       explaining
+       comment.
 
-2005-03-05 18:27  twisti
+2006-01-15 13:32  twisti
 
-       * src/scripts/Makefile.am: Added bin_SCRIPTS.
+       * CLASSPATH_LIBRARY_PATH, CLASSPATH_GLIBJ_ZIP_PATH: Temporary bugfix.
 
-2005-03-05 18:27  twisti
+2006-01-15 12:28  twisti
 
-       * configure.in:
-         - add AM_MAINTAINER_MODE
-         - removed --enable-portable-native-sync
-         - pass architecture specific library dir to classpath via --libdir
+       * native_findfunction: #ifdef ENABLE_STATICVM.
+       * native_new_and_init: Fixed return value.
 
-2005-03-05 18:10  twisti
+2006-01-15 01:56  twisti
 
-       * src/cacaoh/: headers.c, headers.h: Removed unused
-         printnativetableentry function.
+       * math.h: Added for isnan.
 
-2005-03-05 18:07  twisti
+2006-01-15 00:37  twisti
 
-       * src/cacao/Makefile.am:
-         - removed gtk lib linking stuff
-         - removed install hook
+       * JAVAC: Removed.
 
-2005-03-05 18:05  twisti
+2006-01-15 00:36  twisti
 
-       * src/cacao/cacao.c: Property bugfix: -Dfoo creates an empty
-         property
+       * Java_gnu_classpath_VMSystemProperties_preInit: Set user.country
+       instead
+       of user.region, set en_US if none is defined,
+       java.protocol.handler.pkgs
+       removed.
 
-2005-03-05 18:01  twisti
+2006-01-14 20:02  twisti
 
-       * src/Makefile.am: Added scripts to SUBDIRS.
+       * builtin_trace_args: Added callcount to verbose call output.
 
-2005-03-05 17:59  twisti
+2006-01-14 17:19  edwin
 
-       * src/native/nativetable.inc: Table of native functions CACAO
-         implements (is now hardcoded and not generated anymore, because the
-         classpath VM api should be more or less stable).
+       * src/native/vm/Method.c (invokeNative): check class access rights
 
-2005-03-05 17:58  twisti
+2006-01-13 19:37  twisti
 
-       * src/native/native.c: Removed old, unused gtk stuff.
+       * codegen_setup: #ifdef datareferences.
 
-2005-03-05 17:57  twisti
+2006-01-13 18:51  twisti
 
-       * src/native/Makefile.am: Removed nativetable.inc generation stuff.
+       * This class does not differ from the GNU classpath upstream version.
 
-2005-03-05 17:57  twisti
+2006-01-13 18:49  twisti
 
-       * src/native/include/Makefile.am:
-         - removed headers which are not required
-         - changed header generation
+       * defineClassWithTransformers: Added, updated to generics version.
 
-2005-03-05 17:56  twisti
+2006-01-13 15:29  twisti
 
-       * src/native/classes.am: Not needed anymore.
+       * codegendata: #ifdef datareferences member.
+       * codegen_finish: Moved data segment reference resolving into
+       dseg_resolve_datareferences.
 
-2005-03-05 17:55  twisti
+2006-01-13 15:28  twisti
 
-       * src/native/tools/: Makefile.am, gennativetable.c: From now, we
-         use a hardcoded nativetable.
+       * dseg_resolve_datareferences: Added.
 
-2005-03-05 17:53  twisti
+2006-01-13 15:27  twisti
 
-       * src/native/vm/Makefile.am:
-         - removed old, unused gtk files
-         - removed implementednatives.data stuff
+       * Small reformatting.
 
-2005-03-05 17:50  twisti
+2006-01-13 10:47  twisti
 
-       * src/native/vm/VMRuntime.c: Removed unused headers.
+       * src/vm/jit/{i386,x86_64}/{dis-asm.h,i386-dis.c}: Removed.
+       * src/vm/jit/powerpc/{ppc.h,ppc-dis.c,ppc-opc.c}: Likewise.
+       * m4/{ac_prog_javac.m4,ac_prog_javac_works.m4}: Added.
 
-2005-03-05 17:50  twisti
+2006-01-13 10:42  twisti
 
-       * src/native/vm/VMClass.c: Header fixes.
+       * ICMD_MULTIANEWARRAY: Usage of iptr->val.a and iptr->target changed.
 
-2005-03-05 17:47  twisti
+2006-01-13 10:11  twisti
 
-       * src/native/vm/: GtkComponentPeer.c, GtkFileDialogPeer.c,
-         GtkScrollPanePeer.c: Not required anymore.
+       * codegen.h: Added when ENABLE_JIT defined.
+       * codegen_addpatchref: Set lastmcodeptr when ENABLE_JIT is defined
+       and the
+       architecture requires it.
 
-2005-03-05 16:55  twisti
+2006-01-13 10:09  twisti
 
-       * src/vm/jit/x86_64/codegen.c:
-         - removed ALIGNCODENOP
-         - bugfix in runverbose: float register have been copied to the wrong
-           integer registers
+       * ICMD_MULTIANEWARRAY: Usage of iptr->val.a and iptr->target changed.
 
-2005-03-05 16:42  twisti
+2006-01-12 23:54  twisti
 
-       * src/vm/jit/x86_64/codegen.h: Removed ALIGNCODENOP.
+       * ICMD_MULTIANEWARRAY: Usage of iptr->val.a and iptr->target changed.
 
-2005-03-05 15:37  twisti
+2006-01-12 23:33  twisti
 
-       * doc/.cvsignore, doc/handbook/.cvsignore, src/boehm-gc/.cvsignore,
-         src/boehm-gc/doc/.cvsignore, src/boehm-gc/include/.cvsignore,
-         src/cacao/.cvsignore, src/cacaoh/.cvsignore, src/mm/.cvsignore,
-         src/native/.cvsignore, src/native/include/.cvsignore,
-         src/native/vm/.cvsignore, src/threads/.cvsignore,
-         src/threads/green/.cvsignore, src/threads/native/.cvsignore,
-         src/toolbox/.cvsignore, src/vm/jit/alpha/.cvsignore,
-         src/vm/jit/i386/.cvsignore, src/vm/jit/inline/.cvsignore,
-         src/vm/jit/loop/.cvsignore, src/vm/jit/mips/.cvsignore,
-         src/vm/jit/powerpc/.cvsignore, src/vm/jit/tools/.cvsignore,
-         src/vm/jit/verify/.cvsignore, src/vm/jit/x86_64/.cvsignore,
-         man/.cvsignore, src/.cvsignore, src/scripts/.cvsignore,
-         src/vm/.cvsignore, src/vm/jit/.cvsignore,
-         src/vm/jit/schedule/.cvsignore, tests/.cvsignore,
-         tests/native/.cvsignore, .cvsignore: Just ignore some files.
+       * arch.h: Added.
+       * GC_test_and_set: Removed 64-bit version since the 32-bit seems to be
+       sufficient and works.
 
-2005-03-04 18:09  twisti
+2006-01-12 23:31  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Friday save.
+       * show_icmd: Use CLASS_IS_OR_ALMOST_INITIALIZED.
+       * initialize_class: Use CLASS_IS_OR_ALMOST_INITIALIZED.
 
-2005-03-04 17:30  twisti
+2006-01-12 23:30  twisti
 
-       * src/native/: Makefile.am, include/Makefile.am: Build directory
-         fixes.
+       * CLASS_IS_OR_ALMOST_INITIALIZED: Added.
 
-2005-03-04 17:14  twisti
+2006-01-12 23:27  twisti
 
-       * src/vm/jit/powerpc/Makefile.am: Build directory fixes.
+       * GETSTATIC_FLOAT, PUTSTATIC_FLOAT, GETFIELD_FLOAT, PUTFIELD_FLOAT:
+       Added.
+       * PATCHER_GETSTATIC_FLOAT, PATCHER_PUTSTATIC_FLOAT,
+       PATCHER_GETFIELD_FLOAT,
+       PATCHER_PUTFIELD_FLOAT: Likewise.
+       * TRACENATIVECALL: Removed codegen_findmethod, use methodinfo* from
+       threaded code stream.
+       * TRACECALL, TRACERETURN, TRACELRETURN: Likewise.
 
-2005-03-04 16:53  twisti
+2006-01-12 23:23  twisti
 
-       * configure.in: Removed jvm98 Makefile.
+       * Some 64-bit big-endian bugfixes.
+       * Use CLASS_IS_OR_ALMOST_INITIALIZED macro.
 
-2005-03-04 16:49  christian
+2006-01-12 23:21  twisti
 
-       * src/vm/jit/: jit.c, lsra.h, lsra.inc: [no log message]
+       * 64-bit big-endian bugfix: replace s4 with ptrint.
 
-2005-03-04 16:20  twisti
+2006-01-12 23:10  twisti
 
-       * tests/Makefile.am: Removed jvm98 subdir.
+       * Imported for the interpreter.
 
-2005-03-04 12:33  twisti
+2006-01-12 23:09  twisti
 
-       * ChangeLog: Updated.
+       * Added powerpc64 target.
 
-2005-03-04 12:33  twisti
+2006-01-12 23:08  twisti
 
-       * ChangeLog-1998, ChangeLog-1999, ChangeLog-2000, ChangeLog-2001,
-         ChangeLog-2002, ChangeLog-2003, ChangeLog-2004: Yearly
-         changelogs.
+       * intrp_disassinstr, intrp_disassemble: Added.
 
-2005-03-03 12:25  twisti
+2006-01-12 23:07  twisti
 
-       * src/vm/jit/powerpc/: disass.c, disass.h:
-         - don't pass unused pos to disassinstr
-         - use disassinstr in disassemble
+       * vm/options.h: Added.
 
-2005-03-03 11:59  twisti
+2006-01-12 23:05  twisti
 
-       * src/vm/jit/mips/: disass.c, disass.h: Don't pass unused pos to
-         disassintr.
+       * config.h, vm/types.h: Added.
 
-2005-03-03 11:43  twisti
+2006-01-12 23:03  twisti
 
-       * src/vm/jit/: stack.c, alpha/disass.c, alpha/disass.h: Don't pass
-         pos to disassinstr.
+       * Use ASM_CALLJAVAFUNCTION* macros.
 
-2005-03-02 17:27  twisti
+2006-01-12 22:42  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Hopefully last
-         attempt.
+       * thread_addstaticcritical: Quick hack: #ifdef ENABLE_JIT
+       asm_criticalsections.
+       * sigsuspend_handler: Quick hack: #ifdef ENABLE_JIT
+       thread_restartcriticalsection.
 
-2005-03-02 11:56  twisti
+2006-01-12 22:41  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Save.
+       * vm/options.h: Added.
+       * descriptor_pool_parse_method_descriptor: #ifdef ENABLE_JIT
+       md_param_alloc
+       call.
+       * descriptor_params_from_paramtypes: Likewise.
 
-2005-03-01 21:06  carolyn
+2006-01-12 22:40  twisti
 
-       * src/: native/vm/VMThread.c, vm/statistics.c, vm/statistics.h,
-         vm/jit/parse.c, vm/jit/inline/inline.c,
-         vm/jit/inline/parseRTprint.h: added inline statistics + error
-         check in VMThread.c
+       * Fixed a lot of compiler warnings (functionptr -> u1*).
 
-2005-03-01 18:17  twisti
+2006-01-12 22:39  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Update.
+       * regs: Removed.
+       * disassinstr, disassemble: Prefixed with intrp_.
 
-2005-03-01 15:09  motse
+2006-01-12 22:38  twisti
 
-       * src/native/jni.c: fix: GetJavaVM now returns a pointer to a
-         global variable ptr_jvm instead of a local one. GetEnv returns a
-         pointer to a pointer (ptr_env) not only one pointer
-         (JNI_JNIEnvTable).
+       * ICMD_MULTIANEWARRAY: Usage of iptr->val.a and iptr->target changed.
 
-2005-02-28 21:23  twisti
+2006-01-12 22:37  twisti
 
-       * src/native/include/Makefile.am: Removed java_lang_JOWENNTest1.h
+       * builtin_gen_table: #if function according to arch.h.
+       * codegen: Prefixed with intrp_, usage of iptr->val.a and iptr->target
+       changed.
+       * codegen_createlinenumbertable: Renamed to
+       dseg_createlinenumbertable.
+       * createcompilerstub: Prefixed with intrp_.
+       * createnativestub: Likewise.
 
-2005-02-25 16:51  carolyn
+2006-01-12 22:35  twisti
 
-       * src/vm/: global.h, loader.h, jit/parse.c, jit/inline/parseRT.c,
-         jit/inline/parseXTA.c, jit/inline/sets.c, jit/inline/sets.h: XTA
-         running
+       * verify_multianewarray: Usage iptr->val.a and iptr->target changed.
+       * JAVA_MULTIANEWARRAY: Pass c in iptr->val.a and cr in iptr->target.
 
-2005-02-25 00:39  twisti
+2006-01-12 22:34  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Build fix (sorry).
+       * codegen_createnativestub: #ifdef ENABLE_JIT md_param_alloc call.
+       * codegen_disassemble_nativestub: Use DISASSEMBLE macro.
 
-2005-02-24 20:52  twisti
+2006-01-12 22:32  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Whatever.
+       * analyse_stack: #ifdef ENBALE_JIT md_return_alloc call.
+       * icmd_print_stack: Print regs correctly for jit.
+       * show_icmd_method: Likewise.
 
-2005-02-24 09:44  twisti
+2006-01-12 21:55  twisti
 
-       * src/vm/jit/schedule/schedule.h: Next save.
+       * builtintable_internal: Removed ICMD_CHECKCAST.
 
-2005-02-23 18:03  twisti
+2006-01-12 21:39  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Save.
+       * Prefixed functions with intrp_.
+       * md_init, md_stacktrace_get_returnaddress: Prefixed with intrp_.
+       * thread_restartcriticalsection, md_param_alloc, md_return_alloc:
+       Removed.
 
-2005-02-23 12:50  twisti
+2006-01-12 21:38  twisti
 
-       * src/vm/jit/: reg.h, reg.inc: Renamed: floatregsnum -> fltregsnum
-                  floatreg_ret -> fltreg_ret This is more consistent with the
-         other names.
+       * Prefix functions with intrp_.
 
-2005-02-23 12:47  twisti
+2006-01-12 21:37  twisti
 
-       * src/vm/jit/schedule/: schedule.c, schedule.h: Progress...
+       * Use ptrint instead of s8 in some places.
 
-2005-02-23 12:06  twisti
+2006-01-12 21:36  twisti
 
-       * src/vm/jit/: alpha/arch.h, i386/arch.h, mips/arch.h,
-         powerpc/arch.h, x86_64/arch.h: Added SUPPORT_MUL_CONST define.
+       * Use DISASSINSTR macro.
 
-2005-02-19 12:46  carolyn
+2006-01-12 21:36  michi
 
-       * src/vm/: global.h, jit/inline/inline.c, jit/inline/parseRT.c,
-         jit/inline/parseXTA.c, jit/inline/sets.c, jit/inline/sets.h: xta
-         full code
+       * Comment updated (for asm_cacheflush)
 
-2005-02-19 12:32  carolyn
+2006-01-12 21:35  twisti
 
-       * src/vm/builtin.c: 1st level calls print
+       * intrp_createcompilerstub, intrp_createnativestub, intrp_codegen:
+       Added.
+       * codegen.h: Include only for some archs.
+       * md-abi.h: Include only for arm.
+       * codegen_init: Changed #ifdef to ENABLE_JIT.
+       * codegen_createnativestub: Call reg_setup only for jit, #ifdef
+       createnativestub to support interpreter.
 
-2005-02-18 08:45  christian
+2006-01-12 21:30  twisti
 
-       * src/vm/jit/lsra.inc: [no log message]
+       * intrp_md_stacktrace_get_returnaddress: Added.
+       * cacao_stacktrace_fillInStackTrace: #ifdef
+       md_stacktrace_get_returnaddress
+       to support interpreter.
 
-2005-02-17 21:43  christian
+2006-01-12 21:29  twisti
 
-       * src/vm/jit/jit.c: [no log message]
+       * Seperate ENABLE_JIT and ENABLE_INTRP.
 
-2005-02-17 20:50  twisti
+2006-01-12 21:17  twisti
 
-       * src/vm/jit/x86_64/: disass.c, disass.h: disassembler fixes.
+       * config.h: Added.
+       * intrp_patcher_get_putstatic, intrp_patcher_get_putfield,
+       intrp_patcher_aconst, intrp_patcher_builtin_multianewarray,
+       intrp_patcher_builtin_arraycheckcast,
+       intrp_patcher_invokestatic_special,
+       intrp_patcher_invokevirtual, intrp_patcher_invokeinterface,
+       intrp_patcher_checkcast_instanceof, intrp_patcher_resolve_native:
+       Likewise.
 
-2005-02-17 20:47  christian
+2006-01-12 21:16  twisti
 
-       * configure.in, src/vm/statistics.c, src/vm/statistics.h,
-         src/vm/jit/reg.h, src/vm/jit/reg.inc: [no log message]
+       * jit_compile_intern: #ifdef codegen call to support interpreter, use
+       DISASSEMBLE macro.
 
-2005-02-17 14:42  christian
+2006-01-12 21:15  twisti
 
-       * src/vm/: statistics.c, statistics.h, jit/codegen.inc, jit/jit.c,
-         jit/lsra.h, jit/lsra.inc: [no log message]
+       * DISASSINSTR, DISASSEMBLE: Added.
 
-2005-02-17 12:41  twisti
+2006-01-12 21:14  twisti
 
-       * src/vm/jit/Makefile.am: Added schedule subdir.
+       * Use ASM_CALLJAVAFUNCTION macro.
 
-2005-02-17 12:41  twisti
+2006-01-12 21:13  twisti
 
-       * src/vm/jit/codegen.inc: Don't declare float/double functions on
-         xdspcore (prevent warnings).
+       * Use ASM_CALLJAVAFUNCTION_INT macro.
 
-2005-02-17 12:40  twisti
+2006-01-12 21:11  twisti
 
-       * src/vm/jit/schedule/: Makefile.am, schedule.c, schedule.h:
-         Initial commit for instruction scheduler.
+       * intrp_asm_calljavafunction, intrp_createcompilerstub,
+       intrp_asm_getclassvalues_atomic: Added.
 
-2005-02-16 15:46  twisti
+2006-01-12 21:08  twisti
 
-       * src/vm/jit/powerpc/codegen.c: Calling convention fixes.
+       * Use ASM_CALLJAVAFUNCTION macros.
+       * main: #ifdef md_init call to support interpreter.
+       * link_class_intern: #ifdef createcompilerstub call to support
+       interpreter.
 
-2005-02-15 21:01  christian
+2006-01-12 21:07  twisti
 
-       * src/vm/jit/lsra.inc: [no log message]
+       * Use ASM_CALLJAVAFUNCTION macros.
 
-2005-02-15 17:53  twisti
+2006-01-12 21:06  twisti
 
-       * src/vm/jit/alpha/asmpart.S: Use: utf_fillInStackTrace,
-         utf_void__java_lang_Throwable
+       * Use ASM_CALLJAVAFUNCTION_ADR macro.
+       * Use ASM_CALLJAVAFUNCTION macro.
 
-2005-02-15 17:52  twisti
+2006-01-12 21:04  twisti
 
-       * src/vm/jit/alpha/codegen.c:
-         - some signal changes
-         - include "cacao/cacao.h"
+       * intrp_md_init: Added.
 
-2005-02-15 17:51  twisti
+2006-01-12 20:57  twisti
 
-       * src/vm/jit/alpha/Makefile.am: Build dir fixes.
+       * Check explicitly for isnan.
 
-2005-02-15 17:30  christian
+2006-01-12 18:25  twisti
 
-       * src/vm/jit/: jit.c, lsra.h, lsra.inc: new lsra version
+       * print_dynamic_super_statistics: Added from intrp.
 
-         ---------------------------------------------------------------------
+2006-01-12 18:09  michi
 
-2005-02-15 14:14  twisti
+       * Included md-abi.h (needed for REG_SPLIT on Arm)
 
-       * src/vm/jit/i386/: disass.c, disass.h:
-         - disassemble use disassinstr
-         - don't pass `pos' to disassinstr
+2006-01-12 17:52  twisti
 
-2005-02-15 14:08  twisti
+       * We have to use a machine dependent arch.h.
 
-       * src/vm/jit/stack.c:
-         - we don't need `i' passed to disassinstr
-         - don't increase counters in for loop
+2006-01-11 12:16  twisti
 
-2005-02-14 21:25  stefan
+       * vm/jit/codegen.inc.h: Removed.
+       * Fixed compiler warnings.
 
-       * src/vm/jit/powerpc/asmpart.S: range overwrite fixed in
-         asm_cacheflush
+2006-01-11 10:35  twisti
 
-2005-02-10 12:41  twisti
+       * ICMD_F2I, ICMD_D2I, ICMD_F2L, ICMD_D2L: #if 0.
 
-       * src/native/: native.c, native.h: Forgot to remove some class_*
-         stuff (thanks go to the irix linker, man you are a great linker ;-)
+2006-01-11 10:01  twisti
 
-2005-02-10 12:15  twisti
+       * SUPPORT_FMOD: Removed.
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F, SUPPORT_I2D or
+       SUPPORT_L2F,
+       SUPPORT_L2D.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.
 
-       * src/vm/jit/i386/Makefile.am:
-         - using top_builddir instead of top_srcdir where required to support
-           build directories
-         - INCLUDES adjusted
+2006-01-10 22:44  twisti
 
-2005-02-10 12:13  twisti
+       * SUPPORT_FMOD: Removed.
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F, SUPPORT_I2D or
+       SUPPORT_L2F,
+       SUPPORT_L2D.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.
 
-       * src/vm/jit/i386/asmpart.S:
-         - using utf_fillInStackTrace, utf_void__java_lang_Throwable
-         - smaller chnages
+2006-01-10 22:38  twisti
 
-2005-02-10 12:12  twisti
+       * SUPPORT_FMOD: Removed.
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F, SUPPORT_I2D or
+       SUPPORT_L2F,
+       SUPPORT_L2D.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.
 
-       * src/vm/jit/i386/codegen.c:
-         - using of utf_fillInStackTrace, utf_void__java_lang_Throwable
-         - smaller signal changes
+2006-01-10 22:22  twisti
 
-2005-02-10 12:04  twisti
+       * EXTRA_DIST: Added ChangeLog-2005.
 
-       * src/vm/: loader.c, loader.h:
-         - #include "vm/stringlocal.h"
-         - removed static utf_* variables
-         - removed class_* variables
-         - loader_init now returns a bool to indicate an error
+2006-01-10 22:18  twisti
 
-2005-02-10 12:01  twisti
+       * SUPPORT_FMOD: Removed.
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F, SUPPORT_I2D or
+       SUPPORT_L2F,
+       SUPPORT_L2D.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.
 
-       * src/vm/: exceptions.c, exceptions.h:
-         - #include config.h, vm/class.h, vm/exceptions.h, vm/options.h,
-           vm/stringlocal.h
-         - removed class_* variables
-         - added string_java_lang_InstantiationException
-         - renamed init_system_exceptions to exceptions_init
+2006-01-10 22:11  twisti
 
-2005-02-10 11:58  twisti
+       * asm_getclassvalues_atomic: Replaced with ASM_GETCLASSVALUES_ATOMIC.
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F or SUPPORT_I2D.
+       * SUPPORT_FICVT: Replaced with SUPPORT_F2I.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2L or SUPPORT_D2L.
 
-       * src/vm/builtin.c:
-         - #include "vm/stringlocal.h"
-         - builtin_throw_exception: free memory allocated by
-         javastring_tochar
+2006-01-10 22:09  twisti
 
-2005-02-10 11:57  twisti
+       * ASM_CALLJAVAFUNCTION, ASM_CALLJAVAFUNCTION_ADR,
+       ASM_CALLJAVAFUNCTION_INT,
+       ASM_CALLJAVAFUNCTION2, ASM_CALLJAVAFUNCTION2_ADR,
+       ASM_CALLJAVAFUNCTION2_INT, ASM_CALLJAVAFUNCTION2_LONG,
+       ASM_CALLJAVAFUNCTION2_FLOAT, ASM_CALLJAVAFUNCTION2_DOUBLE: Macros
+       added,
+       these macros hide the selection between jit and intrp functions.
+       * ASM_GETCLASSVALUES_ATOMIC: Likewise.
+       * intrp_asm_calljavafunction, intrp_asm_calljavafunction_int: Added.
+       * intrp_asm_calljavafunction2, intrp_asm_calljavafunction2int,
+       intrp_asm_calljavafunction2long, intrp_asm_calljavafunction2float,
+       intrp_asm_calljavafunction2double: Likewise.
+       * intrp_asm_getclassvalues_atomic: Likewise.
 
-       * src/vm/builtin.h: Moved thread related defines into threads.h.
+2006-01-10 21:58  twisti
 
-2005-02-10 11:57  twisti
+       * SUPPORT_IFCVT: Replaced with SUPPORT_I2F or SUPPORT_I2D.
+       * SUPPORT_LONG_FCVT: Replaced with SUPPORT_L2F or SUPPORT_L2D.
+       * SUPPORT_LONG_ICVT: Replaced with SUPPORT_F2I, SUPPORT_F2L or
+       SUPPORT_D2I,
+       SUPPORT_D2L.
 
-       * src/vm/Makefile.am: Added class.[ch], string.[ch], utf8.[ch]
+2006-01-10 21:11  twisti
 
-2005-02-10 11:55  twisti
+       * exceptions_throw_negativearraysizeexception: Use
+       * builtin_throw_exception: #ifndef NDEBUG.
+       * builtin_trace_exception: Likewise.
+       * builtin_trace_args: Likewise.
+       * builtin_displaymethodstop: Likewise.
+       * builtin_*: #if the function regarding the defines in arch.h.
 
-       * src/vm/global.h:
-         - added THREADSPECIFIC define for !USE_THREADS
-         - removed structs: utf, literalstring, hashtable
+2006-01-10 20:57  twisti
 
-2005-02-10 11:54  twisti
+       * exceptions_throw_classformaterror,
+       exceptions_throw_arrayindexoutofboundsexception,
+       exceptions_throw_illegalargumentexception,
+       exceptions_throw_negativearraysizeexception,
+       exceptions_throw_nullpointerexception: Added.
+       * exceptions_print_exception: #ifndef NDEBUG.
 
-       * src/vm/: tables.c, tables.h: Moved string stuff into string.[ch],
-         utf into utf8.[ch] and class stuff into class.[ch].
+2006-01-10 20:56  twisti
 
-2005-02-10 11:52  twisti
+       * exceptions_throw_classformaterror: Use this function.
 
-       * src/vm/jit/stacktrace.c:
-         - added #include "vm/class.h"
-         - removed local class_* variables
+2006-01-10 20:55  twisti
 
-2005-02-10 11:51  twisti
+       * exceptions_throw_nullpointerexception: Use this function.
 
-       * src/vm/jit/parse.c: #include "vm/stringlocal.h"
+2006-01-10 20:50  twisti
 
-2005-02-10 11:50  twisti
+       * exceptions_throw_nullpointerexception,
+       exceptions_throw_arrayindexoutofboundsexception: Use these
+       functions.
 
-       * src/vm/jit/: inline/parseRT.c, inline/parseRTstats.c,
-         inline/parseXTA.c, verify/typeinfo.c: #include "vm/class.h"
+2006-01-10 20:48  twisti
 
-2005-02-10 11:47  twisti
+       * exceptions_throw_nullpointerexception,
+       exceptions_throw_illegalargumentexception: Use these functions.
 
-       * src/vm/: class.c, class.h, string.c, stringlocal.h, utf8.c,
-         utf8.h: Mostly stuff from native.[ch] and tables.[ch].
+2006-01-10 20:46  twisti
 
-2005-02-10 11:46  twisti
+       * exceptions_throw_illegalargumentexception,
+       exceptions_throw_negativearraysizeexception,
+       exceptions_throw_arrayindexoutofboundsexception,
+       exceptions_throw_nullpointerexception: Use these functions.
 
-       * src/toolbox/: logging.c, logging.h: Moved utf log functions from
-         native.c.
+2006-01-10 20:44  twisti
 
-2005-02-10 11:43  twisti
+       * exceptions_throw_classformaterror,
+       exceptions_throw_negativearraysizeexception,
+       exceptions_throw_nullpointerexception: Added.
 
-       * src/threads/native/threads.c: #include "vm/stringlocal.h"
+2006-01-10 15:52  twisti
 
-2005-02-10 11:43  twisti
+       * Not required anymore.
 
-       * src/threads/: green/threads.h, native/threads.h: Added
-         THREADSPECIFIC define.
+2006-01-10 15:50  twisti
 
-2005-02-10 11:42  twisti
+       * use_class_as_object, create_property, copy_vftbl, create_methodsig:
+       Removed.
+       * classMeth, nativeCall, methodCall, nativeMethod, nativeCompCall,
+       methodCompCall, nativeCompMethod: Likewise.
+       * natcall2utf, printNativeCall, markNativeMethodsRT: Likewise.
 
-       * src/native/jni.c:
-         - added authors
-         - moved utf variables into utf8
-         - use global string, utf and class variables
-         - implemented new functions, enhanced functions
+2006-01-10 15:48  twisti
 
-2005-02-10 11:34  twisti
+       * nativeCalls, nativeCompCalls: Removed.
+       * copy_vftbl, create_methodsig: Likewise.
+       * printNativeCall, printCompNativeCall, findNativeMethodCalls,
+       findNativeClassCalls, utfNativeCall, natcall2utf: Likewise.
 
-       * src/native/jni.h:
-         - added authors
-         - define JNI_OK, JNI_ERR, JNI_EDETACHED, JNI_EVERSION
-         - renamed invoke/native interface structs
+2006-01-10 10:59  twisti
 
-2005-02-10 11:10  twisti
+       * codegen_ncode_increase: Typo.
 
-       * src/native/: native.c, native.h: Moved string related stuff into
-         vm/string.[ch], utf8 stuff into vm/utf8.[ch] and class stuff into
-         vm/class.[ch].
+2006-01-09 20:52  twisti
 
-2005-02-10 11:08  twisti
+       * disass_buf: Fixed typo.
 
-       * src/native/vm/: Field.c, Makefile.am, VMClass.c, VMClassLoader.c,
-         VMRuntime.c, VMStackWalker.c, VMString.c, VMSystemProperties.c,
-         VMThrowable.c: class and utf8 related changes.
+2006-01-09 20:28  twisti
 
-2005-02-10 11:07  twisti
+       * disass_printf: Ooops, #ifdef was wrong.
 
-       * src/native/vm/VMSecurityManager.c: This functionality is now
-         implemented in VMStackWalker.
+2006-01-09 20:19  twisti
 
-2005-02-10 11:06  twisti
+       * Removed, we now link against libbfd and libopcodes.
+       * stdarg.h, string.h, assert.h, vm/jit/powerpc/dis-asm.h: Removed.
+       * dis-asm.h, stdio.h, vm/jit/disass.h: Added.
+       * myprintf, buffer_read_memory, perror_memory, generic_print_address,
+       generic_symbol_at_address, bfd_getb32, bfd_getl32, sprintf_vma:
+       Removed.
+       * Use disass-common.c stuff.
 
-       * src/native/include/Makefile.am: Removed
-         java_lang_VMSecurityManager.h
+2006-01-09 20:15  twisti
 
-2005-02-10 11:04  twisti
+       * libarch_la_SOURCES: Removed dis-asm.h, ppc-dis.c, ppc-opc.c and
+       ppc.h.
 
-       * src/native/tools/gennativetable.c: Call new init code.
+2006-01-09 19:21  twisti
 
-2005-02-10 11:03  twisti
+       * assert.h, stdarg.h, vm/jit/x86_64/dis-asm.h: Removed.
+       * stdio.h, vm/jit/disass.h: Added.
+       * myprintf, buffer_read_memory, generic_symbol_at_address,
+       generic_print_address, perror_memory: Likewise.
+       * Use disass-common.c stuff.
 
-       * src/native/tools/Makefile.am: Use libcacaoh.a
+2006-01-09 16:37  twisti
 
-2005-02-10 11:03  twisti
+       * string.h, vm/jit/i386/dis-asm.h: Removed.
+       * mylinebuf, mylen: Likewise.
+       * myprintf, buffer_read_memory, generic_symbol_at_address,
+       generic_print_address, perror_memory: Likewise.
+       * Use disass-common.c stuff.
 
-       * src/cacaoh/Makefile.am: Better include headers.o in libcacaoh.a
-         so we can reuse it simply with gennativetable.
+2006-01-09 16:36  twisti
 
-2005-02-10 10:57  twisti
+       * WITH_BINUTILS_DISASSEMBLER: Added, define DISASS_OBJ.
+       * noinst_LTLIBRARIES: Added DISASS_OBJ.
 
-       * src/native/classes.am: Removed java.lang.VMSecurityManager
+2006-01-09 16:30  twisti
 
-2005-02-10 10:57  twisti
+       * This file contains the common functions required when we use the
+       binutils
+       disassembler.
 
-       * src/cacaoh/headers.h: Declare _exceptionptr as extern.
+2006-01-09 16:29  twisti
 
-2005-02-10 10:57  twisti
+       * WITH_BINUTILS_DISASSEMBLER: Added.
+       * disass_printf: Added.
 
-       * src/cacaoh/headers.c: Removed some stuff.
+2006-01-09 16:26  twisti
 
-2005-02-10 10:55  twisti
+       * WITH_BINUTILS_DISASSEMBLER: Added.
 
-       * src/cacaoh/cacaoh.c:
-         - call new init code
-         - throw exceptions on failure
+2006-01-09 12:12  twisti
 
-2005-02-10 10:55  twisti
+       * Removed, we now link against libbfd and libopcodes.
 
-       * src/cacaoh/Makefile.am: Build a libcacaoh.a to overcome linker
-         resolving issue.
+2006-01-09 12:10  twisti
 
-2005-02-10 10:54  twisti
+       * libarch_la_SOURCES: Removed dis-asm.h and i386-dis.c.
 
-       * src/cacao/Makefile.am: Build a libcacao.a to overcome linker
-         resolving issues.
+2006-01-09 10:37  twisti
 
-2005-02-10 10:53  twisti
+       * AC_CHECK_HEADER checks for ansidecl.h, bfd.h and symcat.h removed.
+       * AC_CHECK_HEADER check for dis-asm.h added.
+       * AC_CHECK_LIB checks for libbfd and libopcodes added.
 
-       * src/cacao/cacao.c:
-         - added -version
-         - call new init stuff
+2006-01-09 10:35  twisti
 
-2005-02-09 20:43  twisti
+       * Removed, we now link against libbfd and libopcodes.
+       * libarch_la_SOURCES: Removed dis-asm.h and i386-dis.c, we now link
+       against
+       libbfd and libopcodes.
 
-       * src/native/vm/VMSystemProperties.c: Set java.version to 1.4
+2006-01-08 23:37  twisti
 
-2005-02-09 12:23  twisti
+       * Updated from GNU Classpath:
+       
+       2005-12-17 Guilhem Lavaux <guilhem@kaffe.org>
+       
+       * native/fdlibm/fdlibm.h
+       (isnan): Define explicitly isnan if it is not a macro.
 
-       * src/native/: Makefile.am, include/Makefile.am: Defer the usage of
-         bootstrap.zip back.
+2006-01-08 23:00  twisti
 
-2005-02-08 16:09  twisti
+       * loader_load_all_classes: Print exception when loading failed.
 
-       * src/native/vm/VMStackWalker.c: VM stuff of
-         vm/reference/gnu/classpath/VMStackWalker.java
+2006-01-08 22:38  twisti
 
-2005-02-08 15:59  twisti
+       * SUCK_xx_xx: We can only optimize little endian loads on i386 and
+       x86_64
+       machines. All others have problems with alignment.
 
-       * src/native/vm/VMRuntime.c: Changed nativeLoad signature.
+2006-01-08 22:12  twisti
 
-2005-02-08 15:56  twisti
+       * Ignore *.class files.
 
-       * src/native/vm/Makefile.am: Added VMStackWalker.c
+2006-01-08 22:11  twisti
 
-2005-02-08 15:56  twisti
+       * java-assert.h: Unused, removed.
 
-       * src/native/include/Makefile.am: Removed
-         gnu_java_awt_peer_gtk_GtkMainThread.h.
+2006-01-08 22:01  twisti
 
-2005-02-08 15:55  twisti
+       * Added VM interface change to be consistent:
+       
+       2005-11-13 Archie Cobbs <archie@dellroad.org>
+       
+       * vm/reference/gnu/classpath/VMStackWalker.java (getClassLoader()):
+       added to fix an infinite loop bug.
+       * NEWS: note VM interface change.
 
-       * src/native/classes.am: Removed
-         gnu.java.awt.peer.gtk.GtkMainThread, added
-         gnu.classpath.VMStackWalker.
+2006-01-08 21:32  twisti
 
-2005-02-08 14:43  twisti
+       * suck_add: Check for lce != NULL before adding it to the list, since
+       zip_open can return NULL.
 
-       * tests/native/: Makefile.am, test.c, test.java: Added test files
-         for testing native stuff more easily.
+2006-01-08 19:14  twisti
 
-2005-02-07 18:21  twisti
+       * JAVAC: Removed.
 
-       * src/vm/: loader.c, loader.h: Better locking of zip/jar files with
-         threads.
+2006-01-08 19:13  twisti
 
-2005-02-07 17:59  twisti
+       * SOURCE_FILES: Added.
+       * JAVAC: Removed.
+       * checkall: Renamed to check.
 
-       * src/vm/jit/jit.c: Remove qsort warning.
+2006-01-08 19:12  twisti
 
-2005-02-03 17:15  motse
+       * Use $(mkdir_p), $(JAVAC) and $(ZIP) variables.
 
-       * src/vm/loader.c: fix: race condition with concurrent access to a
-         jar file during class_load/suck_start
+2006-01-08 19:11  twisti
 
-2005-02-01 09:59  twisti
+       * AM_PROG_MKDIR_P: Added.
+       * Added headers checks for ansidecl.h, bfd.h, and symcat.h if we have
+       debugging enabled.
+       * AC_PROG_JAVAC: Added.
+       * AC_PATH_PROG: Added check for zip.
 
-       * src/vm/jit/stack.c:
-         - added SUPPORT_MUL_CONST
-         - added some #endif comments
+2006-01-08 19:09  twisti
 
-2005-02-01 09:49  twisti
+       * Macros to check for a Java compiler, taken from
+       http://ac-archive.sourceforge.net/.
 
-       * src/vm/unzip.c: Better cacao_create_directoryList code and only
-         add *.class files to the directory list.
+2006-01-04 09:35  twisti
 
-2005-01-31 18:06  twisti
+       * Removed src/toolbox/avl.[ch] copyright.
 
-       * src/vm/builtin.h: Define BUILTIN's for float and double
-         functions.
+2006-01-04 09:34  twisti
 
-2005-01-31 18:05  twisti
+       * avl_dump: Only print node->data.
 
-       * src/vm/jit/jit.c: Added float and double ICMDs to builtin_desc.
+2006-01-03 23:46  twisti
 
-2005-01-28 21:24  twisti
+       * Use new avl tree code.
+       * Rewritten.
 
-       * src/vm/: builtin.c, builtin.h:
-         - better handling of TRACE_ARGS_NUM
-         - added TRACE_ARGS_NUM == 4 (xdspcore)
+2006-01-03 23:44  twisti
 
-2005-01-28 11:44  motse
+       * exit_handler: Removed print_dynamic_super_statistics.
+       * print_stats: Added print_dynamic_super_statistics.
 
-       * src/vm/loader.c: fix: restore
+2006-01-03 23:43  twisti
 
-2005-01-28 00:49  motse
+       * threads.h: Added.
+       * builtin.h: Likewise.
 
-       * src/vm/loader.c: fix: forgot a few casts
+2006-01-03 23:08  twisti
 
-2005-01-27 22:04  motse
+       * CallNonvirtualBooleanMethodA: Added missing ;.
 
-       * .project, src/native/native.c, src/vm/loader.c, src/vm/loader.h:
-         add ProtectionDomain/Codesource support
+2006-01-03 23:05  twisti
 
-2005-01-27 12:29  twisti
+       * ENABLE_STATISTICS: Fixed typo.
 
-       * src/vm/jit/: alpha/arch.h, i386/arch.h, mips/arch.h,
-         powerpc/arch.h, x86_64/arch.h: Added SUPPORT_LOGICAL_CONST
+2006-01-02 21:01  christian
 
-2005-01-27 12:29  twisti
+       typeing error
 
-       * src/vm/jit/stack.c:
-         - added xdspcore disassembler stuff
-         - added SUPPORT_LOGICAL_CONST #if's
+2006-01-02 17:13  twisti
 
-2005-01-27 12:24  twisti
+       * nregdescint, nregdescfloat: Moved to md-abi.c.
 
-       * src/vm/jit/jit.c: Count also native jit call.
+2006-01-02 17:12  twisti
 
-2005-01-24 17:58  twisti
+       * nregdescint, nregdescfloat: Added.
 
-       * src/: boehm-gc/Makefile.am, cacao/Makefile.am,
-         cacaoh/Makefile.am, native/Makefile.am,
-         native/include/Makefile.am, native/tools/Makefile.am,
-         native/vm/Makefile.am, vm/jit/x86_64/Makefile.am: Build directory
-         fixes.
+2006-01-02 17:11  twisti
 
-2005-01-24 17:53  twisti
+       * noinst_HEADERS: Removed md-abi.inc.
 
-       * src/native/vm/VMSystemProperties.c: #include "mm/memory.h"
+2006-01-02 16:40  twisti
 
-2005-01-21 14:46  carolyn
+       * signal_handler_sigsegv: Replaced functionptr with u1*.
 
-       * src/: cacao/cacao.c, vm/jit/jit.c, vm/jit/parse.c,
-         vm/jit/inline/Makefile.am, vm/jit/inline/parseRT.c,
-         vm/jit/inline/parseXTA.c, vm/jit/inline/parseXTA.h: initial XTA
-         set-up changes
+2006-01-02 16:18  twisti
 
-2005-01-21 13:08  carolyn
+       * nregdescint, nregdescfloat: Moved to md-abi.c.
 
-       * src/vm/: global.h, jit/inline/parseRT.h: Added defines for
-         methods called(hardocded) by CACAO that define its call path
+2006-01-02 16:17  twisti
 
-2005-01-21 12:34  stefan
+       * nregdescint, nregdescfloat: Added.
+       * noinst_HEADERS: Removed md-abi.inc.
 
-       * src/vm/jit/asmpart.h: added asm_handle_nullptr_exception, needed
-         for ppc
+2006-01-02 16:12  twisti
 
-2005-01-21 12:33  stefan
+       * INCLUDES: Added OS_DIR, some archs have their md-abi.* files in the
+       os
+       directory.
 
-       * src/vm/jit/powerpc/codegen.c: nullpointer fix
+2006-01-02 16:08  christian
 
-2005-01-21 12:32  stefan
+       *** empty log message ***
 
-       * src/vm/jit/powerpc/asmpart.S: mostly conformant abi stack frames
-         added special nullptr throwing function
+2006-01-02 16:04  twisti
 
-2005-01-21 12:09  carolyn
+       * nregdescint, nregdescfloat: Moved to md-abi.c.
 
-       * src/vm/jit/inline/parseRT.c, tests/rtMissedIn0: more RTA comments
-         + 1 more method called automatically
+2006-01-02 16:03  twisti
 
-2005-01-21 10:37  twisti
+       * nregdescint, nregdescfloat: Added.
+       * noinst_HEADERS: Removed md-abi.inc.
 
-       * src/native/native.c:
-         - native_new_and_init: no `class has no instance-initializer'
-         warning
-         - native_new_and_init_string, native_new_and_init_int,
-           native_new_and_init_throwable: return null if initializer not
-           found
+2006-01-02 14:32  christian
 
-2005-01-21 10:24  twisti
+       Removed old debug message
 
-       * src/cacaoh/cacaoh.c:
-         - added bootclasspath stuff
-         - minor cleanups
+2006-01-02 14:26  twisti
 
-2005-01-21 10:24  twisti
+       * md-abi.inc: Removed.
 
-       * src/cacao/cacao.c: Some day we should call DestroyJavaVM.
+2006-01-02 14:25  twisti
 
-2005-01-12 15:09  twisti
+       * nregdescint, nregdescfloat: Moved to md-abi.c.
 
-       * src/native/include/Makefile.am: Update to classpath-0.13: added
-         gnu_classpath_VMSystemProperties.h
+2006-01-02 14:24  twisti
 
-2005-01-12 15:09  twisti
+       * nregdescint, nregdescfloat: Added.
+       * noinst_HEADERS: Removed md-abi.inc.
 
-       * src/native/classes.am: Update to classpath-0.13: added
-         gnu.classpath.VMSystemProperties
+2006-01-02 14:11  christian
 
-2005-01-12 14:55  twisti
+       Corrected \"\" to \<\> for system header include
 
-       * src/native/vm/VMSystemProperties.c: Fill gnu.cpu.endian properly.
+2006-01-02 14:07  twisti
 
-2005-01-12 14:25  twisti
+       * nregdescint, nregdescfloat: Moved to md-abi.c.
+       * noinst_HEADERS: Removed md-abi.inc.
 
-       * src/native/vm/VMRuntime.c:
-         - removed Java_java_lang_VMRuntime_insertSystemProperties (is now in
-           VMSystemProperties.c)
-         - renamed nativeGetLibname to mapLibraryName
+2006-01-02 14:06  twisti
 
-2005-01-12 14:18  twisti
+       * nregdescint, nregdescfloat: Added.
+       * disassinstr: Some code improvement.
 
-       * src/native/vm/Makefile.am: Update to classpath-0.13: added
-         VMSystemProperties.c
+2006-01-02 14:05  twisti
 
-2005-01-12 14:17  twisti
+       * md-abi.inc: Removed.
 
-       * src/native/vm/VMSystemProperties.c: Update to classpath-0.13.
+2006-01-02 13:05  christian
 
-2005-01-12 14:17  twisti
+       Changed register allocator .inc to .c files and moved them to
+       src/vm/jit/allocator
 
-       * src/native/jni.c: Warning fix in JNI_GetCreatedJavaVMs: return 0;
+2006-01-02 12:59  christian
 
-2005-01-10 12:21  twisti
+       Changed register allocator .inc to .c files and moved them to
+       src/vm/jit/allocator
 
-       * src/vm/jit/alpha/asmpart.S:
-         - added asm_calljavafunction2int and asm_calljavafunction2float to
-           prevent warnings
-         - check for compiler exceptions and handle them
-         - make asm_throw_and_handle_exception readable (indent)
+2006-01-02 12:22  twisti
 
-2005-01-05 21:18  motse
+       * Fixed result message for debug.
 
-       * src/native/jni.c: fix: jni_method_invokeNativeHelper static
-         methods can ignore obj
+2006-01-02 12:10  twisti
 
-2005-01-05 21:14  motse
+       * Typo.
 
-       * src/native/vm/VMRuntime.c: set user.language/user.region system
-         property according to LANG enviroment variable
+2006-01-02 12:04  twisti
 
-2005-01-05 11:48  twisti
+       * Added ltdl.h check.
 
-       * src/vm/jit/mips/codegen.c: Use posix sigaction for hardware
-         nullpointer.
+2006-01-02 11:34  twisti
 
-2005-01-04 17:39  twisti
+       * Fixed ltdl.h include path.
 
-       * src/vm/jit/powerpc/codegen.c: Include cacao.h for JNI env
-         variable.
+2006-01-02 01:34  twisti
 
-2005-01-04 17:39  twisti
+       * Fixed ltdl.h include path.
 
-       * src/vm/jit/: mips/asmpart.S, powerpc/asmpart.S: Added
-         asm_calljavafunction2int and asm_calljavafunction2float to prevent
-         warnings.
+2006-01-02 01:15  twisti
 
-2005-01-04 17:38  twisti
+       * I don't think we really need them, but they are still in Attic.
 
-       * src/vm/jit/mips/codegen.c:
-         - include config.h, cacao.h
-         - throw exception in nativestub if it's to small
+2006-01-02 01:10  twisti
 
-2005-01-04 13:36  twisti
+       * Generated changelog for 2005.
 
-       * src/vm/jit/i386/asmpart.S: Added asm_calljavafunction2int and
-         asm_calljavafunction2float to prevent warnings.
+2006-01-02 01:05  twisti
 
-2005-01-04 13:35  twisti
+       * unzip.[ch], libffi, libltdl: Removed.
 
-       * src/vm/jit/i386/codegen.c: Include cacao.h for JNI env variable.
+2006-01-01 21:53  twisti
 
-2005-01-04 13:30  twisti
+       * Removed libltdl.
 
-       * src/native/jni.c: GetVersion: fixed and added comments.
+2006-01-01 21:38  twisti
 
-2005-01-04 13:13  twisti
+       * We now use the system libltdl.
 
-       * configure.in:
-         - changed INSTALL_PREFIX to CACAO_INSTALL_PREFIX
-         - define config files with AC_CONFIG_FILES
-         - added the first script files
+2006-01-01 21:32  twisti
 
-2005-01-04 13:09  twisti
+       * Changed text of kaffe's stuff, dalibor pointed this out.
 
-       * src/native/jni.h:
-         - added JDK1_1InitArgs and JDK1_1AttachArgs struct
-         - fixed IsAssignableFrom typo
-         - added JNI 1.4 functions (to be prepared ;-)
-         - added: JNI_GetDefaultJavaVMInitArgs
-                  JNI_GetCreatedJavaVMs
-                  JNI_CreateJavaVM
+2006-01-01 21:29  twisti
 
-2005-01-04 13:07  twisti
+       * AC_LIBLTDL_CONVENIENCE, AC_SUBST(LIBLTDL): Removed.
+       * AC_COMPILE_CHECK_SIZEOF: Replaced with AC_CHECK_SIZEOF.
 
-       * src/native/jni.c:
-         - asm_calljavafunction2 warning fixes
-         - fixed IsAssignableFrom typo
-         - added JNI 1.4 functions (to be prepared ;-)
-         - added: JNI_GetDefaultJavaVMInitArgs
-                  JNI_GetCreatedJavaVMs
-                  JNI_CreateJavaVM
-         - added some function header comments
+2006-01-01 21:22  twisti
 
-2005-01-04 13:02  twisti
+       * m4 macros have a different copyright header.
 
-       * src/native/native.c: Warning fix (const char *).
+2006-01-01 21:13  twisti
 
-2005-01-04 13:01  twisti
+       * Lists all third party software we use. This list contains all
+       stuff we
+       used in 0.93. Stuff that has been ripped will be deleted after that
+       commit, this is for the records.
 
-       * src/native/native.h: Warning fix (const char *).native.c
+2006-01-01 20:55  twisti
 
-2005-01-04 13:00  twisti
+       * Not required.
 
-       * src/native/vm/VMRuntime.c:
-         - changed INSTALL_PREFIX to CACAO_INSTALL_PREFIX
-         - set java.boot.class.path and sun.boot.class.path
-         - comment java.compiler
-         - set java.ext.dirs
+2006-01-01 19:39  twisti
 
-2005-01-04 12:59  twisti
+       * Removed libltdlc.la.
+       * DIST_SUBDIRS: Removed libltdl.
+       * SUBDIRS: Likewise.
 
-       * src/native/vm/VMClass.c:
-         - isAssignableFrom: throw nullpointer, fixed typo
+2006-01-01 19:38  twisti
 
-2005-01-04 12:35  twisti
+       * Added libltdl check.
+       * AC_CONFIG_SUBDIRS: Removed src/libltdl.
 
-       * src/toolbox/: logging.c, logging.h: Warning fixes (const char *,
-         (void)).
+2006-01-01 18:39  twisti
 
-2005-01-04 12:34  twisti
+       * libarch_la_SOURCES: Removed symcat.h.
 
-       * src/vm/builtin.c:
-         builtin_isanysubclass/builtin_isanysubclass_vftbl bugfix: compares
-         with equal interface did not work. Now the gnu rmic works.
+2006-01-01 18:34  twisti
 
-2005-01-04 12:28  twisti
+       * Use system one.
 
-       * src/vm/exceptions.h: Declare strings const.
+2006-01-01 18:33  twisti
 
-2005-01-04 12:28  twisti
+       * libarch_la_SOURCES: Removed symcat.h.
 
-       * src/vm/exceptions.c:
-         - declare strings const
-         - removed CREATENEW_EXCEPTION macro
+2006-01-01 18:30  twisti
 
-2005-01-04 12:21  twisti
+       * generic_symbol_at_address: Print only 8 bytes.
 
-       * src/vm/global.h: Define CACAO_EXT_DIR.
+2006-01-01 18:21  twisti
 
-2005-01-04 12:21  twisti
+       * Use system ones.
+       * generic_symbol_at_address: Added, they were implemented in dis-buf.c
+       which was removed.
+       * generic_print_address: Likewise.
+       * perror_memory: Likewise.
 
-       * src/vm/: tables.c, tables.h: Warning fixes.
+2006-01-01 18:20  twisti
 
-2005-01-04 12:19  twisti
+       * libarch_la_SOURCES: Removed ansidecl.h, bfd.h and dis-buf.c.
+       * config.h, vm/jit/codegen-common.h: Added.
 
-       * src/vm/jit/x86_64/codegen.c: Include cacao.h for env variable.
+2006-01-01 16:40  twisti
 
-2005-01-04 12:18  twisti
+       * Changed include to use system headers.
 
-       * src/vm/jit/asmpart.h: Declare asm_calljavafunction2int and
-         asm_calljavafunction2float to prevent warnings.
+2006-01-01 16:39  twisti
 
-2005-01-04 12:16  twisti
+       * Use system ones.
+       * generic_symbol_at_address: Added, they were implemented in dis-buf.c
+       which was removed.
+       * generic_print_address: Likewise.
+       * perror_memory: Likewise.
 
-       * src/cacaoh/Makefile.am: Install only into ${prefix}/jre/bin.
+2006-01-01 16:37  twisti
 
-2005-01-04 12:16  twisti
+       * libarch_la_SOURCES: Removed ansidecl.h, bfd.h and dis-buf.c.
 
-       * src/cacao/cacao.h: Export: JNI jvm, env and bootclasspath.
+2006-01-01 16:35  twisti
 
-2005-01-04 12:15  twisti
+       * DEC OSF cc only defines __alpha.
 
-       * src/cacao/cacao.c:
-         - started jni invocation
-         - changes INSTALL_PREFIX to CACAO_INSTALL_PREFIX
-         - classpath bugfix
+2006-01-01 16:34  twisti
 
-2005-01-03 15:03  twisti
+       * class_resolvefield: Renamed except to throwexception since some
+       compilers
+       have a builtin except macro (like DEC OSF cc).
+       * class_resolveclassmethod: Likewise.
+       * class_resolveinterfacemethod: Likewise.
 
-       * src/scripts/: Makefile.am, cacao.in, java.in, rmic.in,
-         rmiregistry.in: Wrapper scripts.
+2006-01-01 16:31  twisti
 
+       * zip_open: Handle compiler error with DEC OSF's cc.