diff options
author | Ryan <ry@tinyclouds.org> | 2009-08-19 16:37:15 +0200 |
---|---|---|
committer | Ryan <ry@tinyclouds.org> | 2009-08-19 16:37:15 +0200 |
commit | 0cec74d03dc6a1735e731fe06056a1731e14c0df (patch) | |
tree | 9606bcb9afeba305a7b2a1ac4c518ded63a25d89 /deps/v8/src/heap.h | |
parent | b590a45849307f5544b7a95854f45064527105ad (diff) | |
download | node-new-0cec74d03dc6a1735e731fe06056a1731e14c0df.tar.gz |
Upgrade v8 to 1.3.5
Diffstat (limited to 'deps/v8/src/heap.h')
-rw-r--r-- | deps/v8/src/heap.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/deps/v8/src/heap.h b/deps/v8/src/heap.h index 179f9af10c..ec1e21af5b 100644 --- a/deps/v8/src/heap.h +++ b/deps/v8/src/heap.h @@ -852,7 +852,11 @@ class Heap : public AllStatic { static const int kMaxMapSpaceSize = 8*MB; +#if defined(V8_TARGET_ARCH_X64) + static const int kMaxObjectSizeInNewSpace = 512*KB; +#else static const int kMaxObjectSizeInNewSpace = 256*KB; +#endif static NewSpace new_space_; static OldSpace* old_pointer_space_; |