Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Side by Side Diff: src/flag-definitions.h

Issue 2623743003: [wasm] Enable WASM by default (--expose-wasm=true). (Closed)
Patch Set: Disable gc-stress test. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 490
491 // Flags to help platform porters 491 // Flags to help platform porters
492 DEFINE_BOOL(minimal, false, 492 DEFINE_BOOL(minimal, false,
493 "simplifies execution model to make porting " 493 "simplifies execution model to make porting "
494 "easier (e.g. always use Ignition, never use Crankshaft") 494 "easier (e.g. always use Ignition, never use Crankshaft")
495 DEFINE_IMPLICATION(minimal, ignition) 495 DEFINE_IMPLICATION(minimal, ignition)
496 DEFINE_NEG_IMPLICATION(minimal, crankshaft) 496 DEFINE_NEG_IMPLICATION(minimal, crankshaft)
497 DEFINE_NEG_IMPLICATION(minimal, use_ic) 497 DEFINE_NEG_IMPLICATION(minimal, use_ic)
498 498
499 // Flags for native WebAssembly. 499 // Flags for native WebAssembly.
500 DEFINE_BOOL(expose_wasm, false, "expose WASM interface to JavaScript") 500 DEFINE_BOOL(expose_wasm, true, "expose WASM interface to JavaScript")
501 DEFINE_INT(wasm_num_compilation_tasks, 10, 501 DEFINE_INT(wasm_num_compilation_tasks, 10,
502 "number of parallel compilation tasks for wasm") 502 "number of parallel compilation tasks for wasm")
503 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code") 503 DEFINE_BOOL(trace_wasm_encoder, false, "trace encoding of wasm code")
504 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code") 504 DEFINE_BOOL(trace_wasm_decoder, false, "trace decoding of wasm code")
505 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code") 505 DEFINE_BOOL(trace_wasm_decode_time, false, "trace decoding time of wasm code")
506 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code") 506 DEFINE_BOOL(trace_wasm_compiler, false, "trace compiling of wasm code")
507 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code") 507 DEFINE_BOOL(trace_wasm_interpreter, false, "trace interpretation of wasm code")
508 DEFINE_INT(trace_wasm_ast_start, 0, 508 DEFINE_INT(trace_wasm_ast_start, 0,
509 "start function for WASM AST trace (inclusive)") 509 "start function for WASM AST trace (inclusive)")
510 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)") 510 DEFINE_INT(trace_wasm_ast_end, 0, "end function for WASM AST trace (exclusive)")
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
1279 #undef DEFINE_ALIAS_FLOAT 1279 #undef DEFINE_ALIAS_FLOAT
1280 #undef DEFINE_ALIAS_ARGS 1280 #undef DEFINE_ALIAS_ARGS
1281 1281
1282 #undef FLAG_MODE_DECLARE 1282 #undef FLAG_MODE_DECLARE
1283 #undef FLAG_MODE_DEFINE 1283 #undef FLAG_MODE_DEFINE
1284 #undef FLAG_MODE_DEFINE_DEFAULTS 1284 #undef FLAG_MODE_DEFINE_DEFAULTS
1285 #undef FLAG_MODE_META 1285 #undef FLAG_MODE_META
1286 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1286 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1287 1287
1288 #undef COMMA 1288 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698