OLD | NEW |
---|---|
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file defines all of the flags. It is separated into different section, | 5 // This file defines all of the flags. It is separated into different section, |
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the | 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the |
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. | 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. |
8 // | 8 // |
9 // This include does not have a guard, because it is a template-style include, | 9 // This include does not have a guard, because it is a template-style include, |
10 // which can be included multiple times in different modes. It expects to have | 10 // which can be included multiple times in different modes. It expects to have |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
439 DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR") | 439 DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR") |
440 DEFINE_BOOL(trace_turbo_graph, false, "trace generated TurboFan graphs") | 440 DEFINE_BOOL(trace_turbo_graph, false, "trace generated TurboFan graphs") |
441 DEFINE_IMPLICATION(trace_turbo_graph, trace_turbo) | 441 DEFINE_IMPLICATION(trace_turbo_graph, trace_turbo) |
442 DEFINE_STRING(trace_turbo_cfg_file, NULL, | 442 DEFINE_STRING(trace_turbo_cfg_file, NULL, |
443 "trace turbo cfg graph (for C1 visualizer) to a given file name") | 443 "trace turbo cfg graph (for C1 visualizer) to a given file name") |
444 DEFINE_BOOL(trace_turbo_types, true, "trace TurboFan's types") | 444 DEFINE_BOOL(trace_turbo_types, true, "trace TurboFan's types") |
445 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") | 445 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") |
446 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") | 446 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") |
447 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") | 447 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") |
448 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") | 448 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") |
449 DEFINE_BOOL(trace_turbo_ssel, false, "trace TurboFan's store-store elimination") | |
Jarin
2016/06/21 13:28:33
Can't you just reuse the trace_store_elimination f
bgeron
2016/06/21 17:48:59
Sounds a good idea. I feel we ought to move it fro
bgeron
2016/06/22 18:00:58
Done.
| |
449 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") | 450 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") |
450 DEFINE_BOOL(turbo_asm_deoptimization, false, | 451 DEFINE_BOOL(turbo_asm_deoptimization, false, |
451 "enable deoptimization in TurboFan for asm.js code") | 452 "enable deoptimization in TurboFan for asm.js code") |
452 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") | 453 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") |
453 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 454 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
454 DEFINE_BOOL(turbo_stats_nvp, false, | 455 DEFINE_BOOL(turbo_stats_nvp, false, |
455 "print TurboFan statistics in machine-readable format") | 456 "print TurboFan statistics in machine-readable format") |
456 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 457 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
457 DEFINE_BOOL(turbo_type_feedback, false, | 458 DEFINE_BOOL(turbo_type_feedback, false, |
458 "use typed feedback for representation inference in Turbofan") | 459 "use typed feedback for representation inference in Turbofan") |
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1191 #undef DEFINE_ALIAS_FLOAT | 1192 #undef DEFINE_ALIAS_FLOAT |
1192 #undef DEFINE_ALIAS_ARGS | 1193 #undef DEFINE_ALIAS_ARGS |
1193 | 1194 |
1194 #undef FLAG_MODE_DECLARE | 1195 #undef FLAG_MODE_DECLARE |
1195 #undef FLAG_MODE_DEFINE | 1196 #undef FLAG_MODE_DEFINE |
1196 #undef FLAG_MODE_DEFINE_DEFAULTS | 1197 #undef FLAG_MODE_DEFINE_DEFAULTS |
1197 #undef FLAG_MODE_META | 1198 #undef FLAG_MODE_META |
1198 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1199 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1199 | 1200 |
1200 #undef COMMA | 1201 #undef COMMA |
OLD | NEW |