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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
458 DEFINE_BOOL(turbo_stats_nvp, false, | 458 DEFINE_BOOL(turbo_stats_nvp, false, |
459 "print TurboFan statistics in machine-readable format") | 459 "print TurboFan statistics in machine-readable format") |
460 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 460 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
461 DEFINE_BOOL(turbo_type_feedback, true, | 461 DEFINE_BOOL(turbo_type_feedback, true, |
462 "use typed feedback for representation inference in Turbofan") | 462 "use typed feedback for representation inference in Turbofan") |
463 DEFINE_BOOL(turbo_source_positions, false, | 463 DEFINE_BOOL(turbo_source_positions, false, |
464 "track source code positions when building TurboFan IR") | 464 "track source code positions when building TurboFan IR") |
465 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) | 465 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) |
466 DEFINE_BOOL(function_context_specialization, false, | 466 DEFINE_BOOL(function_context_specialization, false, |
467 "enable function context specialization in TurboFan") | 467 "enable function context specialization in TurboFan") |
468 DEFINE_BOOL(native_context_specialization, true, | |
469 "enable native context specialization in TurboFan") | |
470 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") | 468 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") |
471 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") | 469 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") |
472 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") | 470 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") |
473 DEFINE_BOOL(trace_turbo_load_elimination, false, | 471 DEFINE_BOOL(trace_turbo_load_elimination, false, |
474 "trace TurboFan load elimination") | 472 "trace TurboFan load elimination") |
475 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") | 473 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") |
476 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") | 474 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") |
477 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, | 475 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, |
478 "verify register allocation in TurboFan") | 476 "verify register allocation in TurboFan") |
479 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 477 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1217 #undef DEFINE_ALIAS_FLOAT | 1215 #undef DEFINE_ALIAS_FLOAT |
1218 #undef DEFINE_ALIAS_ARGS | 1216 #undef DEFINE_ALIAS_ARGS |
1219 | 1217 |
1220 #undef FLAG_MODE_DECLARE | 1218 #undef FLAG_MODE_DECLARE |
1221 #undef FLAG_MODE_DEFINE | 1219 #undef FLAG_MODE_DEFINE |
1222 #undef FLAG_MODE_DEFINE_DEFAULTS | 1220 #undef FLAG_MODE_DEFINE_DEFAULTS |
1223 #undef FLAG_MODE_META | 1221 #undef FLAG_MODE_META |
1224 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1222 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1225 | 1223 |
1226 #undef COMMA | 1224 #undef COMMA |
OLD | NEW |