Searched refs:stack0 (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Dvmreg.cpp30 VMReg VMRegImpl::stack0 = (VMReg)(intptr_t)((ConcreteRegisterImpl::number_of_registers + 7) & ~7); member in class:VMRegImpl
45 int stk = value() - stack0->value();
H A Dvmreg.hpp70 // Register numbers below VMRegImpl::stack0 are the same for both. Register
71 // numbers above stack0 are either warped (in the compiler) or unwarped
91 static VMReg stack0; member in class:VMRegImpl
113 bool is_stack() const { return (intptr_t) this >= (intptr_t) stack0; }
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");
164 return (VMReg) (intptr_t) (stack0->value() + idx);
169 return value() - stack0->value();
/openjdk7/hotspot/src/share/vm/opto/
H A Doptoreg.hpp84 assert( r >= stack0(), " must be");
85 return r - stack0();
90 return Name(stack0() + idx);
94 return n >= stack0();
144 static OptoReg::Name stack0() { function in class:VALUE_OBJ_CLASS_SPEC
145 return VMRegImpl::stack0->value();
H A Dregalloc.cpp62 ? reg - OptoReg::stack0() + _framesize
64 // Note: We use the direct formula (reg - SharedInfo::stack0) instead of
H A DbuildOopMap.cpp231 debug_only( char *dup_check = NEW_RESOURCE_ARRAY(char,OptoReg::stack0());
232 memset(dup_check,0,OptoReg::stack0()) );
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DVMRegImpl.java36 private static VMReg stack0; field in class:VMRegImpl
51 AddressField stack0Field = type.getAddressField("stack0");
54 stack0 = new VMReg(stack0Val);
59 return stack0;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DFrame.java436 VMReg stack0 = VM.getVM().getVMRegImplInfo().getStack0();
437 if (reg.lessThan(stack0)) {
441 long spOffset = VM.getVM().getAddressSize() * reg.minus(stack0);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java1182 final int stack0 = VMRegImpl.getStack0().getValue();
1200 if (reg < stack0) {
1204 tmpBuf.append(Integer.toString((reg - stack0) * 4));
1211 if (contentReg < stack0) {
1215 tmpBuf.append(Integer.toString((contentReg - stack0) * 4));
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp980 static_field(VMRegImpl, stack0, VMReg) \

Completed in 288 milliseconds