Searched defs:stack_size (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A DthreadLS_bsd_x86.cpp75 size_t stack_size = os::current_stack_size(); 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.cpp70 size_t stack_size = os::current_stack_size(); local
72 for (address p = stack_top - stack_size; p < stack_top; p += PAGE_SIZE) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp64 int stack_size() const { return _stack_size; } function in class:VALUE_OBJ_CLASS_SPEC
H A DsharedRuntime_x86_32.cpp1740 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
1818 __ subptr(rsp, stack_size - 2*wordSize);
1829 int fp_adjustment = stack_size - 2*wordSize;
2549 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
2589 if (stack_size <= StackShadowPages*os::vm_page_size()) {
2592 __ movl(rax, stack_size);
2607 if (stack_size - 2*wordSize != 0) {
2608 __ subl(rsp, stack_size - 2*wordSize);
H A DsharedRuntime_x86_64.cpp1967 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
2013 __ subptr(rsp, stack_size - 2*wordSize);
2820 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
2859 if (stack_size <= StackShadowPages*os::vm_page_size()) {
2862 __ movl(rax, stack_size);
2877 if (stack_size - 2*wordSize != 0) {
2878 __ subq(rsp, stack_size - 2*wordSize);
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.hpp103 u2 stack_size,
110 _stack_size(stack_size),
125 inline void set_stack_size(u2 stack_size) { _stack_size = _stack_mark = stack_size; } argument
132 inline int32_t stack_size() const { return _stack_size; } function in class:StackMapFrame
100 StackMapFrame(int32_t offset, u1 flags, u2 locals_size, u2 stack_size, u2 max_locals, u2 max_stack, VerificationType* locals, VerificationType* stack, ClassVerifier* v) argument
H A DstackMapTable.cpp111 int ssize = stackmap_frame->stack_size();
112 if (frame->locals_size() > lsize || frame->stack_size() > ssize) {
255 u2 stack_size = 1; local
259 stack_size = 2;
262 stack_size, max_stack, CHECK_VERIFY_(_verifier, NULL));
264 offset, pre_frame->flags(), pre_frame->locals_size(), stack_size,
295 u2 stack_size = 1; local
299 stack_size = 2;
302 stack_size, max_stack, CHECK_VERIFY_(_verifier, NULL));
304 offset, pre_frame->flags(), pre_frame->locals_size(), stack_size,
404 u2 stack_size = _stream->get_u2(THREAD); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp92 int stack_size() const { return _stack.length(); } function in class:ValueStack
259 int temp_var = state->stack_size(); \
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.cpp546 size_t stack_size; local
550 stack_size = _thread->stack_size();
553 stack_size = os::current_stack_size();
556 address stack_bottom = stack_top - stack_size;
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_solinux.c982 ContinueInNewThread0(int (JNICALL *continuation)(void *), jlong stack_size, void * args) { argument
987 if (thr_create(NULL, stack_size, (void *(*)(void *))continuation, args, flags, &tid) == 0) {
1001 if (stack_size > 0) {
1002 pthread_attr_setstacksize(&attr, stack_size);
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c1335 ContinueInNewThread(int (JNICALL *continuation)(void *), jlong stack_size, void * args) { argument
1351 (unsigned)stack_size,
1359 (unsigned)stack_size,
/openjdk7/jdk/src/macosx/bin/
H A Djava_md_macosx.c846 ContinueInNewThread0(int (JNICALL *continuation)(void *), jlong stack_size, void * args) { argument
853 if (stack_size > 0) {
854 pthread_attr_setstacksize(&attr, stack_size);
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.cpp250 JVMState::JVMState(int stack_size) : argument
259 _monoff = _stkoff + stack_size;
H A Dloopnode.cpp2220 int stack_size = (C->unique() >> 1) + 16; // (unique>>1)+16 from Java2D stats local
2221 Node_Stack nstack( a, stack_size );
2771 int stack_size; local
2773 while ( ( stack_size = bltstack.length() ) != 0 ) {
2815 if ( bltstack.length() == stack_size ) {
/openjdk7/hotspot/src/os/posix/launcher/
H A Djava_md.c1888 ContinueInNewThread(int (JNICALL *continuation)(void *), jlong stack_size, void * args) { argument
1896 if (stack_size > 0) {
1897 pthread_attr_setstacksize(&attr, stack_size);
1918 if (thr_create(NULL, stack_size, (void *(*)(void *))continuation, args, flags, &tid) == 0) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1920 Value *stack_size = builder()->CreateValueOfStructEntry( local
1923 "stack_size");
1926 builder()->CreateSub(stack_limit, stack_size, "stack_start");
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c1143 ContinueInNewThread0(int (JNICALL *continuation)(void *), jlong stack_size, void * args) { argument
1159 (unsigned)stack_size,
1167 (unsigned)stack_size,
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp211 int stack_size() const { return _stack_size; } function in class:ciTypeFlow::StateVector
223 return (Cell)(outer()->max_locals() + stack_size());
233 assert(snum < stack_size(), "index check");
237 Cell tos() const { return stack(stack_size()-1); }
592 int stack_size() const { return _state->stack_size(); } function in class:ciTypeFlow::Block
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp2207 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
2210 __ generate_stack_overflow_check(stack_size);
2213 __ save(SP, -stack_size, SP);
2896 int stack_size = stack_slots * VMRegImpl::stack_slot_size; local
2924 __ generate_stack_overflow_check(stack_size);
2930 __ save(SP, -stack_size, SP);
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp2698 julong stack_size = 0; local
2699 ArgsRange errcode = parse_memory_size(tail, &stack_size, 1);
2706 FLAG_SET_CMDLINE(uintx, MarkStackSize, stack_size);
H A Dthread.hpp535 size_t stack_size() const { return _stack_size; } function in class:Thread
942 JavaThread(ThreadFunction entry_point, size_t stack_size = 0);
1256 { return (address)(stack_base() - (stack_size() - (stack_red_zone_size() + stack_yellow_zone_size()))); }
1260 { return (address)(stack_base() - (stack_size() - stack_red_zone_size())); }
1266 { return (a <= stack_red_zone_base()) && (a >= (address)((intptr_t)stack_base() - stack_size())); }
1765 low_addr = stack_base() - stack_size();
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c285 int stack_size; member in struct:stack_info_type
1025 this_idata->stack_info.stack_size = UNKNOWN_STACK_SIZE;
1601 handler_info->stack_info.stack_size = 1;
1729 idata[0].stack_info.stack_size = 0;
1830 if (new_stack_info.stack_size > max_stack_size)
1974 int stack_size = this_idata->stack_info.stack_size; local
2246 stack_size -= size;
2444 new_stack_info->stack_size = stack_size;
2640 int stack_size = new_stack_info->stack_size; local
3180 int stack_size = this_idata->stack_info.stack_size; local
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1063 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
1088 if (stack_size == 0) {
1089 stack_size = os::Bsd::default_stack_size(thr_type);
1096 stack_size = JavaThread::stack_size_at_create();
1100 stack_size = (size_t)(CompilerThreadStackSize * K);
1108 if (VMThreadStackSize > 0) stack_size = (size_t)(VMThreadStackSize * K);
1113 stack_size = MAX2(stack_size, os::Bsd::min_stack_allowed);
1114 pthread_attr_setstacksize(&attr, stack_size);
1359 size_t stack_size; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp892 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
917 if (stack_size == 0) {
918 stack_size = os::Linux::default_stack_size(thr_type);
925 stack_size = JavaThread::stack_size_at_create();
929 stack_size = (size_t)(CompilerThreadStackSize * K);
937 if (VMThreadStackSize > 0) stack_size = (size_t)(VMThreadStackSize * K);
942 stack_size = MAX2(stack_size, os::Linux::min_stack_allowed);
943 pthread_attr_setstacksize(&attr, stack_size);
1167 size_t stack_size; local
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1004 address stackEnd = (address)(stackStart - (address)thread->stack_size());
1181 bool os::create_thread(Thread* thread, ThreadType thr_type, size_t stack_size) { argument
1217 if (stack_size == 0) {
1219 stack_size = (BytesPerWord >> 2) * K * K;
1224 if (JavaThread::stack_size_at_create() > 0) stack_size = JavaThread::stack_size_at_create();
1228 stack_size = (size_t)(CompilerThreadStackSize * K);
1236 if (VMThreadStackSize > 0) stack_size = (size_t)(VMThreadStackSize * K);
1240 stack_size = MAX2(stack_size, os::Solaris::min_stack_allowed);
1334 status = thr_create(NULL, stack_size, java_star
1494 size_t stack_size; local
[all...]

Completed in 189 milliseconds

12