/hg/icedtea6: 5 new changesets
andrew at icedtea.classpath.org
andrew at icedtea.classpath.org
Wed Jan 27 08:04:38 PST 2010
changeset 80b2080f8c91 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=80b2080f8c91
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Jan 27 15:35:17 2010 +0000
Add a target for building the plugin tests.
2010-01-26 Andrew John Hughes <ahughes at redhat.com>
* Makefile.am: (stamps/plugin-tests.stamp): Add
a target for building the plugin tests. (plugin-tests):
Alias for the above.
changeset 4e7e38a0c858 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=4e7e38a0c858
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Jan 27 15:38:20 2010 +0000
Merge
changeset afb79ce1f80e in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=afb79ce1f80e
author: Deepak Bhole <dbhole at redhat.com>
date: Tue Jan 26 15:08:05 2010 -0500
2010-01-26 Deepak Bhole <dbhole at redhat.com>
* NEWS: Added message about alpha release for the new NPR based
plugin.
changeset e15c8521c09a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=e15c8521c09a
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Jan 27 15:59:17 2010 +0000
Add missing release annoucements.
2010-01-26 Andrew John Hughes <ahughes at redhat.com>
* NEWS: Add missing items for 1.5.1, 1.5.2,
1.5.3, 1.6.1 and 1.6.2.
changeset 21868e8c115a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=21868e8c115a
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Jan 27 16:04:13 2010 +0000
Merge
diffstat:
4 files changed, 7254 insertions(+), 15 deletions(-)
ChangeLog | 27
Makefile.am | 45
NEWS | 56
ports/hotspot/src/cpu/zero/vm/thumb2.cpp | 7141 ++++++++++++++++++++++++++++++
diffs (truncated from 7346 to 500 lines):
diff -r a82258f09fae -r 21868e8c115a ChangeLog
--- a/ChangeLog Tue Jan 26 19:45:53 2010 +0000
+++ b/ChangeLog Wed Jan 27 16:04:13 2010 +0000
@@ -1,3 +1,30 @@ 2010-01-25 Andrew John Hughes <ahughes@
+2010-01-27 Andrew John Hughes <ahughes at redhat.com>
+
+ * NEWS:
+ Add missing items for 1.5.1, 1.5.2,
+ 1.5.3, 1.6.1 and 1.6.2.
+
+2010-01-27 Edward Nevill <ed at camswl.com>
+
+ * ports/hotspot/src/cpu/zero/vm/thumb2.cpp
+ Forgot to do hg add on this file in my last commit
+
+2010-01-26 Deepak Bhole <dbhole at redhat.com>
+
+ * NEWS: Added message about alpha release for the new NPR based plugin.
+
+2010-01-27 Matthias Klose <doko at ubuntu.com>
+
+ * Makefile.am: Remove quoting from ICEDTEA_NAME ICEDTEA_REV
+ ICEDTEA_PKG.
+
+2010-01-26 Andrew John Hughes <ahughes at redhat.com>
+
+ * Makefile.am:
+ (stamps/plugin-tests.stamp): Add
+ a target for building the plugin tests.
+ (plugin-tests): Alias for the above.
+
2010-01-25 Andrew John Hughes <ahughes at redhat.com>
* acinclude.m4:
diff -r a82258f09fae -r 21868e8c115a Makefile.am
--- a/Makefile.am Tue Jan 26 19:45:53 2010 +0000
+++ b/Makefile.am Wed Jan 27 16:04:13 2010 +0000
@@ -190,6 +190,10 @@ else
BOOTSTRAP_DIRECTORY_STAMP = stamps/bootstrap-directory.stamp
ICEDTEA_HOME = $(abs_top_builddir)/bootstrap/icedtea
endif
+
+# Sources list
+
+PLUGIN_TEST_SRCS = $(abs_top_srcdir)/plugin/tests/LiveConnect/*.java
# Patch list
@@ -385,15 +389,15 @@ JDK_UPDATE_VERSION = $(shell echo $(OPEN
JDK_UPDATE_VERSION = $(shell echo $(OPENJDK_VERSION) | sed -e "s/^b//")
COMBINED_VERSION = $(JDK_UPDATE_VERSION)-$(OPENJDK_VERSION)
-ICEDTEA_NAME="IcedTea6"
+ICEDTEA_NAME = IcedTea6
if HAS_ICEDTEA_REVISION
-ICEDTEA_REV="+${ICEDTEA_REVISION}"
+ICEDTEA_REV = +${ICEDTEA_REVISION}
endif
if HAS_PKGVERSION
-ICEDTEA_PKG=" (${PKGVERSION})"
-endif
-
-PLUGIN_VERSION=$(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV)$(ICEDTEA_PKG)
+ICEDTEA_PKG = $(EMPTY) (${PKGVERSION})
+endif
+
+PLUGIN_VERSION = $(ICEDTEA_NAME) $(PACKAGE_VERSION)$(ICEDTEA_REV)$(ICEDTEA_PKG)
ICEDTEA_ENV = \
IMPORT_BINARY_PLUGS=true \
@@ -1895,6 +1899,33 @@ endif
# end additional VMs
+# plugin tests
+
+stamps/plugin-tests.stamp: $(PLUGIN_TEST_SRCS) \
+ bootstrap/jdk1.7.0/jre/lib/rt-closed.jar
+ mkdir -p plugin/tests/LiveConnect
+ if test -d lib/rt/netscape ; then \
+ set -e ; \
+ if ! test -d $(ICEDTEA_BOOT_DIR) ; then \
+ $(JAVAC) $(MEMORY_LIMIT) -g -d plugin/tests/LiveConnect \
+ -classpath bootstrap/jdk1.7.0/jre/lib/rt-closed.jar \
+ -source 1.5 $(PLUGIN_TEST_SRCS) ; \
+ $(JAR) cf plugin/tests/LiveConnect/PluginTest.jar \
+ plugin/tests/LiveConnect/*.class ; \
+ else \
+ $(ICEDTEA_BOOT_DIR)/bin/javac $(MEMORY_LIMIT) -g \
+ -d plugin/tests/LiveConnect \
+ -classpath bootstrap/jdk1.7.0/jre/lib/rt-closed.jar \
+ -source 1.5 $(PLUGIN_TEST_SRCS) ; \
+ $(ICEDTEA_BOOT_DIR)/bin/jar cf plugin/tests/LiveConnect/PluginTest.jar \
+ plugin/tests/LiveConnect/*.class ; \
+ fi ; \
+ cp -a $(abs_top_srcdir)/plugin/tests/LiveConnect/*.{js,html} plugin/tests/LiveConnect ; \
+ echo "Done. Now launch \"firefox file://`pwd`/index.html\"" ; \
+ fi
+ mkdir -p stamps
+ touch stamps/plugin-tests.stamp
+
# jtreg
stamps/jtreg.stamp: stamps/icedtea.stamp
@@ -2228,3 +2259,5 @@ jtreg: stamps/jtreg.stamp
jtreg: stamps/jtreg.stamp
plugin: $(ICEDTEAPLUGIN_TARGET)
+
+plugin-tests: stamps/plugin-tests.stamp
diff -r a82258f09fae -r 21868e8c115a NEWS
--- a/NEWS Tue Jan 26 19:45:53 2010 +0000
+++ b/NEWS Wed Jan 27 16:04:13 2010 +0000
@@ -4,6 +4,9 @@ New in release 1.7 (XXXX-XX-XX):
New in release 1.7 (XXXX-XX-XX):
- Updated to OpenJDK6 b17.
+- Alpha version of the new IcedTea NPRuntime based plugin with support for
+ Firefox >= 3.5, Chromium, and other browsers that support NPRuntime
+ (use --enable-npplugin to build it).
- Support added for building with HotSpot 16 using
--with-hotspot-build=hs16.
- Zero port updated to match the version submitted to OpenJDK
@@ -11,6 +14,9 @@ New in release 1.7 (XXXX-XX-XX):
- libjpeg7 and libXext >= 1.1.0 supported.
- Added JNI call tracing using systemtap version 1.0+ when
configuring with --enable-systemtap. See tapset/hotspot_jni.stp.
+- Add support for zero build on Hitachi SH.
+
+New in release 1.6.2 (2009-11-09)
- Latest security updates:
- (CVE-2009-3728) ICC_Profile file existence detection information leak (6631533)
- (CVE-2009-3885) BMP parsing DoS with UNC ICC links (6632445)
@@ -27,11 +33,50 @@ New in release 1.7 (XXXX-XX-XX):
- (CVE-2009-3869) JRE AWT setDifflCM stack overflow (6872357)
- (CVE-2009-3874) ImageI/O JPEG heap overflow (6874643
- (CVE-2009-3871) JRE AWT setBytePixels heap overflow (6872358)
-- Add support for zero build on Hitachi SH.
+
+New in release 1.5.3 (2009-11-09)
+- Latest security updates:
+ - (CVE-2009-3728) ICC_Profile file existence detection information leak (6631533)
+ - (CVE-2009-3885) BMP parsing DoS with UNC ICC links (6632445)
+ - (CVE-2009-3881) resurrected classloaders can still have children (6636650)
+ - (CVE-2009-3882) Numerous static security flaws in Swing (findbugs) (6657026)
+ - (CVE-2009-3883) Mutable statics in Windows PL&F (findbugs) (6657138)
+ - (CVE-2009-3880) UI logging information leakage (6664512)
+ - (CVE-2009-3879) GraphicsConfiguration information leak (6822057)
+ - (CVE-2009-3884) zoneinfo file existence information leak (6824265)
+ - (CVE-2009-2409) deprecate MD2 in SSL cert validation (Kaminsky) (6861062)
+ - (CVE-2009-3873) JPEG Image Writer quantization problem (6862968)
+ - (CVE-2009-3875) MessageDigest.isEqual introduces timing attack vulnerabilities (6863503)
+ - (CVE-2009-3876, CVE-2009-3877) OpenJDK ASN.1/DER input stream parser denial of service (6864911)
+ - (CVE-2009-3869) JRE AWT setDifflCM stack overflow (6872357)
+ - (CVE-2009-3874) ImageI/O JPEG heap overflow (6874643
+ - (CVE-2009-3871) JRE AWT setBytePixels heap overflow (6872358)
+
+New in release 1.6.1 (2009-09-14):
+
+- Fix tarball error in 1.6
+- Improve jar performance,
+ http://hg.openjdk.java.net/jdk6/jdk6/jdk/rev/b35f1e5075a4
New in release 1.6 (2009-09-10):
- Added java method tracing using systemtap version 0.9.9+.
+- FAST interpreter for ARM
+- Timezone fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=377
+- Stackoverflow error fix:
+http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
+- Backport regression (NPE) fix for AccessControlContext fix
+- Bump to hs14b16
+- The plugin has been updated to improve stability and cookie support.
+ Support for certificates with mismatched CNs has been added as well.
+
+New in release 1.5.2 (2009-09-04)
+- Timezone fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=377
+- Stackoverflow error fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
+- Backport regression (NPE) fix for AccessControlContext fix
+- Bump to hs14b16
+
+New in release 1.5.1 (2009-08-07)
- Security fixes for:
CVE-2009-2670 - OpenJDK Untrusted applet System properties access
CVE-2009-2671 CVE-2009-2672 - OpenJDK Proxy mechanism information leaks
@@ -43,14 +88,7 @@ New in release 1.6 (2009-09-10):
CVE-2009-2476 - OpenJDK OpenType checks can be bypassed
CVE-2009-2689 - OpenJDK JDK13Services grants unnecessary privileges
CVE-2009-2690 - OpenJDK private variable information disclosure
-- FAST interpreter for ARM
-- Timezone fix: http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=377
-- Stackoverflow error fix:
-http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=381
-- Backport regression (NPE) fix for AccessControlContext fix
-- Bump to hs14b16
-- The plugin has been updated to improve stability and cookie support.
- Support for certificates with mismatched CNs has been added as well.
+- Plugin/Netx security fix.
New in release 1.5 (2009-05-20)
diff -r a82258f09fae -r 21868e8c115a ports/hotspot/src/cpu/zero/vm/thumb2.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ports/hotspot/src/cpu/zero/vm/thumb2.cpp Wed Jan 27 16:04:13 2010 +0000
@@ -0,0 +1,7141 @@
+#ifdef THUMB2EE
+
+#define T2EE_PRINT_COMPILATION
+#define T2EE_PRINT_STATISTICS
+//#define T2EE_PRINT_DISASS
+#define T2EE_PRINT_REGUSAGE
+
+#ifdef T2EE_PRINT_COMPILATION
+static char *t2ee_print_compilation;
+#endif
+
+#ifdef T2EE_PRINT_STATISTICS
+static char *t2ee_print_statistics;
+#endif
+
+#ifdef T2EE_PRINT_DISASS
+static char *t2ee_print_disass;
+#endif
+
+#ifdef T2EE_PRINT_REGUSAGE
+static char *t2ee_print_regusage;
+#endif
+
+#define THUMB2_CODEBUF_SIZE (8 * 1024 * 1024)
+
+#include <sys/mman.h>
+
+#include "incls/_precompiled.incl"
+
+#ifdef T2EE_PRINT_DISASS
+#include "dis-asm.h"
+#include "bfd.h"
+#endif
+
+#define opc_nop 0x00
+#define opc_aconst_null 0x01
+#define opc_iconst_m1 0x02
+#define opc_iconst_0 0x03
+#define opc_iconst_1 0x04
+#define opc_iconst_2 0x05
+#define opc_iconst_3 0x06
+#define opc_iconst_4 0x07
+#define opc_iconst_5 0x08
+#define opc_lconst_0 0x09
+#define opc_lconst_1 0x0a
+#define opc_fconst_0 0x0b
+#define opc_fconst_1 0x0c
+#define opc_fconst_2 0x0d
+#define opc_dconst_0 0x0e
+#define opc_dconst_1 0x0f
+#define opc_bipush 0x10
+#define opc_sipush 0x11
+#define opc_ldc 0x12
+#define opc_ldc_w 0x13
+#define opc_ldc2_w 0x14
+#define opc_iload 0x15
+#define opc_lload 0x16
+#define opc_fload 0x17
+#define opc_dload 0x18
+#define opc_aload 0x19
+#define opc_iload_0 0x1a
+#define opc_iload_1 0x1b
+#define opc_iload_2 0x1c
+#define opc_iload_3 0x1d
+#define opc_lload_0 0x1e
+#define opc_lload_1 0x1f
+#define opc_lload_2 0x20
+#define opc_lload_3 0x21
+#define opc_fload_0 0x22
+#define opc_fload_1 0x23
+#define opc_fload_2 0x24
+#define opc_fload_3 0x25
+#define opc_dload_0 0x26
+#define opc_dload_1 0x27
+#define opc_dload_2 0x28
+#define opc_dload_3 0x29
+#define opc_aload_0 0x2a
+#define opc_aload_1 0x2b
+#define opc_aload_2 0x2c
+#define opc_aload_3 0x2d
+#define opc_iaload 0x2e
+#define opc_laload 0x2f
+#define opc_faload 0x30
+#define opc_daload 0x31
+#define opc_aaload 0x32
+#define opc_baload 0x33
+#define opc_caload 0x34
+#define opc_saload 0x35
+#define opc_istore 0x36
+#define opc_lstore 0x37
+#define opc_fstore 0x38
+#define opc_dstore 0x39
+#define opc_astore 0x3a
+#define opc_istore_0 0x3b
+#define opc_istore_1 0x3c
+#define opc_istore_2 0x3d
+#define opc_istore_3 0x3e
+#define opc_lstore_0 0x3f
+#define opc_lstore_1 0x40
+#define opc_lstore_2 0x41
+#define opc_lstore_3 0x42
+#define opc_fstore_0 0x43
+#define opc_fstore_1 0x44
+#define opc_fstore_2 0x45
+#define opc_fstore_3 0x46
+#define opc_dstore_0 0x47
+#define opc_dstore_1 0x48
+#define opc_dstore_2 0x49
+#define opc_dstore_3 0x4a
+#define opc_astore_0 0x4b
+#define opc_astore_1 0x4c
+#define opc_astore_2 0x4d
+#define opc_astore_3 0x4e
+#define opc_iastore 0x4f
+#define opc_lastore 0x50
+#define opc_fastore 0x51
+#define opc_dastore 0x52
+#define opc_aastore 0x53
+#define opc_bastore 0x54
+#define opc_castore 0x55
+#define opc_sastore 0x56
+#define opc_pop 0x57
+#define opc_pop2 0x58
+#define opc_dup 0x59
+#define opc_dup_x1 0x5a
+#define opc_dup_x2 0x5b
+#define opc_dup2 0x5c
+#define opc_dup2_x1 0x5d
+#define opc_dup2_x2 0x5e
+#define opc_swap 0x5f
+#define opc_iadd 0x60
+#define opc_ladd 0x61
+#define opc_fadd 0x62
+#define opc_dadd 0x63
+#define opc_isub 0x64
+#define opc_lsub 0x65
+#define opc_fsub 0x66
+#define opc_dsub 0x67
+#define opc_imul 0x68
+#define opc_lmul 0x69
+#define opc_fmul 0x6a
+#define opc_dmul 0x6b
+#define opc_idiv 0x6c
+#define opc_ldiv 0x6d
+#define opc_fdiv 0x6e
+#define opc_ddiv 0x6f
+#define opc_irem 0x70
+#define opc_lrem 0x71
+#define opc_frem 0x72
+#define opc_drem 0x73
+#define opc_ineg 0x74
+#define opc_lneg 0x75
+#define opc_fneg 0x76
+#define opc_dneg 0x77
+#define opc_ishl 0x78
+#define opc_lshl 0x79
+#define opc_ishr 0x7a
+#define opc_lshr 0x7b
+#define opc_iushr 0x7c
+#define opc_lushr 0x7d
+#define opc_iand 0x7e
+#define opc_land 0x7f
+#define opc_ior 0x80
+#define opc_lor 0x81
+#define opc_ixor 0x82
+#define opc_lxor 0x83
+#define opc_iinc 0x84
+#define opc_i2l 0x85
+#define opc_i2f 0x86
+#define opc_i2d 0x87
+#define opc_l2i 0x88
+#define opc_l2f 0x89
+#define opc_l2d 0x8a
+#define opc_f2i 0x8b
+#define opc_f2l 0x8c
+#define opc_f2d 0x8d
+#define opc_d2i 0x8e
+#define opc_d2l 0x8f
+#define opc_d2f 0x90
+#define opc_i2b 0x91
+#define opc_i2c 0x92
+#define opc_i2s 0x93
+#define opc_lcmp 0x94
+#define opc_fcmpl 0x95
+#define opc_fcmpg 0x96
+#define opc_dcmpl 0x97
+#define opc_dcmpg 0x98
+#define opc_ifeq 0x99
+#define opc_ifne 0x9a
+#define opc_iflt 0x9b
+#define opc_ifge 0x9c
+#define opc_ifgt 0x9d
+#define opc_ifle 0x9e
+#define opc_if_icmpeq 0x9f
+#define opc_if_icmpne 0xa0
+#define opc_if_icmplt 0xa1
+#define opc_if_icmpge 0xa2
+#define opc_if_icmpgt 0xa3
+#define opc_if_icmple 0xa4
+#define opc_if_acmpeq 0xa5
+#define opc_if_acmpne 0xa6
+#define opc_goto 0xa7
+#define opc_jsr 0xa8
+#define opc_ret 0xa9
+#define opc_tableswitch 0xaa
+#define opc_lookupswitch 0xab
+#define opc_ireturn 0xac
+#define opc_lreturn 0xad
+#define opc_freturn 0xae
+#define opc_dreturn 0xaf
+#define opc_areturn 0xb0
+#define opc_return 0xb1
+#define opc_getstatic 0xb2
+#define opc_putstatic 0xb3
+#define opc_getfield 0xb4
+#define opc_putfield 0xb5
+#define opc_invokevirtual 0xb6
+#define opc_invokespecial 0xb7
+#define opc_invokestatic 0xb8
+#define opc_invokeinterface 0xb9
+#define opc_new 0xbb
+#define opc_newarray 0xbc
+#define opc_anewarray 0xbd
+#define opc_arraylength 0xbe
+#define opc_athrow 0xbf
+#define opc_checkcast 0xc0
+#define opc_instanceof 0xc1
+#define opc_monitorenter 0xc2
+#define opc_monitorexit 0xc3
+#define opc_wide 0xc4
+#define opc_multianewarray 0xc5
+#define opc_ifnull 0xc6
+#define opc_ifnonnull 0xc7
+#define opc_goto_w 0xc8
+#define opc_jsr_w 0xc9
+#define opc_breakpoint 0xca
+
+#define OPC_LAST_JAVA_OP 0xca
+
+#define opc_bgetfield 0xcc
+#define opc_cgetfield 0xcd
+#define opc_igetfield 0xd0
+#define opc_lgetfield 0xd1
+#define opc_sgetfield 0xd2
+#define opc_aputfield 0xd3
+#define opc_bputfield 0xd4
+#define opc_cputfield 0xd5
+#define opc_iputfield 0xd8
+#define opc_lputfield 0xd9
+#define opc_iaccess_0 0xdb
+#define opc_iaccess_1 0xdc
+#define opc_iaccess_2 0xdd
+#define opc_iaccess_3 0xde
+#define opc_invokeresolved 0xdf
+#define opc_invokespecialresolved 0xe0
+#define opc_invokestaticresolved 0xe1
+#define opc_invokevfinal 0xe2
+#define opc_iload_iload 0xe3
+#define opc_iload_iload_N 0xe4
+#define opc_return_register_finalizer 0xe5
+#define opc_dmac 0xe6
+#define opc_iload_0_iconst_N 0xe7
+#define opc_iload_1_iconst_N 0xe8
+#define opc_iload_2_iconst_N 0xe9
+#define opc_iload_3_iconst_N 0xea
+#define opc_iload_iconst_N 0xeb
+#define opc_iadd_istore_N 0xec
+#define opc_isub_istore_N 0xed
+#define opc_iand_istore_N 0xee
+#define opc_ior_istore_N 0xef
+#define opc_ixor_istore_N 0xf0
+#define opc_iadd_u4store 0xf1
+#define opc_isub_u4store 0xf2
+#define opc_iand_u4store 0xf3
+#define opc_ior_u4store 0xf4
+#define opc_ixor_u4store 0xf5
+#define opc_iload_0_iload 0xf6
+#define opc_iload_1_iload 0xf7
+#define opc_iload_2_iload 0xf8
+#define opc_iload_3_iload 0xf9
+#define opc_iload_0_iload_N 0xfa
+#define opc_iload_1_iload_N 0xfb
+#define opc_iload_2_iload_N 0xfc
+#define opc_iload_3_iload_N 0xfd
+
+#define H_IREM 0
+#define H_IDIV 1
+#define H_LDIV 2
+#define H_LREM 3
+#define H_FREM 4
+#define H_DREM 5
+#define H_LDC 6
+#define H_NEW 8
+#define H_I2F 9
+#define H_I2D 10
More information about the distro-pkg-dev
mailing list