Reviewers: Erik Corry,

Description:
Merge r10148 to 3.7 branch: Fix performance on the page cycler...

Original CL: http://codereview.chromium.org/8804004


BUG=
TEST=


Please review this at http://codereview.chromium.org/8803007/

SVN Base: https://v8.googlecode.com/svn/branches/3.7

Affected files:
  M src/mark-compact.cc
  M src/version.cc


Index: src/mark-compact.cc
diff --git a/src/mark-compact.cc b/src/mark-compact.cc
index fb3ac5697939b983e958bad7495356256e556413..1b992ec44c4ac2153fc8d7083bb4544710361e84 100644
--- a/src/mark-compact.cc
+++ b/src/mark-compact.cc
@@ -3673,6 +3673,7 @@ void MarkCompactCollector::SweepSpaces() {
 #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
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index f5fad766781bcb0a6142a147b3b537363c7820bc..40a1d02c0005f924e8f978ba46d0f7d72c247dd4 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -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

Reply via email to