@@ -61,29 +61,19 @@ define_pd_global(intx, InlineSmallCode, 1000);
6161#define MIN_STACK_RED_PAGES DEFAULT_STACK_RED_PAGES
6262#define MIN_STACK_RESERVED_PAGES (0 )
6363
64- #ifdef _LP64
6564// Java_java_net_SocketOutputStream_socketWrite0() uses a 64k buffer on the
66- // stack if compiled for unix and LP64. To pass stack overflow tests we need
67- // 20 shadow pages.
65+ // stack if compiled for unix. To pass stack overflow tests we need 20 shadow pages.
6866#define DEFAULT_STACK_SHADOW_PAGES (NOT_WIN64(20 ) WIN64_ONLY(8 ) DEBUG_ONLY(+4 ))
6967// For those clients that do not use write socket, we allow
7068// the min range value to be below that of the default
7169#define MIN_STACK_SHADOW_PAGES (NOT_WIN64(10 ) WIN64_ONLY(8 ) DEBUG_ONLY(+4 ))
72- #else
73- #define DEFAULT_STACK_SHADOW_PAGES (4 DEBUG_ONLY (+5 ))
74- #define MIN_STACK_SHADOW_PAGES DEFAULT_STACK_SHADOW_PAGES
75- #endif // _LP64
7670
7771define_pd_global (intx, StackYellowPages, DEFAULT_STACK_YELLOW_PAGES);
7872define_pd_global (intx, StackRedPages, DEFAULT_STACK_RED_PAGES);
7973define_pd_global (intx, StackShadowPages, DEFAULT_STACK_SHADOW_PAGES);
8074define_pd_global (intx, StackReservedPages, DEFAULT_STACK_RESERVED_PAGES);
8175
82- #ifdef _LP64
8376define_pd_global (bool , VMContinuations, true );
84- #else
85- define_pd_global (bool , VMContinuations, false );
86- #endif
8777
8878define_pd_global (bool , RewriteBytecodes, true );
8979define_pd_global (bool , RewriteFrequentPairs, true );
0 commit comments