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

/openjdk7/hotspot/src/share/vm/compiler/
H A DoopMap.hpp63 enum { type_mask = right_n_bits(type_bits), enumerator in enum:OopMapValue::__anon226
64 type_mask_in_place = type_mask << type_shift,
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp273 type_mask = 15 // A mask which selects only the above values enumerator in enum:VALUE_OBJ_CLASS_SPEC::relocType
316 type_width = 4, // == log2(type_mask+1)
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp257 , type_mask = right_n_bits(type_bits) << type_shift enumerator in enum:LIR_OprDesc::OprMask
265 , no_type_mask = (int)(~(type_mask | last_use_mask | is_fpu_stack_offset_mask))
296 OprType type_field_valid() const { assert(is_register() || is_stack(), "should not be called otherwise"); return (OprType)(value() & type_mask); }
297 OprType type_field() const { return is_illegal() ? unknown_type : (OprType)(value() & type_mask); }

Completed in 2766 milliseconds