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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java57 private static final int ref_not_lock_bit = Bits.nthBit(25); field in class:CellTypeState
111 return makeAny(ref_bit | not_bottom_info_bit | ref_not_lock_bit | ref_slot_bit |
119 return makeAny(ref_bit | not_bottom_info_bit | ref_not_lock_bit |
178 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == ref_bit);
181 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == (ref_bit | ref_not_lock_bit));
271 int data = info & ~(ref_not_lock_bit | ref_slot_bit);
272 if ((info & ref_not_lock_bit) != 0) {
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp115 enum { ref_not_lock_bit = nth_bit(25), // 0 if this reference is locked as a monitor enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon268
164 return make_any(ref_bit | not_bottom_info_bit | ref_not_lock_bit | ref_slot_bit |
170 return make_any(ref_bit | not_bottom_info_bit | ref_not_lock_bit |
218 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == ref_bit);
221 return ((_state & (bits_mask | top_info_bit | ref_not_lock_bit)) == (ref_bit | ref_not_lock_bit));

Completed in 32 milliseconds