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

Unified Diff: src/flag-definitions.h

Issue 2336603002: [wasm] Write fuzzers for single wasm sections. (Closed)
Patch Set: Add a comment. Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« BUILD.gn ('K') | « BUILD.gn ('k') | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index a341e33c6f053711c48b75724997e288f1f06b0d..b53400d21208a51b83311c11ed88518b4e98dde3 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -1093,6 +1093,18 @@ DEFINE_STRING(redirect_code_traces_to, NULL,
DEFINE_BOOL(hydrogen_track_positions, false,
"track source code positions when building IR")
+// Parameters for the wasm-section-fuzzer, not used by V8.
Michael Starzinger 2016/09/13 09:27:08 We already employ a similar solution for some "d8-
ahaas 2016/09/13 09:50:22 Done.
+DEFINE_BOOL(wasm_fuzz_types, false, "fuzz the types section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_names, false, "fuzz the names section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_globals, false,
+ "fuzz the globals section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_imports, false,
+ "fuzz the imports section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_function_sigs, false,
+ "fuzz the function signatures section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_memory, false, "fuzz the memory section of a wasm module")
+DEFINE_BOOL(wasm_fuzz_data, false, "fuzz the data section of a wasm module")
+
//
// Disassembler only flags
//
« BUILD.gn ('K') | « BUILD.gn ('k') | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698