| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") | 456 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") |
| 457 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") | 457 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") |
| 458 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan") | 458 DEFINE_BOOL(turbo_osr, true, "enable OSR in TurboFan") |
| 459 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan") | 459 DEFINE_BOOL(turbo_try_finally, false, "enable try-finally support in TurboFan") |
| 460 DEFINE_BOOL(turbo_stress_loop_peeling, false, | 460 DEFINE_BOOL(turbo_stress_loop_peeling, false, |
| 461 "stress loop peeling optimization") | 461 "stress loop peeling optimization") |
| 462 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") | 462 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") |
| 463 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") | 463 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") |
| 464 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") | 464 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") |
| 465 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") | 465 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") |
| 466 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") |
| 467 DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis") |
| 466 | 468 |
| 467 #if defined(V8_WASM) | 469 #if defined(V8_WASM) |
| 468 // Flags for native WebAssembly. | 470 // Flags for native WebAssembly. |
| 469 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") | 471 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") |
| 470 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") | 472 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") |
| 471 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") | 473 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") |
| 472 DEFINE_BOOL(wasm_break_on_decoder_error, false, | 474 DEFINE_BOOL(wasm_break_on_decoder_error, false, |
| 473 "debug break when wasm decoder encounters an error") | 475 "debug break when wasm decoder encounters an error") |
| 474 #endif | 476 #endif |
| 475 | 477 |
| (...skipping 648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 #undef DEFINE_ALIAS_FLOAT | 1126 #undef DEFINE_ALIAS_FLOAT |
| 1125 #undef DEFINE_ALIAS_ARGS | 1127 #undef DEFINE_ALIAS_ARGS |
| 1126 | 1128 |
| 1127 #undef FLAG_MODE_DECLARE | 1129 #undef FLAG_MODE_DECLARE |
| 1128 #undef FLAG_MODE_DEFINE | 1130 #undef FLAG_MODE_DEFINE |
| 1129 #undef FLAG_MODE_DEFINE_DEFAULTS | 1131 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1130 #undef FLAG_MODE_META | 1132 #undef FLAG_MODE_META |
| 1131 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1133 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1132 | 1134 |
| 1133 #undef COMMA | 1135 #undef COMMA |
| OLD | NEW |