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

/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp101 static bool is_reg(Name n) { function in class:VALUE_OBJ_CLASS_SPEC
106 if (is_reg(n)) {
117 if (is_reg(n)) {
/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.hpp102 if (is_reg()) {
114 bool is_reg() const { return is_valid() && !is_stack(); } function in class:VMRegImpl
116 // A concrete register is a value that returns true for is_reg() and is
131 assert((is_reg() && value() < stack0->value() - 1) || is_stack(), "must be");
135 assert((is_reg() && value() < stack0->value() - i) || is_stack(), "must be");
139 assert((is_stack() && value() > stack0->value()) || (is_reg() && value() != 0), "must be");
237 return (_first->is_reg() && (_first->value() + 1 == _second->value()));

Completed in 578 milliseconds