Searched refs:new_sp (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A Dstack_zero.hpp72 void set_sp(intptr_t *new_sp) { argument
73 assert(_top >= new_sp && new_sp >= _base, "bad stack pointer");
74 _sp = new_sp;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.cpp769 static void print_me(intptr_t *new_sp, intptr_t *old_sp, bool *was_oops) { argument
779 tty->print("blob %c%d |"PTR_FORMAT" ","LO"[i>>3],i&7,new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++); }
782 tty->print("argv pad|"PTR_FORMAT" ",new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++); }
783 tty->print(" pad|"PTR_FORMAT" ",new_sp); print_ptrs(*old_sp++,*new_sp++,*was_oops++);
785 tty->print(" G1 |"PTR_FORMAT" ",new_sp); print_longs(*(jlong*)old_sp,*(jlong*)new_sp,was_oops[incr-1]); old_sp += incr; new_sp
[all...]
/openjdk7/hotspot/src/os/bsd/dtrace/
H A Dlibjvm_db.c48 uint64_t new_sp; /* "raw" sp for the next frame (includes extension by interpreter/adapter */ member in struct:__anon77
1265 jframe->new_sp = real_sp + frame_size + POINTER_SIZE;
1266 err = read_pointer(J, jframe->new_sp - POINTER_SIZE , &jframe->new_pc);
1268 err = read_pointer(J, jframe->new_sp - 2*POINTER_SIZE, &jframe->new_fp);
1281 jframe->new_sp = jframe->new_fp + 2 * POINTER_SIZE;
1489 if (jframe.new_sp) {
1490 *((uintptr_t *) &gregs[R_SP]) = (uintptr_t) jframe.new_sp;
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Dlibjvm_db.c48 uint64_t new_sp; /* "raw" sp for the next frame (includes extension by interpreter/adapter */ member in struct:__anon87
1265 jframe->new_sp = real_sp + frame_size + POINTER_SIZE;
1266 err = read_pointer(J, jframe->new_sp - POINTER_SIZE , &jframe->new_pc);
1268 err = read_pointer(J, jframe->new_sp - 2*POINTER_SIZE, &jframe->new_fp);
1281 jframe->new_sp = jframe->new_fp + 2 * POINTER_SIZE;
1489 if (jframe.new_sp) {
1490 *((uintptr_t *) &gregs[R_SP]) = (uintptr_t) jframe.new_sp;

Completed in 51 milliseconds