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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp284 enum OprType { enum in class:LIR_OprDesc
293 friend OprType as_OprType(BasicType t);
294 friend BasicType as_BasicType(OprType t);
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); }
458 inline LIR_OprDesc::OprType as_OprType(BasicType type) {
472 inline BasicType as_BasicType(LIR_OprDesc::OprType t) {
719 LIR_OprDesc::OprType
[all...]

Completed in 3262 milliseconds