[andrew at icedtea.classpath.org: /hg/icedtea6: 7002666: Eclipse CDT projects crash with compresse...]

Dr Andrew John Hughes ahughes at redhat.com
Wed Dec 1 09:28:27 PST 2010


Ok to backport this one to 1.7, 1.8 and 1.9?  This initial version
only covers hs19 but the same broken block of code is present right
back to hs14, so we may as well patch it everywhere.

With 1.9, we'll do an immediate 1.9.3 release to allow people to
start using hs19 and compressed oops.

----- Forwarded message from andrew at icedtea.classpath.org -----

Date: Wed, 01 Dec 2010 15:57:56 +0000
From: andrew at icedtea.classpath.org
To: distro-pkg-dev at openjdk.java.net
Subject: /hg/icedtea6: 7002666: Eclipse CDT projects crash with compresse...

changeset 9f9f4d8947e1 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=9f9f4d8947e1
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Dec 01 15:57:49 2010 +0000

	7002666: Eclipse CDT projects crash with compressed oops

	2010-12-01 Andrew John Hughes <ahughes at redhat.com>

	 * patches/disable-default-compoops.patch: Removed.
		* Makefile.am: Replace disable compressed oops workaround with
	proper fix for 7002666.
		* patches/openjdk/7002666-eclipse_cdt_oops_crash.patch:
	Backport of 7002666: Eclipse CDT projects crash with
	compressed oops
		* NEWS: Updated.


diffstat:

5 files changed, 91 insertions(+), 13 deletions(-)
ChangeLog                                            |   10 ++
Makefile.am                                          |    2 
NEWS                                                 |    1 
patches/disable-default-compoops.patch               |   12 --
patches/openjdk/7002666-eclipse_cdt_oops_crash.patch |   79 ++++++++++++++++++

diffs (139 lines):

diff -r 4dbf4fd42544 -r 9f9f4d8947e1 ChangeLog
--- a/ChangeLog	Wed Dec 01 00:54:22 2010 +0100
+++ b/ChangeLog	Wed Dec 01 15:57:49 2010 +0000
@@ -1,3 +1,13 @@ 2010-12-01  Matthias Klose  <doko at ubuntu
+2010-12-01  Andrew John Hughes  <ahughes at redhat.com>
+
+	* patches/disable-default-compoops.patch: Removed.
+	* Makefile.am: Replace disable compressed oops workaround
+	with proper fix for 7002666.
+	* patches/openjdk/7002666-eclipse_cdt_oops_crash.patch:
+	Backport of 7002666: Eclipse CDT projects crash with
+	compressed oops
+	* NEWS: Updated.
+
 2010-12-01  Matthias Klose  <doko at ubuntu.com>
 
 	* patches/icedtea-sparc64-linux.patch: Remove obsolete chunk.
diff -r 4dbf4fd42544 -r 9f9f4d8947e1 Makefile.am
--- a/Makefile.am	Wed Dec 01 00:54:22 2010 +0100
+++ b/Makefile.am	Wed Dec 01 15:57:49 2010 +0000
@@ -307,7 +307,7 @@ if WITH_ALT_HSBUILD
 if WITH_ALT_HSBUILD
 ICEDTEA_PATCHES += \
 	patches/openjdk/6994130-ppc_fix.patch \
-	patches/disable-default-compoops.patch \
+	patches/openjdk/7002666-eclipse_cdt_oops_crash.patch \
 	patches/openjdk/6980392-fix_test6581734.patch \
 	patches/hotspot/hs19/ia64-fix.patch
 else
diff -r 4dbf4fd42544 -r 9f9f4d8947e1 NEWS
--- a/NEWS	Wed Dec 01 00:54:22 2010 +0100
+++ b/NEWS	Wed Dec 01 15:57:49 2010 +0000
@@ -47,6 +47,7 @@ New in release 1.10 (2010-XX-XX):
   - S6967433: dashed lines broken when using scaling transforms.
   - S6976265: No STROKE_CONTROL
   - S6967434, PR450, RH530642: Round joins/caps of scaled up lines have poor quality.
+  - S7002666: Eclipse CDT projects crash with compressed oops
 
 New in release 1.9.2 (2010-11-24):
 
diff -r 4dbf4fd42544 -r 9f9f4d8947e1 patches/disable-default-compoops.patch
--- a/patches/disable-default-compoops.patch	Wed Dec 01 00:54:22 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
---- openjdk.orig/hotspot/src/share/vm/runtime/arguments.cpp    2010-11-08 23:50:59.000000000 -0500
-+++ openjdk/hotspot/src/share/vm/runtime/arguments.cpp        2010-11-08 23:52:53.000000000 -0500
-@@ -1301,7 +1301,8 @@ void Arguments::set_ergonomics_flags() {
-   if (MaxHeapSize <= max_heap_for_compressed_oops()) {
- #ifndef COMPILER1
-     if (FLAG_IS_DEFAULT(UseCompressedOops) && !UseG1GC) {
--      FLAG_SET_ERGO(bool, UseCompressedOops, true);
-+      // Temporarily fix rhbz#647737 -- disable compressed oops by default
-+      //FLAG_SET_ERGO(bool, UseCompressedOops, true);
-     }
- #endif
- #ifdef _WIN64
diff -r 4dbf4fd42544 -r 9f9f4d8947e1 patches/openjdk/7002666-eclipse_cdt_oops_crash.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/openjdk/7002666-eclipse_cdt_oops_crash.patch	Wed Dec 01 15:57:49 2010 +0000
@@ -0,0 +1,79 @@
+--- openjdk.orig/hotspot/src/share/vm/opto/memnode.cpp	Tue Nov 30 11:47:17 2010
++++ openjdk/hotspot/src/share/vm/opto/memnode.cpp	Tue Nov 30 11:47:17 2010
+@@ -3599,10 +3599,12 @@
+     intptr_t size_limit = phase->find_intptr_t_con(size_in_bytes, max_jint);
+     if (zeroes_done + BytesPerLong >= size_limit) {
+       assert(allocation() != NULL, "");
+-      Node* klass_node = allocation()->in(AllocateNode::KlassNode);
+-      ciKlass* k = phase->type(klass_node)->is_klassptr()->klass();
+-      if (zeroes_done == k->layout_helper())
+-        zeroes_done = size_limit;
++      if (allocation()->Opcode() == Op_Allocate) {
++        Node* klass_node = allocation()->in(AllocateNode::KlassNode);
++        ciKlass* k = phase->type(klass_node)->is_klassptr()->klass();
++        if (zeroes_done == k->layout_helper())
++          zeroes_done = size_limit;
++      }
+     }
+     if (zeroes_done < size_limit) {
+       rawmem = ClearArrayNode::clear_memory(rawctl, rawmem, rawptr,
+--- /dev/null	Tue Nov 30 11:47:18 2010
++++ openjdk/hotspot/test/compiler/7002666/Test7002666.java	Tue Nov 30 11:47:17 2010
+@@ -0,0 +1,57 @@
++/*
++ * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ *
++ */
++
++/**
++ * @test
++ * @bug 7002666
++ * @summary eclipse CDT projects crash with compressed oops
++ *
++ * @run main/othervm -Xbatch -XX:CompileOnly=Test7002666.test,java/lang/reflect/Array Test7002666
++ *
++ * This will only reliably fail with a fastdebug build since it relies
++ * on seeing garbage in the heap to die.  It could be made more
++ * reliable in product mode but that would require greatly increasing
++ * the runtime.
++ */
++
++public class Test7002666 {
++    public static void main(String[] args) {
++        for (int i = 0; i < 25000; i++) {
++            Object[] a = test(Test7002666.class, new Test7002666());
++            if (a[0] != null) {
++                // The element should be null but if it's not then
++                // we've hit the bug.  This will most likely crash but
++                // at least throw an exception.
++                System.err.println(a[0]);
++                throw new InternalError(a[0].toString());
++                
++            }
++        }
++    }
++    public static Object[] test(Class c, Object o) {
++        // allocate an array small enough to be trigger the bug
++        Object[] a = (Object[])java.lang.reflect.Array.newInstance(c, 1);
++        return a;
++    }
++}

----- End forwarded message -----

-- 
Andrew :)

Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)

Support Free Java!
Contribute to GNU Classpath and IcedTea
http://www.gnu.org/software/classpath
http://icedtea.classpath.org
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8



More information about the distro-pkg-dev mailing list