Reviewers: William Hesse, Message: Tiny review. Needed to run at least one test.
Description: X64: double stack size, to be able to have the same number of stack frames as in ia32. Please review this at http://codereview.chromium.org/159852 Affected files: M src/execution.h Index: src/execution.h diff --git a/src/execution.h b/src/execution.h index 8cfdec27f3f082511ea11d05de4ae8cad49c1656..126b172d21e327cfc841922fc09160659c4a7061 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; --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
