Chromium Code Reviews| 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") |