Chromium Code Reviews

Unified Diff: test/fuzzer/wasm-call.cc

Issue 2540133002: [wasm] Remove raw byte pointers from WasmModule (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: test/fuzzer/wasm-call.cc
diff --git a/test/fuzzer/wasm-call.cc b/test/fuzzer/wasm-call.cc
index fb9a69613553ac605cce74dd9e3efcee64f2b1e8..9629da8eec001211e1f823ed0afb16c8d0f446b7 100644
--- a/test/fuzzer/wasm-call.cc
+++ b/test/fuzzer/wasm-call.cc
@@ -141,18 +141,19 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (module == nullptr) {
return 0;
}
+ ModuleStorage storage(buffer.begin(), buffer.end());
int32_t result_interpreted;
bool possible_nondeterminism = false;
{
result_interpreted = testing::InterpretWasmModule(
- i_isolate, &interpreter_thrower, module.get(), 0, interpreter_args,
- &possible_nondeterminism);
+ i_isolate, &interpreter_thrower, module.get(), storage, 0,
+ interpreter_args, &possible_nondeterminism);
}
ErrorThrower compiler_thrower(i_isolate, "Compiler");
v8::internal::Handle<v8::internal::JSObject> instance =
testing::InstantiateModuleForTesting(i_isolate, &compiler_thrower,
- module.get());
+ module.get(), storage);
if (!interpreter_thrower.error()) {
CHECK(!instance.is_null());

Powered by Google App Engine