Searched refs:on_stack (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.cpp42 if (on_stack()) {
51 if (on_stack() &&
61 if (on_stack()) {
H A DgrowableArray.hpp103 bool on_stack () { return _arena == NULL; } function in class:GenericGrowableArray
120 assert(!on_stack() ||
145 assert(on_stack(), "fast ResourceObj path only");
/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.hpp47 on_stack, enumerator in enum:VALUE_OBJ_CLASS_SPEC::Where
93 static Location new_stk_loc( Type t, int offset ) { return Location(on_stack,t,offset>>LogBytesPerInt); }
97 Location() { set(on_stack,invalid,0); }
106 bool is_stack() const { return where() == on_stack; }
108 int stack_offset() const { assert(where() == on_stack, "wrong Where"); return offset()<<LogBytesPerInt; }
H A Dlocation.cpp33 case on_stack: st->print("empty"); break;
39 case on_stack: st->print("stack[%d]", stack_offset()); break;
/openjdk7/hotspot/src/share/vm/opto/
H A Dnode.cpp1712 bool on_stack = nstack.contains(n); local
1713 if (!on_stack) {
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LinearScan.cpp2226 assert(location.where() == Location::on_stack, "value is in register");
2241 assert(location.where() == Location::on_stack, "owner is in register");
2243 assert(value->basic_lock().where() == Location::on_stack, "basic_lock is in register");
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp2413 declare_constant(Location::on_stack) \

Completed in 81 milliseconds