| 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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 475 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") | 475 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") |
| 476 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") | 476 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") |
| 477 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") | 477 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") |
| 478 DEFINE_BOOL(turbo_instruction_scheduling, false, | 478 DEFINE_BOOL(turbo_instruction_scheduling, false, |
| 479 "enable instruction scheduling in TurboFan") | 479 "enable instruction scheduling in TurboFan") |
| 480 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, | 480 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, |
| 481 "randomly schedule instructions to stress dependency tracking") | 481 "randomly schedule instructions to stress dependency tracking") |
| 482 | 482 |
| 483 // Flags for native WebAssembly. | 483 // Flags for native WebAssembly. |
| 484 DEFINE_BOOL(expose_wasm, false, "expose WASM interface to JavaScript") | 484 DEFINE_BOOL(expose_wasm, false, "expose WASM interface to JavaScript") |
| 485 DEFINE_INT(wasm_num_compilation_tasks, 0, | 485 DEFINE_INT(wasm_num_compilation_tasks, 10, |
| 486 "number of parallel compilation tasks for wasm") | 486 "number of parallel compilation tasks for wasm") |
| 487 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") | 487 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") |
| 488 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") | 488 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") |
| 489 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") | 489 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") |
| 490 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") | 490 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") |
| 491 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code") | 491 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code") |
| 492 DEFINE_INT(trace_wasm_ast_start, 0, | 492 DEFINE_INT(trace_wasm_ast_start, 0, |
| 493 "start function for WASM AST trace (inclusive)") | 493 "start function for WASM AST trace (inclusive)") |
| 494 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)") | 494 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)") |
| 495 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") | 495 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1188 #undef DEFINE_ALIAS_FLOAT | 1188 #undef DEFINE_ALIAS_FLOAT |
| 1189 #undef DEFINE_ALIAS_ARGS | 1189 #undef DEFINE_ALIAS_ARGS |
| 1190 | 1190 |
| 1191 #undef FLAG_MODE_DECLARE | 1191 #undef FLAG_MODE_DECLARE |
| 1192 #undef FLAG_MODE_DEFINE | 1192 #undef FLAG_MODE_DEFINE |
| 1193 #undef FLAG_MODE_DEFINE_DEFAULTS | 1193 #undef FLAG_MODE_DEFINE_DEFAULTS |
| 1194 #undef FLAG_MODE_META | 1194 #undef FLAG_MODE_META |
| 1195 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1195 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
| 1196 | 1196 |
| 1197 #undef COMMA | 1197 #undef COMMA |
| OLD | NEW |