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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer") | 437 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer") |
438 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") | 438 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") |
439 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") | 439 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") |
440 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations") | 440 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations") |
441 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") | 441 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") |
442 DEFINE_BOOL(turbo_asm_deoptimization, false, | 442 DEFINE_BOOL(turbo_asm_deoptimization, false, |
443 "enable deoptimization in TurboFan for asm.js code") | 443 "enable deoptimization in TurboFan for asm.js code") |
444 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") | 444 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") |
445 DEFINE_STRING(turbo_verify_machine_graph, nullptr, | 445 DEFINE_STRING(turbo_verify_machine_graph, nullptr, |
446 "verify TurboFan machine graph before instruction selection") | 446 "verify TurboFan machine graph before instruction selection") |
447 DEFINE_BOOL(csa_verify, false, "verify TurboFan machine graph of code stubs") | |
448 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 447 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
449 DEFINE_BOOL(turbo_stats_nvp, false, | 448 DEFINE_BOOL(turbo_stats_nvp, false, |
450 "print TurboFan statistics in machine-readable format") | 449 "print TurboFan statistics in machine-readable format") |
451 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") | 450 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") |
452 DEFINE_BOOL(function_context_specialization, false, | 451 DEFINE_BOOL(function_context_specialization, false, |
453 "enable function context specialization in TurboFan") | 452 "enable function context specialization in TurboFan") |
454 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") | 453 DEFINE_BOOL(turbo_inlining, true, "enable inlining in TurboFan") |
455 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") | 454 DEFINE_BOOL(trace_turbo_inlining, false, "trace TurboFan inlining") |
456 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") | 455 DEFINE_BOOL(turbo_load_elimination, true, "enable load elimination in TurboFan") |
457 DEFINE_BOOL(trace_turbo_load_elimination, false, | 456 DEFINE_BOOL(trace_turbo_load_elimination, false, |
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1240 #undef DEFINE_ALIAS_FLOAT | 1239 #undef DEFINE_ALIAS_FLOAT |
1241 #undef DEFINE_ALIAS_ARGS | 1240 #undef DEFINE_ALIAS_ARGS |
1242 | 1241 |
1243 #undef FLAG_MODE_DECLARE | 1242 #undef FLAG_MODE_DECLARE |
1244 #undef FLAG_MODE_DEFINE | 1243 #undef FLAG_MODE_DEFINE |
1245 #undef FLAG_MODE_DEFINE_DEFAULTS | 1244 #undef FLAG_MODE_DEFINE_DEFAULTS |
1246 #undef FLAG_MODE_META | 1245 #undef FLAG_MODE_META |
1247 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1246 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1248 | 1247 |
1249 #undef COMMA | 1248 #undef COMMA |
OLD | NEW |