diff src/share/vm/opto/escape.cpp @ 584:49a36a80b0c7

6802499: EA: assert(false,"unknown node on this path") Summary: Add missing checks for SCMemProj node in Escape analysis code. Reviewed-by: never
author kvn
date Thu, 19 Feb 2009 17:38:53 -0800
parents 424f9bfe6b96
children 98cb887364d3
line wrap: on
line diff
--- a/src/share/vm/opto/escape.cpp	Wed Feb 18 13:53:42 2009 -0800
+++ b/src/share/vm/opto/escape.cpp	Thu Feb 19 17:38:53 2009 -0800
@@ -756,6 +756,16 @@
       } else {
         break;
       }
+    } else if (result->Opcode() == Op_SCMemProj) {
+      assert(result->in(0)->is_LoadStore(), "sanity");
+      const Type *at = phase->type(result->in(0)->in(MemNode::Address));
+      if (at != Type::TOP) {
+        assert (at->isa_ptr() != NULL, "pointer type required.");
+        int idx = C->get_alias_index(at->is_ptr());
+        assert(idx != alias_idx, "Object is not scalar replaceable if a LoadStore node access its field");
+        break;
+      }
+      result = result->in(0)->in(MemNode::Memory);
     }
   }
   if (result->is_Phi()) {