Searched defs:stack_bottom (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.cpp322 address stack_bottom; local
330 stack_bottom = stack_top - stack_bytes;
341 stack_bottom = stack_top - stack_bytes;
357 if (pthread_attr_getstackaddr(&attr, (void **) &stack_bottom) != 0 ||
364 stack_top = stack_bottom + stack_bytes;
378 res = pthread_attr_getstack(&attr, (void **) &stack_bottom, &stack_bytes);
383 stack_top = stack_bottom + stack_bytes;
388 assert(((intptr_t) stack_bottom & (page_bytes - 1)) == 0, "unaligned stack");
408 stack_bottom += (total_pages - guard_pages) / 2 * page_bytes;
411 stack_bottom
[all...]
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.cpp323 address stack_bottom; local
325 res = pthread_attr_getstack(&attr, (void **) &stack_bottom, &stack_bytes);
329 address stack_top = stack_bottom + stack_bytes;
334 assert(((intptr_t) stack_bottom & (page_bytes - 1)) == 0, "unaligned stack");
353 stack_bottom += (total_pages - guard_pages) / 2 * page_bytes;
356 stack_bottom += guard_bytes;
364 stack_bytes = stack_top - stack_bottom;
369 stack_bottom = stack_top - stack_bytes;
372 assert(os::current_stack_pointer() >= stack_bottom, "should do");
375 *bottom = stack_bottom;
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp556 address stack_bottom = stack_top - stack_size; local
557 st->print("[" PTR_FORMAT "," PTR_FORMAT "]", stack_bottom, stack_top);
564 size_t free_stack_size = pointer_delta(fr.sp(), stack_bottom, 1024);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp816 address stack_bottom = os::current_stack_base() - os::current_stack_size(); local
819 return stack_bottom - ThreadSafetyMargin >= highest_vm_reserved_address();
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp346 address stack_bottom; local
350 stack_bottom = (address)minfo.AllocationBase;
357 VirtualQuery(stack_bottom+stack_size, &minfo, sizeof(minfo));
358 if ( stack_bottom == (address)minfo.AllocationBase )
368 return stack_bottom + stack_size;

Completed in 70 milliseconds