From 86cf9ca690eeb18a4fdcc2b65c82f45d94a3a4b0 Mon Sep 17 00:00:00 2001 From: "hpayer@chromium.org" Date: Mon, 27 Jan 2014 14:37:22 +0000 Subject: [PATCH] Enable concurrent sweeping. BUG= R=mvstanton@chromium.org Review URL: https://codereview.chromium.org/146833012 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18855 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/flag-definitions.h | 4 ++-- test/mjsunit/mjsunit.status | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/flag-definitions.h b/src/flag-definitions.h index e0089e6..393e2a6 100644 --- a/src/flag-definitions.h +++ b/src/flag-definitions.h @@ -527,8 +527,8 @@ DEFINE_bool(trace_incremental_marking, false, "trace progress of the incremental marking") DEFINE_bool(track_gc_object_stats, false, "track object counts and memory usage") -DEFINE_bool(parallel_sweeping, true, "enable parallel sweeping") -DEFINE_bool(concurrent_sweeping, false, "enable concurrent sweeping") +DEFINE_bool(parallel_sweeping, false, "enable parallel sweeping") +DEFINE_bool(concurrent_sweeping, true, "enable concurrent sweeping") DEFINE_int(sweeper_threads, 0, "number of parallel and concurrent sweeping threads") #ifdef VERIFY_HEAP diff --git a/test/mjsunit/mjsunit.status b/test/mjsunit/mjsunit.status index 572291a..2bb1a08 100644 --- a/test/mjsunit/mjsunit.status +++ b/test/mjsunit/mjsunit.status @@ -35,6 +35,9 @@ # BUG(v8:2921). 'debug-step-4-in-frame': [PASS, FAIL, SLOW], + # TODO(mvstanton): Investigate. + 'regress/regress-320948.js': [PASS, FAIL, FLAKY], + ############################################################################## # Fails. 'regress/regress-1119': [FAIL], -- 2.7.4