# HG changeset patch # User never # Date 1265310983 28800 # Node ID c028504fdaa6ff005235cd5ccfd788764178908a # Parent c1f1137b35753a9bc74a835f36a77265e2ce27df 6921992: failure in verify scheduling after 6792161 Reviewed-by: kvn diff -r c1f1137b3575 -r c028504fdaa6 src/share/vm/opto/ifg.cpp --- a/src/share/vm/opto/ifg.cpp Thu Feb 04 03:34:05 2010 -0800 +++ b/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;