src/share/vm/opto/phaseX.cpp

Print this page
rev 3904 : 8005071: Incremental inlining for JSR 292
Summary: post parse inlining driven by number of live nodes.
Reviewed-by:

*** 73,82 **** --- 73,89 ---- // just copy in all the fields *this = *nh; // nh->_sentinel must be in the current node space } + void NodeHash::update_with(NodeHash *nh) { + debug_only(_table = (Node**)badAddress); // interact correctly w/ operator= + // just copy in all the fields + *this = *nh; + // nh->_sentinel must be in the current node space + } + //------------------------------hash_find-------------------------------------- // Find in hash table Node *NodeHash::hash_find( const Node *n ) { // ((Node*)n)->set_hash( n->hash() ); uint hash = n->hash();