Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: src/flag-definitions.h

Issue 7104107: Incremental mode now works for x64. The only difference (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/flag-definitions.h
===================================================================
--- src/flag-definitions.h (revision 8221)
+++ src/flag-definitions.h (working copy)
@@ -266,10 +266,10 @@
"garbage collect maps from which no objects can be reached")
DEFINE_bool(flush_code, false,
"flush code that we expect not to use again before full gc")
-#ifdef V8_TARGET_ARCH_IA32
+#ifdef V8_TARGET_ARCH_ARM
+DEFINE_bool(incremental_marking, false, "use incremental marking")
+#else
DEFINE_bool(incremental_marking, true, "use incremental marking")
-#else
-DEFINE_bool(incremental_marking, false, "use incremental marking")
#endif
DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
DEFINE_bool(trace_incremental_marking, false,

Powered by Google App Engine
This is Rietveld 408576698