6921992: failure in verify scheduling after 6792161
authornever
Thu, 04 Feb 2010 11:16:23 -0800
changeset 4760 70aa3bc938c2
parent 4759 bbc25efafb8a
child 4764 d15bb22d4d39
child 4891 7c8755dd5bb2
6921992: failure in verify scheduling after 6792161 Reviewed-by: kvn
hotspot/src/share/vm/opto/ifg.cpp
--- a/hotspot/src/share/vm/opto/ifg.cpp	Thu Feb 04 03:34:05 2010 -0800
+++ b/hotspot/src/share/vm/opto/ifg.cpp	Thu Feb 04 11:16:23 2010 -0800
@@ -736,28 +736,7 @@
         // the flags and assumes it's dead.  This keeps the (useless)
         // flag-setting behavior alive while also keeping the (useful)
         // memory update effect.
-        uint begin = 1;
-        uint end = n->req();
-        if (n->Opcode() == Op_SCMemProj) {
-          begin = 0;
-        } else if (n->is_Mach()) {
-          switch (n->as_Mach()->ideal_Opcode()) {
-            case Op_MemBarAcquire:
-            case Op_MemBarVolatile:
-              if (n->len() >= MemBarNode::Precedent + 1 &&
-                  n->in(MemBarNode::Precedent) != NULL &&
-                  n->in(MemBarNode::Precedent)->outcnt() == 1) {
-                // This membar node is the single user of it's input
-                // so the input won't be considered live and this node
-                // would get deleted during copy elimination so force
-                // it to be live.
-                end = MemBarNode::Precedent + 1;
-              }
-              break;
-          }
-        }
-
-        for( uint k = begin; k < end; k++ ) {
+        for( uint k = ((n->Opcode() == Op_SCMemProj) ? 0:1); k < n->req(); k++ ) {
           Node *def = n->in(k);
           uint x = n2lidx(def);
           if( !x ) continue;