Revision: 2617 Author: [email protected] Date: Tue Aug 4 05:30:21 2009 Log: 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 http://code.google.com/p/v8/source/detail?r=2617 Modified: /branches/bleeding_edge/src/execution.h ======================================= --- /branches/bleeding_edge/src/execution.h Mon May 25 03:05:56 2009 +++ /branches/bleeding_edge/src/execution.h Tue Aug 4 05:30:21 2009 @@ -205,7 +205,7 @@ 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 -~----------~----~----~----~------~----~------~--~---
