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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 DEFINE_STRING(turbo_filter, "~", "optimization filter for TurboFan compiler") | 365 DEFINE_STRING(turbo_filter, "~", "optimization filter for TurboFan compiler") |
366 DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR") | 366 DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR") |
367 DEFINE_BOOL(trace_turbo_graph, false, "trace generated TurboFan graphs") | 367 DEFINE_BOOL(trace_turbo_graph, false, "trace generated TurboFan graphs") |
368 DEFINE_IMPLICATION(trace_turbo_graph, trace_turbo) | 368 DEFINE_IMPLICATION(trace_turbo_graph, trace_turbo) |
369 DEFINE_STRING(trace_turbo_cfg_file, NULL, | 369 DEFINE_STRING(trace_turbo_cfg_file, NULL, |
370 "trace turbo cfg graph (for C1 visualizer) to a given file name") | 370 "trace turbo cfg graph (for C1 visualizer) to a given file name") |
371 DEFINE_BOOL(trace_turbo_types, true, "trace TurboFan's types") | 371 DEFINE_BOOL(trace_turbo_types, true, "trace TurboFan's types") |
372 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") | 372 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") |
373 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") | 373 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") |
374 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") | 374 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") |
375 DEFINE_BOOL(turbo_asm, false, "enable TurboFan for asm.js code") | 375 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") |
376 DEFINE_BOOL(turbo_verify, false, "verify TurboFan graphs at each phase") | 376 DEFINE_BOOL(turbo_verify, false, "verify TurboFan graphs at each phase") |
377 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") | 377 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") |
378 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan") | 378 DEFINE_BOOL(turbo_types, true, "use typed lowering in TurboFan") |
379 DEFINE_BOOL(turbo_source_positions, false, | 379 DEFINE_BOOL(turbo_source_positions, false, |
380 "track source code positions when building TurboFan IR") | 380 "track source code positions when building TurboFan IR") |
381 DEFINE_BOOL(context_specialization, false, | 381 DEFINE_BOOL(context_specialization, false, |
382 "enable context specialization in TurboFan") | 382 "enable context specialization in TurboFan") |
383 DEFINE_BOOL(turbo_deoptimization, false, "enable deoptimization in TurboFan") | 383 DEFINE_BOOL(turbo_deoptimization, false, "enable deoptimization in TurboFan") |
384 DEFINE_BOOL(turbo_inlining, false, "enable inlining in TurboFan") | 384 DEFINE_BOOL(turbo_inlining, false, "enable inlining in TurboFan") |
385 DEFINE_BOOL(turbo_inlining_intrinsics, false, | 385 DEFINE_BOOL(turbo_inlining_intrinsics, false, |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 #undef DEFINE_ALIAS_FLOAT | 991 #undef DEFINE_ALIAS_FLOAT |
992 #undef DEFINE_ALIAS_ARGS | 992 #undef DEFINE_ALIAS_ARGS |
993 | 993 |
994 #undef FLAG_MODE_DECLARE | 994 #undef FLAG_MODE_DECLARE |
995 #undef FLAG_MODE_DEFINE | 995 #undef FLAG_MODE_DEFINE |
996 #undef FLAG_MODE_DEFINE_DEFAULTS | 996 #undef FLAG_MODE_DEFINE_DEFAULTS |
997 #undef FLAG_MODE_META | 997 #undef FLAG_MODE_META |
998 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 998 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
999 | 999 |
1000 #undef COMMA | 1000 #undef COMMA |
OLD | NEW |