| 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") | 442 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") |
| 443 DEFINE_BOOL(turbo_asm_deoptimization, false, | 443 DEFINE_BOOL(turbo_asm_deoptimization, false, |
| 444 "enable deoptimization in TurboFan for asm.js code") | 444 "enable deoptimization in TurboFan for asm.js code") |
| 445 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") | 445 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") |
| 446 DEFINE_STRING(turbo_verify_machine_graph, nullptr, | 446 DEFINE_STRING(turbo_verify_machine_graph, nullptr, |
| 447 "verify TurboFan machine graph before instruction selection") | 447 "verify TurboFan machine graph before instruction selection") |
| 448 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 448 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
| 449 DEFINE_BOOL(turbo_stats_nvp, false, | 449 DEFINE_BOOL(turbo_stats_nvp, false, |
| 450 "print TurboFan statistics in machine-readable format") | 450 "print TurboFan statistics in machine-readable format") |
| 451 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 451 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
| 452 DEFINE_BOOL(turbo_type_feedback, true, | |
| 453 "use typed feedback for representation inference in Turbofan") | |
| 454 DEFINE_BOOL(function_context_specialization, false, | 452 DEFINE_BOOL(function_context_specialization, false, |
| 455 "enable function context specialization in TurboFan") | 453 "enable function context specialization in TurboFan") |
| 456 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") | 454 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") |
| 457 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") | 455 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") |
| 458 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") | 456 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") |
| 459 DEFINE_BOOL(trace_turbo_load_elimination, false, | 457 DEFINE_BOOL(trace_turbo_load_elimination, false, |
| 460 "trace TurboFan load elimination") | 458 "trace TurboFan load elimination") |
| 461 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") | 459 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") |
| 462 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") | 460 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") |
| 463 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 461 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
| (...skipping 776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 #undef DEFINE_ALIAS_FLOAT | 1238 #undef DEFINE_ALIAS_FLOAT |
| 1241 #undef DEFINE_ALIAS_ARGS | 1239 #undef DEFINE_ALIAS_ARGS |
| 1242 | 1240 |
| 1243 #undef FLAG_MODE_DECLARE | 1241 #undef FLAG_MODE_DECLARE |
| 1244 #undef FLAG_MODE_DEFINE | 1242 #undef FLAG_MODE_DEFINE |
| 1245 #undef FLAG_MODE_DEFINE_DEFAULTS | 1243 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1246 #undef FLAG_MODE_META | 1244 #undef FLAG_MODE_META |
| 1247 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1245 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1248 | 1246 |
| 1249 #undef COMMA | 1247 #undef COMMA |
| OLD | NEW |