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

/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.hpp106 bool is_stack() const { return where() == on_stack; } function in class:VALUE_OBJ_CLASS_SPEC
H A Dvmreg.hpp113 bool is_stack() const { return (intptr_t) this >= (intptr_t) stack0; } function in class:VMRegImpl
114 bool is_reg() const { return is_valid() && !is_stack(); }
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");
155 assert(is_stack(), "must be");
158 assert(res->is_stack(), "must be");
168 assert( is_stack(), "Not a stack-based register" );
227 return (_first->is_stack() && (_first->value() + 1 == _second->value()) && ((_first->value() & (alignment-1)) == 0));
232 return (_first->is_stack()
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp93 static bool is_stack(Name n) { function in class:VALUE_OBJ_CLASS_SPEC
102 return is_valid(n) && !is_stack(n);
110 assert(!is_stack(n), "must un warp");
120 } else if (is_stack(n)) {
133 if (r->is_stack()) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.hpp609 bool is_stack() { return result()->is_stack(); } function in class:LIRItem
H A Dc1_LIR.hpp296 OprType type_field_valid() const { assert(is_register() || is_stack(), "should not be called otherwise"); return (OprType)(value() & type_mask); }
371 bool is_stack() const { validate_type(); return check_value_mask(kind_mask, stack_value); } function in class:LIR_OprDesc
393 bool is_single_word() const { assert(is_register() || is_stack(), "type check"); return check_value_mask(size_mask, single_size); }
394 bool is_double_word() const { assert(is_register() || is_stack(), "type check"); return check_value_mask(size_mask, double_size); }
396 bool is_oop_register() const { assert(is_register() || is_stack(), "type check"); return type_field_valid() == object_type; }
397 BasicType type_register() const { assert(is_register() || is_stack(), "type check"); return as_BasicType(type_field_valid()); }
2278 assert(opr->is_stack(), "stack operands are not processed");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp499 const int st_off, bool is_stack);
594 const int st_off, bool is_stack) {
606 if (is_stack) {
704 if (r_1->is_stack()) { // Pretend stack targets are loaded into G1
717 store_c2i_long(r, base, st_off, r_2->is_stack());
940 if (r_1->is_stack()) { // Pretend stack targets are loaded into F8/F9
981 if (regs[i].first()->is_stack()) {
1183 if (regs[i].first()->is_stack()) {
1187 if (regs[i].second()->is_stack()) {
1218 if (regs[i].first()->is_stack()) {
593 store_c2i_long(Register r, Register base, const int st_off, bool is_stack) argument
[all...]

Completed in 82 milliseconds