/hg/icedtea6: Fix PR icedtea/324

gbenson at icedtea.classpath.org gbenson at icedtea.classpath.org
Fri Apr 30 02:25:03 PDT 2010


changeset d1be9b22e65a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=d1be9b22e65a
author: Gary Benson <gbenson at redhat.com>
date: Fri Apr 30 10:24:39 2010 +0100

	Fix PR icedtea/324


diffstat:

2 files changed, 24 insertions(+), 14 deletions(-)
ChangeLog                                               |    8 ++++
ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp |   30 ++++++++-------

diffs (76 lines):

diff -r f882c327935a -r d1be9b22e65a ChangeLog
--- a/ChangeLog	Thu Apr 29 08:59:57 2010 +0200
+++ b/ChangeLog	Fri Apr 30 10:24:39 2010 +0100
@@ -1,3 +1,11 @@ 2010-04-29  Pavel Tisnovsky  <ptisnovs at r
+2010-04-30  Gary Benson  <gbenson at redhat.com>
+
+	PR icedtea/324
+	* ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
+	(SharkTopLevelBlock::do_aload): Cope with cases where
+	the array's type is unknown.
+	(SharkTopLevelBlock::do_astore): Likewise.
+
 2010-04-29  Pavel Tisnovsky  <ptisnovs at redhat.com>
 
 	* overlays/openjdk/jdk/test/com: Removed, correct
diff -r f882c327935a -r d1be9b22e65a ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp
--- a/ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp	Thu Apr 29 08:59:57 2010 +0200
+++ b/ports/hotspot/src/share/vm/shark/sharkTopLevelBlock.cpp	Fri Apr 30 10:24:39 2010 +0100
@@ -691,12 +691,6 @@ void SharkTopLevelBlock::do_aload(BasicT
   SharkValue *index = pop();
   SharkValue *array = pop();
 
-  assert(array->type()->is_array_klass(), "should be");
-  ciType *element_type = ((ciArrayKlass *) array->type())->element_type();
-  assert((element_type->basic_type() == T_BOOLEAN && basic_type == T_BYTE) ||
-         (element_type->basic_type() == T_ARRAY && basic_type == T_OBJECT) ||
-         (element_type->basic_type() == basic_type), "type mismatch");
-
   check_null(array);
   check_bounds(array, index);
 
@@ -729,7 +723,21 @@ void SharkTopLevelBlock::do_aload(BasicT
     break;
 
   case T_OBJECT:
-    push(SharkValue::create_generic(element_type, value, false));
+    // You might expect that array->type()->is_array_klass() would
+    // always be true, but it isn't.  If ciTypeFlow detects that a
+    // value is always null then that value becomes an untyped null
+    // object.  Shark doesn't presently support this, so a generic
+    // T_OBJECT is created.  In this case we guess the type using
+    // the BasicType we were supplied.  In reality the generated
+    // code will never be used, as the null value will be caught
+    // by the above null pointer check.
+    // http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=324
+    push(
+      SharkValue::create_generic(
+        array->type()->is_array_klass() ?
+          ((ciArrayKlass *) array->type())->element_type() :
+          ciType::make(basic_type),
+        value, false));
     break;
 
   default:
@@ -742,12 +750,6 @@ void SharkTopLevelBlock::do_astore(Basic
   SharkValue *svalue = pop();
   SharkValue *index  = pop();
   SharkValue *array  = pop();
-
-  assert(array->type()->is_array_klass(), "should be");
-  ciType *element_type = ((ciArrayKlass *) array->type())->element_type();
-  assert((element_type->basic_type() == T_BOOLEAN && basic_type == T_BYTE) ||
-         (element_type->basic_type() == T_ARRAY && basic_type == T_OBJECT) ||
-         (element_type->basic_type() == basic_type), "type mismatch");
 
   check_null(array);
   check_bounds(array, index);
@@ -792,7 +794,7 @@ void SharkTopLevelBlock::do_astore(Basic
 
   builder()->CreateStore(value, addr);
 
-  if (!element_type->is_primitive_type())
+  if (basic_type == T_OBJECT) // XXX or T_ARRAY?
     builder()->CreateUpdateBarrierSet(oopDesc::bs(), addr);
 }
 



More information about the distro-pkg-dev mailing list