| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 DEFINE_IMPLICATION(ignition_staging, ignition) | 292 DEFINE_IMPLICATION(ignition_staging, ignition) |
| 293 DEFINE_IMPLICATION(ignition_staging, ignition_osr) | 293 DEFINE_IMPLICATION(ignition_staging, ignition_osr) |
| 294 DEFINE_STRING(ignition_filter, "*", "filter for ignition interpreter") | 294 DEFINE_STRING(ignition_filter, "*", "filter for ignition interpreter") |
| 295 DEFINE_BOOL(ignition_deadcode, true, | 295 DEFINE_BOOL(ignition_deadcode, true, |
| 296 "use ignition dead code elimination optimizer") | 296 "use ignition dead code elimination optimizer") |
| 297 DEFINE_BOOL(ignition_osr, false, "enable support for OSR from ignition code") | 297 DEFINE_BOOL(ignition_osr, false, "enable support for OSR from ignition code") |
| 298 DEFINE_BOOL(ignition_peephole, true, "use ignition peephole optimizer") | 298 DEFINE_BOOL(ignition_peephole, true, "use ignition peephole optimizer") |
| 299 DEFINE_BOOL(ignition_reo, true, "use ignition register equivalence optimizer") | 299 DEFINE_BOOL(ignition_reo, true, "use ignition register equivalence optimizer") |
| 300 DEFINE_BOOL(ignition_filter_expression_positions, true, | 300 DEFINE_BOOL(ignition_filter_expression_positions, true, |
| 301 "filter expression positions before the bytecode pipeline") | 301 "filter expression positions before the bytecode pipeline") |
| 302 DEFINE_BOOL(ignition_preserve_bytecode, true, | |
| 303 "preserve generated bytecode even when switching tiers") | |
| 304 DEFINE_BOOL(print_bytecode, false, | 302 DEFINE_BOOL(print_bytecode, false, |
| 305 "print bytecode generated by ignition interpreter") | 303 "print bytecode generated by ignition interpreter") |
| 306 DEFINE_BOOL(trace_ignition, false, | 304 DEFINE_BOOL(trace_ignition, false, |
| 307 "trace the bytecodes executed by the ignition interpreter") | 305 "trace the bytecodes executed by the ignition interpreter") |
| 308 DEFINE_BOOL(trace_ignition_codegen, false, | 306 DEFINE_BOOL(trace_ignition_codegen, false, |
| 309 "trace the codegen of ignition interpreter bytecode handlers") | 307 "trace the codegen of ignition interpreter bytecode handlers") |
| 310 DEFINE_BOOL(trace_ignition_dispatches, false, | 308 DEFINE_BOOL(trace_ignition_dispatches, false, |
| 311 "traces the dispatches to bytecode handlers by the ignition " | 309 "traces the dispatches to bytecode handlers by the ignition " |
| 312 "interpreter") | 310 "interpreter") |
| 313 DEFINE_STRING(trace_ignition_dispatches_output_file, nullptr, | 311 DEFINE_STRING(trace_ignition_dispatches_output_file, nullptr, |
| (...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1225 #undef DEFINE_ALIAS_FLOAT | 1223 #undef DEFINE_ALIAS_FLOAT |
| 1226 #undef DEFINE_ALIAS_ARGS | 1224 #undef DEFINE_ALIAS_ARGS |
| 1227 | 1225 |
| 1228 #undef FLAG_MODE_DECLARE | 1226 #undef FLAG_MODE_DECLARE |
| 1229 #undef FLAG_MODE_DEFINE | 1227 #undef FLAG_MODE_DEFINE |
| 1230 #undef FLAG_MODE_DEFINE_DEFAULTS | 1228 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1231 #undef FLAG_MODE_META | 1229 #undef FLAG_MODE_META |
| 1232 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1230 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1233 | 1231 |
| 1234 #undef COMMA | 1232 #undef COMMA |
| OLD | NEW |