changeset 2495:a18c1d18bdcc

2011-03-21 Xerxes Ranby <xerxes@zafena.se> JamVM: Update JamVM revision and remove upstreamed patch. Update contains the following new JamVM improvements: Handle O_DELETE in JVM_Open Minor performance improvement on ARM First set of changes to support JamVM/OpenJDK on MacOS X Minor memory leak (missing free) Handle integer overflow on i386/amd64 On ARM, force interpreter to be built in ARM mode * NEWS: Updated. * Makefile.am: Remove upstreamed JamVM patch. (JAMVM_VERSION): Updated. (JAMVM_SHA256SUM): Updated. * patches/jamvm/mips64el.patch: Deleted.
author Xerxes R?nby <xerxes@zafena.se>
date Mon, 21 Mar 2011 16:35:46 +0100
parents 16898c6950c6
children d13729d1181e
files ChangeLog Makefile.am NEWS patches/jamvm/mips64el.patch
diffstat 4 files changed, 27 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed Mar 16 09:55:32 2011 -0400
+++ b/ChangeLog	Mon Mar 21 16:35:46 2011 +0100
@@ -1,3 +1,19 @@
+2011-03-21  Xerxes Ranby  <xerxes@zafena.se>
+
+	JamVM: Update JamVM revision and remove upstreamed patch.
+	Update contains the following new JamVM improvements:
+	Handle O_DELETE in JVM_Open
+	Minor performance improvement on ARM
+	First set of changes to support JamVM/OpenJDK on MacOS X
+	Minor memory leak (missing free)
+	Handle integer overflow on i386/amd64
+	On ARM, force interpreter to be built in ARM mode
+	* NEWS: Updated.
+	* Makefile.am: Remove upstreamed JamVM patch.
+	(JAMVM_VERSION): Updated.
+	(JAMVM_SHA256SUM): Updated.
+	* patches/jamvm/mips64el.patch: Deleted.
+
 2011-03-16  Denis Lila  <dlila@redhat.com>
 
 	* Makefile.am: Add patches.
--- a/Makefile.am	Wed Mar 16 09:55:32 2011 -0400
+++ b/Makefile.am	Mon Mar 21 16:35:46 2011 +0100
@@ -11,8 +11,8 @@
 CACAO_URL = $(CACAO_BASE_URL)/$(CACAO_VERSION).tar.gz
 CACAO_SRC_ZIP = cacao-$(CACAO_VERSION).tar.gz
 
-JAMVM_VERSION = 9acc3f22f885340bef0acabb568eaeabe4450bfb
-JAMVM_SHA256SUM = ab8bd9e37d7eea26c3ec2e5e86ac4d782327416bcef1be9deb9453e11b145e83
+JAMVM_VERSION = 78f044e3052e804d4dcc37014dc52e78266d5875
+JAMVM_SHA256SUM = d11b8966e616210c2e718d80f9c12be2a8fbed92d12bb2a8b9b119ac99b69acc
 JAMVM_BASE_URL = http://icedtea.classpath.org/download/drops/jamvm
 JAMVM_URL = $(JAMVM_BASE_URL)/jamvm-$(JAMVM_VERSION).tar.gz
 JAMVM_SRC_ZIP = jamvm-$(JAMVM_VERSION).tar.gz
@@ -358,11 +358,6 @@
 	patches/cacao/ignore-tests.patch
 endif
 
-if BUILD_JAMVM
-ICEDTEA_PATCHES += \
-	patches/jamvm/mips64el.patch
-endif
-
 if ENABLE_PULSE_JAVA
 ICEDTEA_PATCHES += \
 	patches/pulse-soundproperties.patch
--- a/NEWS	Wed Mar 16 09:55:32 2011 -0400
+++ b/NEWS	Mon Mar 21 16:35:46 2011 +0100
@@ -10,9 +10,17 @@
 
 New in release 1.10.1 (2011-XX-XX):
 
-* Added JamVM support for mips and mips64.
 * Bug fixes
   - CACAO PR157: ARM SMP Assertion thinlock failed.
+* JamVM
+  - Handle O_DELETE in JVM_Open.
+  - Minor performance improvement on ARM.
+  - First set of changes to support JamVM/OpenJDK on MacOS X.
+  - Minor memory leak (missing free).
+  - Handle integer overflow on i386/amd64.
+  - On ARM, force interpreter to be built in ARM mode.
+  - MIPS: 64-bit and interpreter inlining by default.
+  - Trivial implementation of stubs for MIPS.
 * Backports
   - S7023591, S7027667: Clipped antialiased rectangles are filled, not drawn.
 
--- a/patches/jamvm/mips64el.patch	Wed Mar 16 09:55:32 2011 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-Index: jamvm/jamvm/configure.ac
-===================================================================
---- jamvm.orig/jamvm/configure.ac	2011-03-09 13:13:12.781424034 +0100
-+++ jamvm/jamvm/configure.ac	2011-03-09 13:13:47.752903998 +0100
-@@ -40,6 +40,7 @@
- x86_64-*-linux*) host_os=linux ;;
- hppa*-*-linux*) host_cpu=parisc host_os=linux ;;
- mipsel-*-linux*) host_cpu=mips host_os=linux ;;
-+mips64el-*-linux*) host_cpu=mips host_os=linux ;;
- x86_64-*-openbsd*) host_os=bsd libdl_needed=no ;;
- x86_64-*-freebsd*) host_os=bsd libdl_needed=no ;;
- arm*-*-linux*) host_cpu=arm host_os=linux ;;