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

Unified Diff: src/flag-definitions.h

Issue 1094573002: [turbofan] Add single --turbo flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | test/benchmarks/testcfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 6923c6c04654f9309462ae56b3ad37d5576921b0..deaffd6be2353190d7989acb4da56efc8507a988 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -380,6 +380,9 @@ DEFINE_BOOL(omit_map_checks_for_leaf_maps, true,
"deoptimize the optimized code if the layout of the maps changes.")
// Flags for TurboFan.
+DEFINE_BOOL(turbo, false, "enable TurboFan compiler")
+DEFINE_VALUE_IMPLICATION(turbo, turbo_filter, "*")
Michael Achenbach 2015/04/16 11:37:21 I assume this can be overridden and e.g. has no me
Michael Starzinger 2015/04/16 12:10:22 Unfortunately no. The implication always wins, thi
Michael Starzinger 2015/04/16 13:56:50 Done. OK, this is the closest I could get it to wh
+DEFINE_IMPLICATION(turbo, turbo_deoptimization)
DEFINE_STRING(turbo_filter, "~", "optimization filter for TurboFan compiler")
DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR")
DEFINE_BOOL(trace_turbo_graph, false, "trace generated TurboFan graphs")
« no previous file with comments | « no previous file | test/benchmarks/testcfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698