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

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp196 // is_pointer bit
328 if (is_pointer()) {
337 char type_char() const { return type_char((is_pointer()) ? pointer()->type() : type()); }
352 bool is_pointer() const { return check_value_mask(pointer_mask, pointer_value); } function in class:LIR_OprDesc
359 bool is_constant() const { return is_pointer() && pointer()->as_constant() != NULL; }
360 bool is_address() const { return is_pointer() && pointer()->as_address() != NULL; }
362 bool is_float_kind() const { return is_pointer() ? pointer()->is_float_kind() : (kind_field() == fpu_register); }
392 // (in this functions, the check for is_pointer() is omitted)
418 LIR_OprPtr* pointer() const { assert(is_pointer(), "type check"); return (LIR_OprPtr*)this; }
2253 } else if (opr->is_pointer()) { function
[all...]

Completed in 51 milliseconds