Revision: 10151
Author: [email protected]
Date: Mon Dec 5 01:55:08 2011
Log: Merge r10148 to 3.7 branch: Fix performance on the page cycler,
which is not designed to test GC speed.
Original CL: http://codereview.chromium.org/8804004
http://code.google.com/p/v8/source/detail?r=10151
Modified:
/branches/3.7/src/mark-compact.cc
/branches/3.7/src/version.cc
=======================================
--- /branches/3.7/src/mark-compact.cc Thu Dec 1 00:22:35 2011
+++ /branches/3.7/src/mark-compact.cc Mon Dec 5 01:55:08 2011
@@ -3673,6 +3673,7 @@
#endif
SweeperType how_to_sweep =
FLAG_lazy_sweeping ? LAZY_CONSERVATIVE : CONSERVATIVE;
+ if (FLAG_expose_gc) how_to_sweep = CONSERVATIVE;
if (sweep_precisely_) how_to_sweep = PRECISE;
// Noncompacting collections simply sweep the spaces to clear the mark
// bits and free the nonlive blocks (for old and map spaces). We sweep
=======================================
--- /branches/3.7/src/version.cc Fri Dec 2 03:41:29 2011
+++ /branches/3.7/src/version.cc Mon Dec 5 01:55:08 2011
@@ -35,7 +35,7 @@
#define MAJOR_VERSION 3
#define MINOR_VERSION 7
#define BUILD_NUMBER 12
-#define PATCH_LEVEL 2
+#define PATCH_LEVEL 3
// Use 1 for candidates and 0 otherwise.
// (Boolean macro values are not supported by all preprocessors.)
#define IS_CANDIDATE_VERSION 0
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev