--- a/hotspot/src/share/vm/opto/node.cpp Wed Dec 09 13:41:04 2015 +0100
+++ b/hotspot/src/share/vm/opto/node.cpp Thu Dec 10 14:51:53 2015 +0300
@@ -2365,6 +2365,17 @@
#endif
}
+void Node_List::dump_simple() const {
+#ifndef PRODUCT
+ for( uint i = 0; i < _cnt; i++ )
+ if( _nodes[i] ) {
+ tty->print(" %d", _nodes[i]->_idx);
+ } else {
+ tty->print(" NULL");
+ }
+#endif
+}
+
//=============================================================================
//------------------------------remove-----------------------------------------
void Unique_Node_List::remove( Node *n ) {