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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 "start function for WASM text generation (inclusive)") | 500 "start function for WASM text generation (inclusive)") |
501 DEFINE_INT(trace_wasm_text_end, 0, | 501 DEFINE_INT(trace_wasm_text_end, 0, |
502 "end function for WASM text generation (exclusive)") | 502 "end function for WASM text generation (exclusive)") |
503 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") | 503 DEFINE_INT(skip_compiling_wasm_funcs, 0, "start compiling at function N") |
504 DEFINE_BOOL(wasm_break_on_decoder_error, false, | 504 DEFINE_BOOL(wasm_break_on_decoder_error, false, |
505 "debug break when wasm decoder encounters an error") | 505 "debug break when wasm decoder encounters an error") |
506 DEFINE_BOOL(wasm_loop_assignment_analysis, true, | 506 DEFINE_BOOL(wasm_loop_assignment_analysis, true, |
507 "perform loop assignment analysis for WASM") | 507 "perform loop assignment analysis for WASM") |
508 | 508 |
509 DEFINE_BOOL(validate_asm, false, "validate asm.js modules before compiling") | 509 DEFINE_BOOL(validate_asm, false, "validate asm.js modules before compiling") |
| 510 DEFINE_BOOL(disable_asm_warnings, false, |
| 511 "don't emit warnings about asm.js validation") |
510 | 512 |
511 DEFINE_BOOL(dump_wasm_module, false, "dump WASM module bytes") | 513 DEFINE_BOOL(dump_wasm_module, false, "dump WASM module bytes") |
512 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") |
513 | 515 |
514 DEFINE_INT(typed_array_max_size_in_heap, 64, | 516 DEFINE_INT(typed_array_max_size_in_heap, 64, |
515 "threshold for in-heap typed array") | 517 "threshold for in-heap typed array") |
516 | 518 |
517 DEFINE_BOOL(wasm_simd_prototype, false, | 519 DEFINE_BOOL(wasm_simd_prototype, false, |
518 "enable prototype simd opcodes for wasm") | 520 "enable prototype simd opcodes for wasm") |
519 DEFINE_BOOL(wasm_eh_prototype, false, | 521 DEFINE_BOOL(wasm_eh_prototype, false, |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1238 #undef DEFINE_ALIAS_FLOAT | 1240 #undef DEFINE_ALIAS_FLOAT |
1239 #undef DEFINE_ALIAS_ARGS | 1241 #undef DEFINE_ALIAS_ARGS |
1240 | 1242 |
1241 #undef FLAG_MODE_DECLARE | 1243 #undef FLAG_MODE_DECLARE |
1242 #undef FLAG_MODE_DEFINE | 1244 #undef FLAG_MODE_DEFINE |
1243 #undef FLAG_MODE_DEFINE_DEFAULTS | 1245 #undef FLAG_MODE_DEFINE_DEFAULTS |
1244 #undef FLAG_MODE_META | 1246 #undef FLAG_MODE_META |
1245 #undef FLAG_MODE_DEFINE_IMPLICATIONS | 1247 #undef FLAG_MODE_DEFINE_IMPLICATIONS |
1246 | 1248 |
1247 #undef COMMA | 1249 #undef COMMA |
OLD | NEW |