Revision: 5968 Author: [email protected] Date: Fri Dec 10 06:11:17 2010 Log: Increase the size of the max object that can be new space allocated. This is neutral on in-browser SunSpider, but beneficial on other things, and is likely to lower memory use by collecting earlier. Review URL: http://codereview.chromium.org/5753003 http://code.google.com/p/v8/source/detail?r=5968
Modified: /branches/bleeding_edge/src/heap.h ======================================= --- /branches/bleeding_edge/src/heap.h Tue Dec 7 03:31:57 2010 +++ /branches/bleeding_edge/src/heap.h Fri Dec 10 06:11:17 2010 @@ -1119,9 +1119,9 @@ static int contexts_disposed_; #if defined(V8_TARGET_ARCH_X64) - static const int kMaxObjectSizeInNewSpace = 512*KB; + static const int kMaxObjectSizeInNewSpace = 1024*KB; #else - static const int kMaxObjectSizeInNewSpace = 256*KB; + static const int kMaxObjectSizeInNewSpace = 512*KB; #endif static NewSpace new_space_; -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
