diff options
author | isaacs <i@izs.me> | 2012-02-06 15:21:49 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-02-06 15:21:49 -0800 |
commit | 8be699494ec67c3ba895bd8e1c9e3e73b02311d3 (patch) | |
tree | 22ee6f2ba22a26594ae0062c827c67710fc166db /deps/v8/src/mark-compact.h | |
parent | 23514fc94648185c092355bf3e5bbce76844bd42 (diff) | |
download | node-8be699494ec67c3ba895bd8e1c9e3e73b02311d3.tar.gz |
Upgrade V8 to 3.9.2
Diffstat (limited to 'deps/v8/src/mark-compact.h')
-rw-r--r-- | deps/v8/src/mark-compact.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/src/mark-compact.h b/deps/v8/src/mark-compact.h index a911b49d2..135f22043 100644 --- a/deps/v8/src/mark-compact.h +++ b/deps/v8/src/mark-compact.h @@ -374,7 +374,7 @@ class SlotsBuffer { static const int kNumberOfElements = 1021; private: - static const int kChainLengthThreshold = 6; + static const int kChainLengthThreshold = 15; intptr_t idx_; intptr_t chain_length_; @@ -572,6 +572,8 @@ class MarkCompactCollector { // heap. bool sweep_precisely_; + bool reduce_memory_footprint_; + // True if we are collecting slots to perform evacuation from evacuation // candidates. bool compacting_; |