Searched defs:_hash_lock (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.hpp388 assert( !VerifyHashTableKeys || _hash_lock == 0,
400 assert( !VerifyHashTableKeys || _hash_lock == 0,
483 debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH);
1034 int _hash_lock; // Barrier to modifications of nodes in the hash table member in class:Node
1035 void enter_hash_lock() { ++_hash_lock; assert(_hash_lock < 99, "in too many hash tables?"); }
1036 void exit_hash_lock() { --_hash_lock; assert(_hash_lock >= 0, "mispaired hash locks"); }
1560 debug_only(uint check_hash = (VerifyHashTableKeys && _hash_lock) ? hash() : NO_HASH);

Completed in 712 milliseconds