Merge
authorjrose
Tue, 15 Sep 2009 22:50:12 -0700
changeset 3909 2e59fa985601
parent 3908 24b55ad4c228 (current diff)
parent 3907 2a567f035d5c (diff)
child 3910 67050ceda719
Merge
--- a/hotspot/src/share/vm/opto/escape.cpp	Tue Sep 15 21:53:47 2009 -0700
+++ b/hotspot/src/share/vm/opto/escape.cpp	Tue Sep 15 22:50:12 2009 -0700
@@ -524,12 +524,15 @@
   // inlining) which was not eliminated during parsing since the exactness
   // of the allocation type was not propagated to the subclass type check.
   //
+  // Or the type 't' could be not related to 'base_t' at all.
+  // It could happened when CHA type is different from MDO type on a dead path
+  // (for example, from instanceof check) which is not collapsed during parsing.
+  //
   // Do nothing for such AddP node and don't process its users since
   // this code branch will go away.
   //
   if (!t->is_known_instance() &&
-      !t->klass()->equals(base_t->klass()) &&
-      t->klass()->is_subtype_of(base_t->klass())) {
+      !base_t->klass()->is_subtype_of(t->klass())) {
      return false; // bail out
   }