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 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 "verify register allocation in TurboFan") | 459 "verify register allocation in TurboFan") |
460 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 460 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
461 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 461 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
462 DEFINE_BOOL(turbo_stress_loop_peeling, false, | 462 DEFINE_BOOL(turbo_stress_loop_peeling, false, |
463 "stress loop peeling optimization") | 463 "stress loop peeling optimization") |
464 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") | 464 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") |
465 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") | 465 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") |
466 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") | 466 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") |
467 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") | 467 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") |
468 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") | 468 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") |
| 469 DEFINE_IMPLICATION(turbo, turbo_escape) |
469 DEFINE_BOOL(turbo_instruction_scheduling, false, | 470 DEFINE_BOOL(turbo_instruction_scheduling, false, |
470 "enable instruction scheduling in TurboFan") | 471 "enable instruction scheduling in TurboFan") |
471 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, | 472 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, |
472 "randomly schedule instructions to stress dependency tracking") | 473 "randomly schedule instructions to stress dependency tracking") |
473 DEFINE_BOOL(turbo_store_elimination, true, | 474 DEFINE_BOOL(turbo_store_elimination, true, |
474 "enable store-store elimination in TurboFan") | 475 "enable store-store elimination in TurboFan") |
475 | 476 |
476 // Flags to help platform porters | 477 // Flags to help platform porters |
477 DEFINE_BOOL(minimal, false, | 478 DEFINE_BOOL(minimal, false, |
478 "simplifies execution model to make porting " | 479 "simplifies execution model to make porting " |
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 #undef DEFINE_ALIAS_FLOAT | 1241 #undef DEFINE_ALIAS_FLOAT |
1241 #undef DEFINE_ALIAS_ARGS | 1242 #undef DEFINE_ALIAS_ARGS |
1242 | 1243 |
1243 #undef FLAG_MODE_DECLARE | 1244 #undef FLAG_MODE_DECLARE |
1244 #undef FLAG_MODE_DEFINE | 1245 #undef FLAG_MODE_DEFINE |
1245 #undef FLAG_MODE_DEFINE_DEFAULTS | 1246 #undef FLAG_MODE_DEFINE_DEFAULTS |
1246 #undef FLAG_MODE_META | 1247 #undef FLAG_MODE_META |
1247 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1248 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1248 | 1249 |
1249 #undef COMMA | 1250 #undef COMMA |
OLD | NEW |