Searched defs:stack_top (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A DthreadLS_bsd_x86.cpp74 address stack_top = os::current_stack_base(); local
77 for (address p = stack_top - stack_size; p < stack_top; p += PAGE_SIZE) {
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A DthreadLS_linux_x86.cpp69 address stack_top = os::current_stack_base(); local
72 for (address p = stack_top - stack_size; p < stack_top; p += PAGE_SIZE) {
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_stack.c117 stack_top(Stack *stack) function
141 element = stack_top(stack);
158 top_element = stack_top(stack);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.cpp116 Value *stack_top = builder()->CreateSub( local
132 stack_top);
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp323 address stack_top; local
328 stack_top = (address) pthread_get_stackaddr_np(self);
330 stack_bottom = stack_top - stack_bytes;
339 stack_top = (address) ss.ss_sp;
341 stack_bottom = stack_top - stack_bytes;
364 stack_top = stack_bottom + stack_bytes;
383 stack_top = stack_bottom + stack_bytes;
419 stack_bytes = stack_top - stack_bottom;
424 stack_bottom = stack_top - stack_bytes;
429 assert(os::current_stack_pointer() < stack_top, "shoul
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp329 address stack_top = stack_bottom + stack_bytes; local
364 stack_bytes = stack_top - stack_bottom;
369 stack_bottom = stack_top - stack_bytes;
373 assert(os::current_stack_pointer() < stack_top, "should do");
376 *size = stack_top - stack_bottom;
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp545 address stack_top; local
549 stack_top = _thread->stack_base();
552 stack_top = os::current_stack_base();
556 address stack_bottom = stack_top - stack_size;
557 st->print("[" PTR_FORMAT "," PTR_FORMAT "]", stack_bottom, stack_top);
/openjdk7/hotspot/src/share/vm/interpreter/
H A DoopMapCache.cpp45 void set_mask(CellTypeState* vars, CellTypeState* stack, int stack_top);
53 bool verify_mask(CellTypeState *vars, CellTypeState *stack, int max_locals, int stack_top);
79 int stack_top);
134 int stack_top) {
137 _entry->set_mask(vars, stack, stack_top);
138 _stack_top = stack_top;
307 bool OopMapCacheEntry::verify_mask(CellTypeState* vars, CellTypeState* stack, int max_locals, int stack_top) { argument
330 if (TraceOopMapGeneration && Verbose) { tty->cr(); tty->print("Stack (%d): ", stack_top); }
331 for(int j = 0; j < stack_top; j++) {
396 void OopMapCacheEntry::set_mask(CellTypeState *vars, CellTypeState *stack, int stack_top) { argument
131 fill_stackmap_for_opcodes(BytecodeStream *bcs, CellTypeState* vars, CellTypeState* stack, int stack_top) argument
[all...]
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp530 int stack_top) {}
563 int stack_top) {}
527 fill_stackmap_for_opcodes(BytecodeStream *bcs, CellTypeState* vars, CellTypeState* stack, int stack_top) argument
560 fill_stackmap_for_opcodes(BytecodeStream *bcs, CellTypeState* vars, CellTypeState* stack, int stack_top) argument
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1523 uintptr_t stack_top; local
1528 stack_top = (uintptr_t)high;
1535 stack_top = stack_start;
1539 // stack_top could be partially down the page so align it
1540 stack_top = align_size_up(stack_top, page_size());
1549 _initial_thread_stack_bottom = (address)stack_top - _initial_thread_stack_size;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1331 uintptr_t stack_top; local
1336 stack_top = (uintptr_t)high;
1343 stack_top = stack_start;
1347 // stack_top could be partially down the page so align it
1348 stack_top = align_size_up(stack_top, page_size());
1357 _initial_thread_stack_bottom = (address)stack_top - _initial_thread_stack_size;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp6164 intptr_t retval, stack_top; local
6169 stack_top=(intptr_t)st.ss_sp-st.ss_size;
6170 return ((intptr_t)&stack_top - stack_top - STACK_SLACK);

Completed in 110 milliseconds