| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 478 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
| 479 "verify register allocation in TurboFan") | 479 "verify register allocation in TurboFan") |
| 480 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 480 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
| 481 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 481 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
| 482 DEFINE_BOOL(turbo_stress_loop_peeling, false, | 482 DEFINE_BOOL(turbo_stress_loop_peeling, false, |
| 483 "stress loop peeling optimization") | 483 "stress loop peeling optimization") |
| 484 DEFINE_BOOL(turbo_loop_peeling, false, "Turbofan loop peeling") | 484 DEFINE_BOOL(turbo_loop_peeling, false, "Turbofan loop peeling") |
| 485 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") | 485 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") |
| 486 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") | 486 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") |
| 487 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") | 487 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") |
| 488 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") | |
| 489 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") | |
| 490 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") | 488 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") |
| 491 DEFINE_BOOL(turbo_instruction_scheduling, false, | 489 DEFINE_BOOL(turbo_instruction_scheduling, false, |
| 492 "enable instruction scheduling in TurboFan") | 490 "enable instruction scheduling in TurboFan") |
| 493 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, | 491 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, |
| 494 "randomly schedule instructions to stress dependency tracking") | 492 "randomly schedule instructions to stress dependency tracking") |
| 495 DEFINE_BOOL(turbo_store_elimination, true, | 493 DEFINE_BOOL(turbo_store_elimination, true, |
| 496 "enable store-store elimination in TurboFan") | 494 "enable store-store elimination in TurboFan") |
| 497 | 495 |
| 498 // Flags to help platform porters | 496 // Flags to help platform porters |
| 499 DEFINE_BOOL(minimal, false, | 497 DEFINE_BOOL(minimal, false, |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 #undef DEFINE_ALIAS_FLOAT | 1218 #undef DEFINE_ALIAS_FLOAT |
| 1221 #undef DEFINE_ALIAS_ARGS | 1219 #undef DEFINE_ALIAS_ARGS |
| 1222 | 1220 |
| 1223 #undef FLAG_MODE_DECLARE | 1221 #undef FLAG_MODE_DECLARE |
| 1224 #undef FLAG_MODE_DEFINE | 1222 #undef FLAG_MODE_DEFINE |
| 1225 #undef FLAG_MODE_DEFINE_DEFAULTS | 1223 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1226 #undef FLAG_MODE_META | 1224 #undef FLAG_MODE_META |
| 1227 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1225 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1228 | 1226 |
| 1229 #undef COMMA | 1227 #undef COMMA |
| OLD | NEW |