Searched defs:top (Results 126 - 128 of 128) sorted by relevance

123456

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.cpp6056 // Print some words near top of staack.
6664 // Print some words near top of staack.
7473 // Compare obj with the top addr, and if still equal, store the new top addr in
7474 // end at the address of the top addr pointer. Sets ZF if was equal, and clears
8907 // update the tlab top pointer
8921 Register top = rax; local
8925 assert_different_registers(top, thread_reg, t1, t2, /* preserve: */ rbx, rdx);
8935 movptr(top, Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())));
8939 subptr(t1, top);
9013 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_start_offset())), top); local
9014 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_top_offset())), top); local
9017 movptr(Address(thread_reg, in_bytes(JavaThread::tlab_end_offset())), top); local
9867 int top() const { return (_value >> 11) & 7 ; } function in class:StatusWord
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1051 // kernel (see 4821821 for details). We first expand stack to the top
1191 // Try to figure out where the stack base (top) is. This is harder.
1195 // libraries. __libc_stack_end should be pretty close to stack top. The
1200 // to __libc_stack_end, it is very close to stack top, but isn't the real
1201 // stack top. Note that /proc may not exist if VM is running as a chroot
1324 // Now we have a pointer (stack_start) very close to the stack top, the
1325 // next thing to do is to figure out the exact location of stack top. We
1328 // and its upper limit is the real stack top. (again, this would fail if
1334 // success, "high" is the true stack top. (ignore "low", because initial
1341 // stack top, us
3006 get_stack_bounds(uintptr_t *bottom, uintptr_t *top) argument
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp2983 int result_size = 0, top = 1, bottom = 0, cur = 0; local
2986 (Solaris::lgrp_id_t*)&ids[top], size - top);
3000 top += r;
3438 // acceptable value, then copy the usable sizes to the top of the array and
4821 // see comments at the very top and jvm_solaris.h
6156 // until we no longer want to able to run on top of 1.3.0 Solaris production

Completed in 120 milliseconds

123456