Searched refs:jcw (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86Frame.java299 X86JavaCallWrapper jcw = (X86JavaCallWrapper) getEntryFrameCallWrapper();
302 Assert.that(jcw.getLastJavaSP().greaterThan(getSP()), "must be above this frame on stack");
305 if (jcw.getLastJavaPC() != null) {
306 fr = new X86Frame(jcw.getLastJavaSP(), jcw.getLastJavaFP(), jcw.getLastJavaPC());
308 fr = new X86Frame(jcw.getLastJavaSP(), jcw.getLastJavaFP());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp121 address jcw = (address)entry_frame_call_wrapper();
122 bool jcw_safe = (jcw < thread->stack_base()) && ( jcw > fp);
205 address jcw = (address)sender.entry_frame_call_wrapper(); local
207 bool jcw_safe = (jcw < thread->stack_base()) && ( jcw > (address)sender.fp());
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.cpp234 address jcw = (address)entry_frame_call_wrapper();
236 bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > _FP);
295 address jcw = (address)sender.entry_frame_call_wrapper(); local
297 bool jcw_safe = (jcw <= thread->stack_base()) && ( jcw > sender_fp);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64Frame.java142 IA64JavaCallWrapper jcw = new IA64JavaCallWrapper(wrapper);
143 Address iprev = jcw.getPrevIFrame();
194 IA64JavaCallWrapper jcw = (IA64JavaCallWrapper) getEntryFrameCallWrapper();
197 Assert.that(jcw.getLastJavaSP().greaterThan(getSP()), "must be above this frame on stack");
199 IA64Frame fr = new IA64Frame(jcw.getLastJavaSP(), jcw.getLastJavaFP(), null);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/sparc/
H A DSPARCFrame.java954 JavaCallWrapper jcw = getEntryFrameCallWrapper();
957 Assert.that(jcw.getLastJavaSP().greaterThan(getSP()), "must be above this frame on stack");
959 Address lastJavaSP = jcw.getLastJavaSP();
960 Address lastJavaPC = jcw.getLastJavaPC();

Completed in 60 milliseconds