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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
472 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") | 472 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") |
473 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") | 473 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") |
474 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 474 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
475 "verify register allocation in TurboFan") | 475 "verify register allocation in TurboFan") |
476 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 476 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
477 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 477 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
478 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") | 478 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") |
479 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") | 479 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") |
480 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") | 480 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") |
481 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") | 481 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") |
482 DEFINE_BOOL(turbo_escape, true, "enable escape analysis") | 482 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") |
| 483 DEFINE_IMPLICATION(turbo, turbo_escape) |
483 DEFINE_BOOL(turbo_instruction_scheduling, false, | 484 DEFINE_BOOL(turbo_instruction_scheduling, false, |
484 "enable instruction scheduling in TurboFan") | 485 "enable instruction scheduling in TurboFan") |
485 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, | 486 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, |
486 "randomly schedule instructions to stress dependency tracking") | 487 "randomly schedule instructions to stress dependency tracking") |
487 DEFINE_BOOL(turbo_store_elimination, true, | 488 DEFINE_BOOL(turbo_store_elimination, true, |
488 "enable store-store elimination in TurboFan") | 489 "enable store-store elimination in TurboFan") |
489 | 490 |
490 // Flags to help platform porters | 491 // Flags to help platform porters |
491 DEFINE_BOOL(minimal, false, | 492 DEFINE_BOOL(minimal, false, |
492 "simplifies execution model to make porting " | 493 "simplifies execution model to make porting " |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1278 #undef DEFINE_ALIAS_FLOAT | 1279 #undef DEFINE_ALIAS_FLOAT |
1279 #undef DEFINE_ALIAS_ARGS | 1280 #undef DEFINE_ALIAS_ARGS |
1280 | 1281 |
1281 #undef FLAG_MODE_DECLARE | 1282 #undef FLAG_MODE_DECLARE |
1282 #undef FLAG_MODE_DEFINE | 1283 #undef FLAG_MODE_DEFINE |
1283 #undef FLAG_MODE_DEFINE_DEFAULTS | 1284 #undef FLAG_MODE_DEFINE_DEFAULTS |
1284 #undef FLAG_MODE_META | 1285 #undef FLAG_MODE_META |
1285 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1286 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1286 | 1287 |
1287 #undef COMMA | 1288 #undef COMMA |
OLD | NEW |