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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 DEFINE_INT(wasm_num_compilation_tasks, 10, | 491 DEFINE_INT(wasm_num_compilation_tasks, 10, |
492 "number of parallel compilation tasks for wasm") | 492 "number of parallel compilation tasks for wasm") |
493 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") | 493 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") |
494 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") | 494 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") |
495 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") | 495 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") |
496 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") | 496 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") |
497 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code") | 497 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code") |
498 DEFINE_INT(trace_wasm_ast_start, 0, | 498 DEFINE_INT(trace_wasm_ast_start, 0, |
499 "start function for WASM AST trace (inclusive)") | 499 "start function for WASM AST trace (inclusive)") |
500 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)") | 500 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)") |
| 501 DEFINE_INT(trace_wasm_text_start, 0, |
| 502 "start function for WASM text generation (inclusive)") |
| 503 DEFINE_INT(trace_wasm_text_end, 0, |
| 504 "end function for WASM text generation (exclusive)") |
501 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") | 505 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") |
502 DEFINE_BOOL(wasm_break_on_decoder_error, false, | 506 DEFINE_BOOL(wasm_break_on_decoder_error, false, |
503 "debug break when wasm decoder encounters an error") | 507 "debug break when wasm decoder encounters an error") |
504 DEFINE_BOOL(wasm_loop_assignment_analysis, true, | 508 DEFINE_BOOL(wasm_loop_assignment_analysis, true, |
505 "perform loop assignment analysis for WASM") | 509 "perform loop assignment analysis for WASM") |
506 | 510 |
507 DEFINE_BOOL(validate_asm, false, "validate asm.js modules before compiling") | 511 DEFINE_BOOL(validate_asm, false, "validate asm.js modules before compiling") |
508 | 512 |
509 DEFINE_BOOL(dump_wasm_module, false, "dump WASM module bytes") | 513 DEFINE_BOOL(dump_wasm_module, false, "dump WASM module bytes") |
510 DEFINE_STRING(dump_wasm_module_path, NULL, "directory to dump wasm modules to") | 514 DEFINE_STRING(dump_wasm_module_path, NULL, "directory to dump wasm modules to") |
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1235 #undef DEFINE_ALIAS_FLOAT | 1239 #undef DEFINE_ALIAS_FLOAT |
1236 #undef DEFINE_ALIAS_ARGS | 1240 #undef DEFINE_ALIAS_ARGS |
1237 | 1241 |
1238 #undef FLAG_MODE_DECLARE | 1242 #undef FLAG_MODE_DECLARE |
1239 #undef FLAG_MODE_DEFINE | 1243 #undef FLAG_MODE_DEFINE |
1240 #undef FLAG_MODE_DEFINE_DEFAULTS | 1244 #undef FLAG_MODE_DEFINE_DEFAULTS |
1241 #undef FLAG_MODE_META | 1245 #undef FLAG_MODE_META |
1242 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1246 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1243 | 1247 |
1244 #undef COMMA | 1248 #undef COMMA |
OLD | NEW |