| 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 "trigger break point when a node with given id is created in " | 496 "trigger break point when a node with given id is created in " |
| 497 "given stub. The format is: StubName,NodeId") | 497 "given stub. The format is: StubName,NodeId") |
| 498 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 498 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
| 499 DEFINE_BOOL(turbo_stats_nvp, false, | 499 DEFINE_BOOL(turbo_stats_nvp, false, |
| 500 "print TurboFan statistics in machine-readable format") | 500 "print TurboFan statistics in machine-readable format") |
| 501 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 501 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
| 502 DEFINE_BOOL(function_context_specialization, false, | 502 DEFINE_BOOL(function_context_specialization, false, |
| 503 "enable function context specialization in TurboFan") | 503 "enable function context specialization in TurboFan") |
| 504 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") | 504 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") |
| 505 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") | 505 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") |
| 506 DEFINE_BOOL(turbo_inline_array_builtins, false, |
| 507 "inline array builtins in TurboFan code") |
| 506 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") | 508 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") |
| 507 DEFINE_BOOL(trace_turbo_load_elimination, false, | 509 DEFINE_BOOL(trace_turbo_load_elimination, false, |
| 508 "trace TurboFan load elimination") | 510 "trace TurboFan load elimination") |
| 509 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") | 511 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") |
| 510 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") | 512 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") |
| 511 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 513 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
| 512 "verify register allocation in TurboFan") | 514 "verify register allocation in TurboFan") |
| 513 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 515 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
| 514 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 516 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
| 515 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") | 517 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") |
| (...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 #undef DEFINE_ALIAS_FLOAT | 1371 #undef DEFINE_ALIAS_FLOAT |
| 1370 #undef DEFINE_ALIAS_ARGS | 1372 #undef DEFINE_ALIAS_ARGS |
| 1371 | 1373 |
| 1372 #undef FLAG_MODE_DECLARE | 1374 #undef FLAG_MODE_DECLARE |
| 1373 #undef FLAG_MODE_DEFINE | 1375 #undef FLAG_MODE_DEFINE |
| 1374 #undef FLAG_MODE_DEFINE_DEFAULTS | 1376 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1375 #undef FLAG_MODE_META | 1377 #undef FLAG_MODE_META |
| 1376 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1378 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1377 | 1379 |
| 1378 #undef COMMA | 1380 #undef COMMA |
| OLD | NEW |