From 4fa5fc4f7ebef115906f8a6c7dc4314d0fec8350 Mon Sep 17 00:00:00 2001 From: "lrn@chromium.org" Date: Tue, 4 Aug 2009 12:30:21 +0000 Subject: [PATCH] X64: double stack size, to be able to have the same number of stack frames as in ia32. Review URL: http://codereview.chromium.org/159852 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2617 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/execution.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/execution.h b/src/execution.h index 8cfdec27f3..126b172d21 100644 --- a/src/execution.h +++ b/src/execution.h @@ -205,7 +205,7 @@ class StackGuard BASE_EMBEDDED { static void EnableInterrupts(); static void DisableInterrupts(); - static const uintptr_t kLimitSize = 512 * KB; + static const uintptr_t kLimitSize = kPointerSize * 128 * KB; static const uintptr_t kInterruptLimit = 0xfffffffe; static const uintptr_t kIllegalLimit = 0xffffffff;