Searched defs:stack_start (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1925 Value *stack_start = local
1926 builder()->CreateSub(stack_limit, stack_size, "stack_start");
1930 builder()->CreateICmpUGE(addr, stack_start),
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1401 uintptr_t stack_start; local
1406 stack_start = *p;
1494 &stack_start); /* 28 UINTX_FORMAT */
1505 stack_start = (uintptr_t) &rlim;
1512 stack_start = (uintptr_t) &rlim;
1516 // Now we have a pointer (stack_start) very close to the stack top, the
1518 // can find out the virtual memory area that contains stack_start by
1525 if (find_vma((address)stack_start, &low, &high)) {
1532 // best effort: stack_start is normally within a few pages below the real
1535 stack_top = stack_start;
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1209 uintptr_t stack_start; local
1214 stack_start = *p;
1302 &stack_start); /* 28 UINTX_FORMAT */
1313 stack_start = (uintptr_t) &rlim;
1320 stack_start = (uintptr_t) &rlim;
1324 // Now we have a pointer (stack_start) very close to the stack top, the
1326 // can find out the virtual memory area that contains stack_start by
1333 if (find_vma((address)stack_start, &low, &high)) {
1340 // best effort: stack_start is normally within a few pages below the real
1343 stack_top = stack_start;
[all...]

Completed in 56 milliseconds