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