< prev index next >

src/share/vm/opto/phaseX.cpp

Print this page

        

*** 106,116 **** if( !k ) { // ?Miss? NOT_PRODUCT( _lookup_misses++ ); return NULL; // Miss! } ! int op = n->Opcode(); uint req = n->req(); while( 1 ) { // While probing hash table if( k->req() == req && // Same count of inputs k->Opcode() == op ) { // Same Opcode for( uint i=0; i<req; i++ ) --- 106,116 ---- if( !k ) { // ?Miss? NOT_PRODUCT( _lookup_misses++ ); return NULL; // Miss! } ! uint op = n->Opcode(); uint req = n->req(); while( 1 ) { // While probing hash table if( k->req() == req && // Same count of inputs k->Opcode() == op ) { // Same Opcode for( uint i=0; i<req; i++ )
*** 158,168 **** } else if( k == _sentinel ) { first_sentinel = key; // Can insert here } ! int op = n->Opcode(); uint req = n->req(); while( 1 ) { // While probing hash table if( k->req() == req && // Same count of inputs k->Opcode() == op ) { // Same Opcode for( uint i=0; i<req; i++ ) --- 158,168 ---- } else if( k == _sentinel ) { first_sentinel = key; // Can insert here } ! uint op = n->Opcode(); uint req = n->req(); while( 1 ) { // While probing hash table if( k->req() == req && // Same count of inputs k->Opcode() == op ) { // Same Opcode for( uint i=0; i<req; i++ )
< prev index next >