| 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 432 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 432 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
| 433 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 433 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
| 434 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan") | 434 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan") |
| 435 DEFINE_BOOL(turbo_source_positions, false, | 435 DEFINE_BOOL(turbo_source_positions, false, |
| 436 "track source code positions when building TurboFan IR") | 436 "track source code positions when building TurboFan IR") |
| 437 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) | 437 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) |
| 438 DEFINE_BOOL(function_context_specialization, false, | 438 DEFINE_BOOL(function_context_specialization, false, |
| 439 "enable function context specialization in TurboFan") | 439 "enable function context specialization in TurboFan") |
| 440 DEFINE_BOOL(native_context_specialization, true, | 440 DEFINE_BOOL(native_context_specialization, true, |
| 441 "enable native context specialization in TurboFan") | 441 "enable native context specialization in TurboFan") |
| 442 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") | 442 DEFINE_BOOL(turbo_inlining, false, "enable inlining in TurboFan") |
| 443 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") | 443 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") |
| 444 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") | 444 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") |
| 445 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") | 445 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") |
| 446 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 446 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
| 447 "verify register allocation in TurboFan") | 447 "verify register allocation in TurboFan") |
| 448 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 448 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
| 449 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 449 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
| 450 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan") | 450 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan") |
| 451 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan") | 451 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan") |
| 452 DEFINE_BOOL(turbo_stress_loop_peeling, false, | 452 DEFINE_BOOL(turbo_stress_loop_peeling, false, |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1111 #undef DEFINE_ALIAS_FLOAT | 1111 #undef DEFINE_ALIAS_FLOAT |
| 1112 #undef DEFINE_ALIAS_ARGS | 1112 #undef DEFINE_ALIAS_ARGS |
| 1113 | 1113 |
| 1114 #undef FLAG_MODE_DECLARE | 1114 #undef FLAG_MODE_DECLARE |
| 1115 #undef FLAG_MODE_DEFINE | 1115 #undef FLAG_MODE_DEFINE |
| 1116 #undef FLAG_MODE_DEFINE_DEFAULTS | 1116 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1117 #undef FLAG_MODE_META | 1117 #undef FLAG_MODE_META |
| 1118 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1118 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1119 | 1119 |
| 1120 #undef COMMA | 1120 #undef COMMA |
| OLD | NEW |