2017-05-08 09:22:54 +00:00
|
|
|
// Copyright 2016 the V8 project authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "test/fuzzer/wasm-fuzzer-common.h"
|
|
|
|
|
2019-01-10 14:48:12 +00:00
|
|
|
#include <ctime>
|
|
|
|
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "include/v8.h"
|
2019-05-22 07:55:37 +00:00
|
|
|
#include "src/execution/isolate.h"
|
2019-05-23 08:51:46 +00:00
|
|
|
#include "src/objects/objects-inl.h"
|
2019-09-03 07:56:24 +00:00
|
|
|
#include "src/utils/ostreams.h"
|
2021-07-08 10:24:30 +00:00
|
|
|
#include "src/wasm/baseline/liftoff-compiler.h"
|
|
|
|
#include "src/wasm/module-instantiate.h"
|
2018-01-17 14:46:27 +00:00
|
|
|
#include "src/wasm/wasm-engine.h"
|
2019-09-03 07:56:24 +00:00
|
|
|
#include "src/wasm/wasm-feature-flags.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "src/wasm/wasm-module-builder.h"
|
|
|
|
#include "src/wasm/wasm-module.h"
|
2018-07-25 14:11:56 +00:00
|
|
|
#include "src/wasm/wasm-objects-inl.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "src/zone/accounting-allocator.h"
|
|
|
|
#include "src/zone/zone.h"
|
2017-11-06 12:21:06 +00:00
|
|
|
#include "test/common/wasm/flag-utils.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "test/common/wasm/wasm-module-runner.h"
|
|
|
|
#include "test/fuzzer/fuzzer-support.h"
|
|
|
|
|
2017-09-01 13:20:46 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
|
|
|
namespace fuzzer {
|
2017-08-09 08:11:21 +00:00
|
|
|
|
2021-07-08 10:24:30 +00:00
|
|
|
// Compile a baseline module. We pass a pointer to a max step counter and a
|
|
|
|
// nondeterminsm flag that are updated during execution by Liftoff.
|
|
|
|
Handle<WasmModuleObject> CompileReferenceModule(Zone* zone, Isolate* isolate,
|
|
|
|
ModuleWireBytes wire_bytes,
|
|
|
|
ErrorThrower* thrower,
|
|
|
|
int32_t* max_steps,
|
|
|
|
int32_t* nondeterminism) {
|
|
|
|
// Create the native module.
|
|
|
|
std::shared_ptr<NativeModule> native_module;
|
|
|
|
constexpr bool kNoVerifyFunctions = false;
|
|
|
|
auto enabled_features = i::wasm::WasmFeatures::FromIsolate(isolate);
|
|
|
|
ModuleResult module_res = DecodeWasmModule(
|
|
|
|
enabled_features, wire_bytes.start(), wire_bytes.end(),
|
|
|
|
kNoVerifyFunctions, ModuleOrigin::kWasmOrigin, isolate->counters(),
|
|
|
|
isolate->metrics_recorder(), v8::metrics::Recorder::ContextId::Empty(),
|
|
|
|
DecodingMethod::kSync, GetWasmEngine()->allocator());
|
|
|
|
CHECK(module_res.ok());
|
|
|
|
std::shared_ptr<WasmModule> module = module_res.value();
|
|
|
|
CHECK_NOT_NULL(module);
|
|
|
|
native_module =
|
|
|
|
GetWasmEngine()->NewNativeModule(isolate, enabled_features, module, 0);
|
|
|
|
native_module->SetWireBytes(
|
|
|
|
base::OwnedVector<uint8_t>::Of(wire_bytes.module_bytes()));
|
|
|
|
|
|
|
|
// Compile all functions with Liftoff.
|
|
|
|
WasmCodeRefScope code_ref_scope;
|
|
|
|
auto env = native_module->CreateCompilationEnv();
|
|
|
|
for (size_t i = module->num_imported_functions; i < module->functions.size();
|
|
|
|
++i) {
|
|
|
|
auto& func = module->functions[i];
|
|
|
|
base::Vector<const uint8_t> func_code = wire_bytes.GetFunctionBytes(&func);
|
|
|
|
WasmFeatures unused_detected_features;
|
|
|
|
FunctionBody func_body(func.sig, func.code.offset(), func_code.begin(),
|
|
|
|
func_code.end());
|
|
|
|
auto result = ExecuteLiftoffCompilation(
|
|
|
|
&env, func_body, func.func_index, kForDebugging, isolate->counters(),
|
|
|
|
&unused_detected_features, {}, nullptr, 0, max_steps, nondeterminism);
|
|
|
|
native_module->PublishCode(
|
|
|
|
native_module->AddCompiledCode(std::move(result)));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the module object.
|
|
|
|
constexpr base::Vector<const char> kNoSourceUrl;
|
|
|
|
Handle<Script> script =
|
|
|
|
GetWasmEngine()->GetOrCreateScript(isolate, native_module, kNoSourceUrl);
|
|
|
|
Handle<FixedArray> export_wrappers = isolate->factory()->NewFixedArray(
|
|
|
|
static_cast<int>(module->num_exported_functions));
|
|
|
|
return WasmModuleObject::New(isolate, std::move(native_module), script,
|
|
|
|
export_wrappers);
|
|
|
|
}
|
|
|
|
|
2017-09-07 09:48:34 +00:00
|
|
|
void InterpretAndExecuteModule(i::Isolate* isolate,
|
2021-07-08 10:24:30 +00:00
|
|
|
Handle<WasmModuleObject> module_object,
|
|
|
|
Handle<WasmModuleObject> module_ref,
|
|
|
|
int32_t* max_steps, int32_t* nondeterminism) {
|
2018-07-05 08:43:57 +00:00
|
|
|
// We do not instantiate the module if there is a start function, because a
|
|
|
|
// start function can contain an infinite loop which we cannot handle.
|
|
|
|
if (module_object->module()->start_function_index >= 0) return;
|
|
|
|
|
2020-08-11 10:05:04 +00:00
|
|
|
HandleScope handle_scope(isolate); // Avoid leaking handles.
|
2017-09-07 09:48:34 +00:00
|
|
|
Handle<WasmInstanceObject> instance;
|
2018-01-30 10:18:24 +00:00
|
|
|
|
2020-08-11 10:05:04 +00:00
|
|
|
// Try to instantiate, return if it fails.
|
|
|
|
{
|
|
|
|
ErrorThrower thrower(isolate, "WebAssembly Instantiation");
|
2021-06-18 14:29:39 +00:00
|
|
|
if (!GetWasmEngine()
|
2020-08-11 10:19:36 +00:00
|
|
|
->SyncInstantiate(isolate, &thrower, module_object, {},
|
|
|
|
{}) // no imports & memory
|
|
|
|
.ToHandle(&instance)) {
|
2020-08-11 10:05:04 +00:00
|
|
|
isolate->clear_pending_exception();
|
|
|
|
thrower.Reset(); // Ignore errors.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the "main" exported function. Do nothing if it does not exist.
|
|
|
|
Handle<WasmExportedFunction> main_function;
|
|
|
|
if (!testing::GetExportedFunction(isolate, instance, "main")
|
|
|
|
.ToHandle(&main_function)) {
|
2018-01-30 10:18:24 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-08-11 10:05:04 +00:00
|
|
|
|
2021-06-17 15:43:55 +00:00
|
|
|
base::OwnedVector<Handle<Object>> compiled_args =
|
2020-08-26 12:53:24 +00:00
|
|
|
testing::MakeDefaultArguments(isolate, main_function->sig());
|
2021-07-08 10:24:30 +00:00
|
|
|
bool exception_ref = false;
|
2020-08-18 08:14:25 +00:00
|
|
|
bool exception = false;
|
2021-07-08 10:24:30 +00:00
|
|
|
int32_t result_ref = 0;
|
|
|
|
int32_t result = 0;
|
|
|
|
|
|
|
|
auto interpreter_result = testing::WasmInterpretationResult::Failed();
|
|
|
|
if (module_ref.is_null()) {
|
|
|
|
base::OwnedVector<WasmValue> arguments =
|
|
|
|
testing::MakeDefaultInterpreterArguments(isolate, main_function->sig());
|
|
|
|
|
|
|
|
// Now interpret.
|
|
|
|
testing::WasmInterpretationResult interpreter_result =
|
|
|
|
testing::InterpretWasmModule(isolate, instance,
|
|
|
|
main_function->function_index(),
|
|
|
|
arguments.begin());
|
|
|
|
if (interpreter_result.failed()) return;
|
|
|
|
|
|
|
|
// The WebAssembly spec allows the sign bit of NaN to be non-deterministic.
|
|
|
|
// This sign bit can make the difference between an infinite loop and
|
|
|
|
// terminating code. With possible non-determinism we cannot guarantee that
|
|
|
|
// the generated code will not go into an infinite loop and cause a timeout
|
|
|
|
// in Clusterfuzz. Therefore we do not execute the generated code if the
|
|
|
|
// result may be non-deterministic.
|
|
|
|
if (interpreter_result.possible_nondeterminism()) return;
|
|
|
|
if (interpreter_result.finished()) {
|
|
|
|
result_ref = interpreter_result.result();
|
|
|
|
} else {
|
|
|
|
DCHECK(interpreter_result.trapped());
|
|
|
|
exception_ref = true;
|
|
|
|
}
|
2021-07-09 10:45:30 +00:00
|
|
|
// Reset the instance before the test run.
|
|
|
|
{
|
|
|
|
ErrorThrower thrower(isolate, "Second Instantiation");
|
|
|
|
// We instantiated before, so the second instantiation must also succeed:
|
|
|
|
CHECK(GetWasmEngine()
|
|
|
|
->SyncInstantiate(isolate, &thrower, module_object, {},
|
|
|
|
{}) // no imports & memory
|
|
|
|
.ToHandle(&instance));
|
|
|
|
}
|
2021-07-08 10:24:30 +00:00
|
|
|
} else {
|
|
|
|
Handle<WasmInstanceObject> instance_ref;
|
|
|
|
{
|
|
|
|
ErrorThrower thrower(isolate, "WebAssembly Instantiation");
|
2021-07-09 15:53:05 +00:00
|
|
|
// We instantiated before, so the second instantiation must also succeed:
|
|
|
|
CHECK(GetWasmEngine()
|
|
|
|
->SyncInstantiate(isolate, &thrower, module_ref, {},
|
|
|
|
{}) // no imports & memory
|
|
|
|
.ToHandle(&instance_ref));
|
2021-07-08 10:24:30 +00:00
|
|
|
}
|
|
|
|
result_ref = testing::CallWasmFunctionForTesting(
|
|
|
|
isolate, instance_ref, "main", static_cast<int>(compiled_args.size()),
|
|
|
|
compiled_args.begin(), &exception_ref);
|
|
|
|
// Reached max steps, do not try to execute the test module as it might
|
|
|
|
// never terminate.
|
|
|
|
if (*max_steps == 0) return;
|
|
|
|
// If there is nondeterminism, we cannot guarantee the behavior of the test
|
|
|
|
// module, and in particular it may not terminate.
|
|
|
|
if (*nondeterminism != 0) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = testing::CallWasmFunctionForTesting(
|
2020-08-26 12:53:24 +00:00
|
|
|
isolate, instance, "main", static_cast<int>(compiled_args.size()),
|
|
|
|
compiled_args.begin(), &exception);
|
2021-07-08 10:24:30 +00:00
|
|
|
|
|
|
|
if (exception_ref != exception) {
|
2020-08-10 14:20:01 +00:00
|
|
|
const char* exception_text[] = {"no exception", "exception"};
|
2021-07-08 10:24:30 +00:00
|
|
|
FATAL("expected: %s; got: %s", exception_text[interpreter_result.trapped()],
|
2020-08-18 08:14:25 +00:00
|
|
|
exception_text[exception]);
|
2020-08-10 14:20:01 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 10:24:30 +00:00
|
|
|
if (!exception) {
|
|
|
|
CHECK_EQ(result_ref, result);
|
2018-01-31 12:11:14 +00:00
|
|
|
}
|
2017-09-07 09:48:34 +00:00
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
namespace {
|
|
|
|
struct PrintSig {
|
|
|
|
const size_t num;
|
|
|
|
const std::function<ValueType(size_t)> getter;
|
|
|
|
};
|
|
|
|
PrintSig PrintParameters(const FunctionSig* sig) {
|
|
|
|
return {sig->parameter_count(), [=](size_t i) { return sig->GetParam(i); }};
|
|
|
|
}
|
|
|
|
PrintSig PrintReturns(const FunctionSig* sig) {
|
|
|
|
return {sig->return_count(), [=](size_t i) { return sig->GetReturn(i); }};
|
|
|
|
}
|
|
|
|
const char* ValueTypeToConstantName(ValueType type) {
|
2020-03-12 14:29:51 +00:00
|
|
|
switch (type.kind()) {
|
2021-02-22 09:28:44 +00:00
|
|
|
case kI32:
|
2018-01-08 11:02:45 +00:00
|
|
|
return "kWasmI32";
|
2021-02-22 09:28:44 +00:00
|
|
|
case kI64:
|
2018-01-08 11:02:45 +00:00
|
|
|
return "kWasmI64";
|
2021-02-22 09:28:44 +00:00
|
|
|
case kF32:
|
2018-01-08 11:02:45 +00:00
|
|
|
return "kWasmF32";
|
2021-02-22 09:28:44 +00:00
|
|
|
case kF64:
|
2018-01-08 11:02:45 +00:00
|
|
|
return "kWasmF64";
|
2021-02-22 09:28:44 +00:00
|
|
|
case kS128:
|
2020-09-21 20:31:37 +00:00
|
|
|
return "kWasmS128";
|
2021-02-22 09:28:44 +00:00
|
|
|
case kOptRef:
|
2020-07-01 06:35:04 +00:00
|
|
|
switch (type.heap_representation()) {
|
2020-06-29 09:24:51 +00:00
|
|
|
case HeapType::kExtern:
|
[wasm-gc] Change ValueType representation to account for new types
Motivation:
Changes to the typed function references and gc proposals solidified
the notion of heap type, clarified nullable vs. non-nullable reference
types, and introduced rtts, which contain an integer depth field in
addition to a heap type. This required us to overhaul our ValueType
representation, which results in extensive changes.
To keep this CL "small", we do not try to implement the binary encoding
as described in the proposals, but rather devise a simpler one of our
own (see below). Also, we do not try to implement additional
functionality for the new types.
Changes:
- Introduce HeapType. Move heap types from ValueType to HeapType.
- Introduce Nullability for reference types.
- Rework ValueType helper methods.
- Introduce rtts in ValueType with an integer depth field. Include depth
in the ValueType encoding.
- Make the constructor of ValueType private, instead expose static
functions which explicitly state what they create.
- Change every switch statement on ValueType::Kind. Sometimes, we need
nested switches.
- Introduce temporary constants in ValueTypeCode for nullable types,
use them for decoding.
- In WasmGlobalObject, split 'flags' into 'raw_type' and 'is_mutable'.
- Change IsSubtypeOfRef to IsSubtypeOfHeap and implement changes in
subtyping.
- kWasmFuncRef initializers are now non-nullable. Initializers are
only required to be subtypes of the declared global type.
- Change tests and fuzzers as needed.
Bug: v8:7748
Change-Id: If41f783bd4128443b07e94188cea7dd53ab0bfa5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2247657
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Reviewed-by: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68408}
2020-06-18 11:24:07 +00:00
|
|
|
return "kWasmExternRef";
|
2020-06-29 09:24:51 +00:00
|
|
|
case HeapType::kFunc:
|
[wasm-gc] Change ValueType representation to account for new types
Motivation:
Changes to the typed function references and gc proposals solidified
the notion of heap type, clarified nullable vs. non-nullable reference
types, and introduced rtts, which contain an integer depth field in
addition to a heap type. This required us to overhaul our ValueType
representation, which results in extensive changes.
To keep this CL "small", we do not try to implement the binary encoding
as described in the proposals, but rather devise a simpler one of our
own (see below). Also, we do not try to implement additional
functionality for the new types.
Changes:
- Introduce HeapType. Move heap types from ValueType to HeapType.
- Introduce Nullability for reference types.
- Rework ValueType helper methods.
- Introduce rtts in ValueType with an integer depth field. Include depth
in the ValueType encoding.
- Make the constructor of ValueType private, instead expose static
functions which explicitly state what they create.
- Change every switch statement on ValueType::Kind. Sometimes, we need
nested switches.
- Introduce temporary constants in ValueTypeCode for nullable types,
use them for decoding.
- In WasmGlobalObject, split 'flags' into 'raw_type' and 'is_mutable'.
- Change IsSubtypeOfRef to IsSubtypeOfHeap and implement changes in
subtyping.
- kWasmFuncRef initializers are now non-nullable. Initializers are
only required to be subtypes of the declared global type.
- Change tests and fuzzers as needed.
Bug: v8:7748
Change-Id: If41f783bd4128443b07e94188cea7dd53ab0bfa5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2247657
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Reviewed-by: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68408}
2020-06-18 11:24:07 +00:00
|
|
|
return "kWasmFuncRef";
|
2020-11-19 14:51:14 +00:00
|
|
|
case HeapType::kAny:
|
|
|
|
case HeapType::kI31:
|
|
|
|
case HeapType::kBottom:
|
[wasm-gc] Change ValueType representation to account for new types
Motivation:
Changes to the typed function references and gc proposals solidified
the notion of heap type, clarified nullable vs. non-nullable reference
types, and introduced rtts, which contain an integer depth field in
addition to a heap type. This required us to overhaul our ValueType
representation, which results in extensive changes.
To keep this CL "small", we do not try to implement the binary encoding
as described in the proposals, but rather devise a simpler one of our
own (see below). Also, we do not try to implement additional
functionality for the new types.
Changes:
- Introduce HeapType. Move heap types from ValueType to HeapType.
- Introduce Nullability for reference types.
- Rework ValueType helper methods.
- Introduce rtts in ValueType with an integer depth field. Include depth
in the ValueType encoding.
- Make the constructor of ValueType private, instead expose static
functions which explicitly state what they create.
- Change every switch statement on ValueType::Kind. Sometimes, we need
nested switches.
- Introduce temporary constants in ValueTypeCode for nullable types,
use them for decoding.
- In WasmGlobalObject, split 'flags' into 'raw_type' and 'is_mutable'.
- Change IsSubtypeOfRef to IsSubtypeOfHeap and implement changes in
subtyping.
- kWasmFuncRef initializers are now non-nullable. Initializers are
only required to be subtypes of the declared global type.
- Change tests and fuzzers as needed.
Bug: v8:7748
Change-Id: If41f783bd4128443b07e94188cea7dd53ab0bfa5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2247657
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Reviewed-by: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68408}
2020-06-18 11:24:07 +00:00
|
|
|
default:
|
2020-11-19 14:51:14 +00:00
|
|
|
// TODO(7748): Implement these if fuzzing for them is enabled.
|
[wasm-gc] Change ValueType representation to account for new types
Motivation:
Changes to the typed function references and gc proposals solidified
the notion of heap type, clarified nullable vs. non-nullable reference
types, and introduced rtts, which contain an integer depth field in
addition to a heap type. This required us to overhaul our ValueType
representation, which results in extensive changes.
To keep this CL "small", we do not try to implement the binary encoding
as described in the proposals, but rather devise a simpler one of our
own (see below). Also, we do not try to implement additional
functionality for the new types.
Changes:
- Introduce HeapType. Move heap types from ValueType to HeapType.
- Introduce Nullability for reference types.
- Rework ValueType helper methods.
- Introduce rtts in ValueType with an integer depth field. Include depth
in the ValueType encoding.
- Make the constructor of ValueType private, instead expose static
functions which explicitly state what they create.
- Change every switch statement on ValueType::Kind. Sometimes, we need
nested switches.
- Introduce temporary constants in ValueTypeCode for nullable types,
use them for decoding.
- In WasmGlobalObject, split 'flags' into 'raw_type' and 'is_mutable'.
- Change IsSubtypeOfRef to IsSubtypeOfHeap and implement changes in
subtyping.
- kWasmFuncRef initializers are now non-nullable. Initializers are
only required to be subtypes of the declared global type.
- Change tests and fuzzers as needed.
Bug: v8:7748
Change-Id: If41f783bd4128443b07e94188cea7dd53ab0bfa5
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2247657
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Reviewed-by: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68408}
2020-06-18 11:24:07 +00:00
|
|
|
UNREACHABLE();
|
|
|
|
}
|
2018-01-08 11:02:45 +00:00
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& os, const PrintSig& print) {
|
|
|
|
os << "[";
|
|
|
|
for (size_t i = 0; i < print.num; ++i) {
|
|
|
|
os << (i == 0 ? "" : ", ") << ValueTypeToConstantName(print.getter(i));
|
|
|
|
}
|
|
|
|
return os << "]";
|
|
|
|
}
|
|
|
|
|
2018-02-01 15:18:05 +00:00
|
|
|
struct PrintName {
|
|
|
|
WasmName name;
|
|
|
|
PrintName(ModuleWireBytes wire_bytes, WireBytesRef ref)
|
|
|
|
: name(wire_bytes.GetNameOrNull(ref)) {}
|
|
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream& os, const PrintName& name) {
|
2019-04-29 11:06:49 +00:00
|
|
|
return os.write(name.name.begin(), name.name.size());
|
2018-02-01 15:18:05 +00:00
|
|
|
}
|
2021-05-19 11:01:15 +00:00
|
|
|
|
2021-07-01 13:46:42 +00:00
|
|
|
std::ostream& operator<<(std::ostream& os, WasmElemSegment::Entry entry) {
|
2021-05-19 11:01:15 +00:00
|
|
|
os << "WasmInitExpr.";
|
2021-07-01 13:46:42 +00:00
|
|
|
switch (entry.kind) {
|
|
|
|
case WasmElemSegment::Entry::kGlobalGetEntry:
|
|
|
|
os << "GlobalGet(" << entry.index;
|
2021-05-19 11:01:15 +00:00
|
|
|
break;
|
2021-07-01 13:46:42 +00:00
|
|
|
case WasmElemSegment::Entry::kRefFuncEntry:
|
|
|
|
os << "RefFunc(" << entry.index;
|
2021-05-19 11:01:15 +00:00
|
|
|
break;
|
2021-07-01 13:46:42 +00:00
|
|
|
case WasmElemSegment::Entry::kRefNullEntry:
|
|
|
|
os << "RefNull(" << HeapType(entry.index).name().c_str();
|
2021-05-19 11:01:15 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return os << ")";
|
|
|
|
}
|
2021-06-30 20:35:23 +00:00
|
|
|
|
|
|
|
// Appends an initializer expression encoded in {wire_bytes}, in the offset
|
|
|
|
// contained in {expr}.
|
|
|
|
// TODO(7748): Find a way to implement other expressions here.
|
|
|
|
void AppendInitExpr(std::ostream& os, ModuleWireBytes wire_bytes,
|
|
|
|
WireBytesRef expr) {
|
|
|
|
Decoder decoder(wire_bytes.module_bytes());
|
|
|
|
const byte* pc = wire_bytes.module_bytes().begin() + expr.offset();
|
|
|
|
uint32_t length;
|
|
|
|
os << "WasmInitExpr.";
|
|
|
|
switch (static_cast<WasmOpcode>(pc[0])) {
|
|
|
|
case kExprGlobalGet:
|
|
|
|
os << "GlobalGet("
|
|
|
|
<< decoder.read_u32v<Decoder::kNoValidation>(pc + 1, &length);
|
|
|
|
break;
|
|
|
|
case kExprI32Const:
|
|
|
|
os << "I32Const("
|
|
|
|
<< decoder.read_i32v<Decoder::kNoValidation>(pc + 1, &length);
|
|
|
|
break;
|
|
|
|
case kExprI64Const:
|
|
|
|
os << "I64Const("
|
|
|
|
<< decoder.read_i64v<Decoder::kNoValidation>(pc + 1, &length);
|
|
|
|
break;
|
|
|
|
case kExprF32Const: {
|
|
|
|
uint32_t result = decoder.read_u32<Decoder::kNoValidation>(pc + 1);
|
|
|
|
os << "F32Const(" << bit_cast<float>(result);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case kExprF64Const: {
|
|
|
|
uint64_t result = decoder.read_u64<Decoder::kNoValidation>(pc + 1);
|
|
|
|
os << "F64Const(" << bit_cast<double>(result);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case kExprRefFunc:
|
|
|
|
os << "RefFunc("
|
|
|
|
<< decoder.read_u32v<Decoder::kNoValidation>(pc + 1, &length);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
os << ")";
|
|
|
|
}
|
2018-06-21 12:09:36 +00:00
|
|
|
} // namespace
|
2018-02-01 15:18:05 +00:00
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
void GenerateTestCase(Isolate* isolate, ModuleWireBytes wire_bytes,
|
|
|
|
bool compiles) {
|
|
|
|
constexpr bool kVerifyFunctions = false;
|
2019-11-26 16:25:14 +00:00
|
|
|
auto enabled_features = i::wasm::WasmFeatures::FromIsolate(isolate);
|
2018-07-20 12:55:40 +00:00
|
|
|
ModuleResult module_res = DecodeWasmModule(
|
2018-08-08 14:54:44 +00:00
|
|
|
enabled_features, wire_bytes.start(), wire_bytes.end(), kVerifyFunctions,
|
2019-04-03 13:54:08 +00:00
|
|
|
ModuleOrigin::kWasmOrigin, isolate->counters(),
|
2020-08-13 15:04:08 +00:00
|
|
|
isolate->metrics_recorder(), v8::metrics::Recorder::ContextId::Empty(),
|
2021-06-18 14:29:39 +00:00
|
|
|
DecodingMethod::kSync, GetWasmEngine()->allocator());
|
2018-01-08 11:02:45 +00:00
|
|
|
CHECK(module_res.ok());
|
2018-10-19 12:35:56 +00:00
|
|
|
WasmModule* module = module_res.value().get();
|
2018-01-08 11:02:45 +00:00
|
|
|
CHECK_NOT_NULL(module);
|
|
|
|
|
2018-06-14 12:46:07 +00:00
|
|
|
StdoutStream os;
|
2018-01-08 11:02:45 +00:00
|
|
|
|
2019-01-10 14:48:12 +00:00
|
|
|
tzset();
|
|
|
|
time_t current_time = time(nullptr);
|
|
|
|
struct tm current_localtime;
|
|
|
|
#ifdef V8_OS_WIN
|
|
|
|
localtime_s(¤t_localtime, ¤t_time);
|
|
|
|
#else
|
|
|
|
localtime_r(¤t_time, ¤t_localtime);
|
|
|
|
#endif
|
|
|
|
int year = 1900 + current_localtime.tm_year;
|
|
|
|
|
|
|
|
os << "// Copyright " << year
|
|
|
|
<< " the V8 project authors. All rights reserved.\n"
|
2018-01-08 11:02:45 +00:00
|
|
|
"// Use of this source code is governed by a BSD-style license that "
|
|
|
|
"can be\n"
|
|
|
|
"// found in the LICENSE file.\n"
|
|
|
|
"\n"
|
2019-08-23 15:32:23 +00:00
|
|
|
"// Flags: --wasm-staging\n"
|
|
|
|
"\n"
|
2018-01-08 11:02:45 +00:00
|
|
|
"load('test/mjsunit/wasm/wasm-module-builder.js');\n"
|
|
|
|
"\n"
|
2020-02-04 10:31:29 +00:00
|
|
|
"const builder = new WasmModuleBuilder();\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
|
|
|
|
if (module->has_memory) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.addMemory(" << module->initial_pages;
|
2018-01-08 11:02:45 +00:00
|
|
|
if (module->has_maximum_pages) {
|
2018-06-22 23:51:42 +00:00
|
|
|
os << ", " << module->maximum_pages;
|
2018-01-08 11:02:45 +00:00
|
|
|
} else {
|
2018-06-22 23:51:42 +00:00
|
|
|
os << ", undefined";
|
2018-01-08 11:02:45 +00:00
|
|
|
}
|
2018-06-22 23:51:42 +00:00
|
|
|
os << ", " << (module->mem_export ? "true" : "false");
|
2018-08-08 14:54:44 +00:00
|
|
|
if (module->has_shared_memory) {
|
2018-11-12 13:52:44 +00:00
|
|
|
os << ", true";
|
2018-06-22 23:51:42 +00:00
|
|
|
}
|
|
|
|
os << ");\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
}
|
|
|
|
|
2018-02-01 15:18:05 +00:00
|
|
|
for (WasmGlobal& glob : module->globals) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.addGlobal(" << ValueTypeToConstantName(glob.type) << ", "
|
2021-06-30 20:35:23 +00:00
|
|
|
<< glob.mutability << ", ";
|
|
|
|
AppendInitExpr(os, wire_bytes, glob.init);
|
|
|
|
os << ");\n";
|
2018-02-01 15:18:05 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 18:19:12 +00:00
|
|
|
// TODO(7748): Support array/struct types.
|
|
|
|
#if DEBUG
|
|
|
|
for (uint8_t kind : module->type_kinds) {
|
|
|
|
DCHECK_EQ(kWasmFunctionTypeCode, kind);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
for (TypeDefinition type : module->types) {
|
|
|
|
const FunctionSig* sig = type.function_sig;
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.addType(makeSig(" << PrintParameters(sig) << ", "
|
2018-11-26 13:05:51 +00:00
|
|
|
<< PrintReturns(sig) << "));\n";
|
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
Zone tmp_zone(isolate->allocator(), ZONE_NAME);
|
|
|
|
|
2018-11-26 13:08:20 +00:00
|
|
|
// There currently cannot be more than one table.
|
2021-05-19 11:01:15 +00:00
|
|
|
// TODO(manoskouk): Add support for more tables.
|
|
|
|
// TODO(9495): Add support for talbes with explicit initializers.
|
2018-11-26 13:08:20 +00:00
|
|
|
DCHECK_GE(1, module->tables.size());
|
|
|
|
for (const WasmTable& table : module->tables) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.setTableBounds(" << table.initial_size << ", ";
|
2018-11-26 13:08:20 +00:00
|
|
|
if (table.has_maximum_size) {
|
|
|
|
os << table.maximum_size << ");\n";
|
|
|
|
} else {
|
|
|
|
os << "undefined);\n";
|
|
|
|
}
|
|
|
|
}
|
2019-01-14 11:55:10 +00:00
|
|
|
for (const WasmElemSegment& elem_segment : module->elem_segments) {
|
2021-05-19 11:01:15 +00:00
|
|
|
const char* status_str =
|
|
|
|
elem_segment.status == WasmElemSegment::kStatusActive
|
|
|
|
? "Active"
|
|
|
|
: elem_segment.status == WasmElemSegment::kStatusPassive
|
|
|
|
? "Passive"
|
|
|
|
: "Declarative";
|
|
|
|
os << "builder.add" << status_str << "ElementSegment(";
|
|
|
|
if (elem_segment.status == WasmElemSegment::kStatusActive) {
|
2021-06-30 20:35:23 +00:00
|
|
|
os << elem_segment.table_index << ", ";
|
|
|
|
AppendInitExpr(os, wire_bytes, elem_segment.offset);
|
|
|
|
os << ", ";
|
2021-05-19 11:01:15 +00:00
|
|
|
}
|
|
|
|
os << "[";
|
|
|
|
for (uint32_t i = 0; i < elem_segment.entries.size(); i++) {
|
|
|
|
os << elem_segment.entries[i];
|
|
|
|
if (i < elem_segment.entries.size() - 1) os << ", ";
|
2018-11-26 13:08:20 +00:00
|
|
|
}
|
2021-05-19 11:01:15 +00:00
|
|
|
os << "], " << ValueTypeToConstantName(elem_segment.type) << ");\n";
|
2018-11-26 13:08:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
for (const WasmFunction& func : module->functions) {
|
2021-06-17 15:43:55 +00:00
|
|
|
base::Vector<const uint8_t> func_code = wire_bytes.GetFunctionBytes(&func);
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "// Generate function " << (func.func_index + 1) << " (out of "
|
2018-02-01 15:18:05 +00:00
|
|
|
<< module->functions.size() << ").\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
|
|
|
|
// Add function.
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.addFunction(undefined, " << func.sig_index
|
2018-11-26 13:05:51 +00:00
|
|
|
<< " /* sig */)\n";
|
2018-01-08 11:54:54 +00:00
|
|
|
|
|
|
|
// Add locals.
|
|
|
|
BodyLocalDecls decls(&tmp_zone);
|
[wasm-gc] read_heap_type should check if index is in module bounds
read_heap_type did not have knowledge of the module for which the heap
type was being decoded. As a result, callers of read_heap_type (or
read_value_type, which in turn calls read_heap_type) had to check after
the fact that a decoded indexed type (ref, ref null, or rtt) references
a type index within the module's bounds. This was not done consistently,
and was missing (at least) in DecodeLocals.
To avoid such problems in the future, this CL refactors read_heap_type
to accept a module and check the decoded index against it.
Changes:
- Add WasmModule argument to read_heap_type. Do so accordingly to all
its transitive callers (read_value_type, immediate arguments,
DecodeLocalDecls, DecodeValue/HeapType in unittests).
- Add index check to read_heap_type and emit an error for an
out-of-bounds index.
- Remove all other now-redundant index validations. Replace them with
decoder->ok() if needed (since read_heap_type will now emit an error).
- Fix error message in Validate for BlockTypeImmediate.
- In DecodeLocalDecls in unittests, pass an empty module to
DecodeLocalDecls in the main code.
- Add a unit test with an invalid index in local type declarations.
Bug: v8:9495
Change-Id: I4ed1204847db80f78b6ae85fa40d300cd2456295
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2569757
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Commit-Queue: Manos Koukoutos <manoskouk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#71572}
2020-12-02 14:29:22 +00:00
|
|
|
DecodeLocalDecls(enabled_features, &decls, module, func_code.begin(),
|
2018-08-08 14:54:44 +00:00
|
|
|
func_code.end());
|
2018-01-08 11:54:54 +00:00
|
|
|
if (!decls.type_list.empty()) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << " ";
|
2018-01-08 11:54:54 +00:00
|
|
|
for (size_t pos = 0, count = 1, locals = decls.type_list.size();
|
|
|
|
pos < locals; pos += count, count = 1) {
|
|
|
|
ValueType type = decls.type_list[pos];
|
2020-09-15 14:18:47 +00:00
|
|
|
while (pos + count < locals && decls.type_list[pos + count] == type) {
|
2018-01-08 11:54:54 +00:00
|
|
|
++count;
|
2020-09-15 14:18:47 +00:00
|
|
|
}
|
2020-09-21 10:42:09 +00:00
|
|
|
os << ".addLocals(" << ValueTypeToConstantName(type) << ", " << count
|
|
|
|
<< ")";
|
2018-01-08 11:54:54 +00:00
|
|
|
}
|
|
|
|
os << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add body.
|
2020-02-04 10:31:29 +00:00
|
|
|
os << " .addBodyWithEnd([\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
|
2019-04-29 11:06:49 +00:00
|
|
|
FunctionBody func_body(func.sig, func.code.offset(), func_code.begin(),
|
2018-01-08 11:02:45 +00:00
|
|
|
func_code.end());
|
|
|
|
PrintRawWasmCode(isolate->allocator(), func_body, module, kOmitLocals);
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "]);\n";
|
2018-02-01 15:18:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (WasmExport& exp : module->export_table) {
|
|
|
|
if (exp.kind != kExternalFunction) continue;
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "builder.addExport('" << PrintName(wire_bytes, exp.name) << "', "
|
2018-02-01 15:18:05 +00:00
|
|
|
<< exp.index << ");\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (compiles) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "const instance = builder.instantiate();\n"
|
|
|
|
"print(instance.exports.main(1, 2, 3));\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
} else {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << "assertThrows(function() { builder.instantiate(); }, "
|
2018-02-01 15:18:05 +00:00
|
|
|
"WebAssembly.CompileError);\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-23 08:02:32 +00:00
|
|
|
void OneTimeEnableStagedWasmFeatures(v8::Isolate* isolate) {
|
2020-10-05 14:50:59 +00:00
|
|
|
struct EnableStagedWasmFeatures {
|
2021-03-23 08:02:32 +00:00
|
|
|
explicit EnableStagedWasmFeatures(v8::Isolate* isolate) {
|
2020-10-05 14:50:59 +00:00
|
|
|
#define ENABLE_STAGED_FEATURES(feat, desc, val) \
|
|
|
|
FLAG_experimental_wasm_##feat = true;
|
|
|
|
FOREACH_WASM_STAGING_FEATURE_FLAG(ENABLE_STAGED_FEATURES)
|
|
|
|
#undef ENABLE_STAGED_FEATURES
|
2021-03-23 08:02:32 +00:00
|
|
|
isolate->InstallConditionalFeatures(isolate->GetCurrentContext());
|
2020-10-05 14:50:59 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
// The compiler will properly synchronize the constructor call.
|
2021-03-23 08:02:32 +00:00
|
|
|
static EnableStagedWasmFeatures one_time_enable_staged_features(isolate);
|
2020-10-05 14:50:59 +00:00
|
|
|
}
|
|
|
|
|
2021-06-17 15:43:55 +00:00
|
|
|
void WasmExecutionFuzzer::FuzzWasmModule(base::Vector<const uint8_t> data,
|
2018-11-20 14:41:36 +00:00
|
|
|
bool require_valid) {
|
2021-03-23 08:02:32 +00:00
|
|
|
v8_fuzzer::FuzzerSupport* support = v8_fuzzer::FuzzerSupport::Get();
|
|
|
|
v8::Isolate* isolate = support->GetIsolate();
|
2019-08-23 15:32:23 +00:00
|
|
|
|
2018-10-25 14:24:01 +00:00
|
|
|
// Strictly enforce the input size limit. Note that setting "max_len" on the
|
|
|
|
// fuzzer target is not enough, since different fuzzers are used and not all
|
|
|
|
// respect that limit.
|
2018-11-20 14:41:36 +00:00
|
|
|
if (data.size() > max_input_size()) return;
|
2018-10-25 14:24:01 +00:00
|
|
|
|
2017-09-01 13:20:46 +00:00
|
|
|
i::Isolate* i_isolate = reinterpret_cast<Isolate*>(isolate);
|
2017-05-08 09:22:54 +00:00
|
|
|
|
|
|
|
// Clear any pending exceptions from a prior run.
|
2017-11-08 14:23:08 +00:00
|
|
|
i_isolate->clear_pending_exception();
|
2017-05-08 09:22:54 +00:00
|
|
|
|
|
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
v8::Context::Scope context_scope(support->GetContext());
|
2021-03-23 08:02:32 +00:00
|
|
|
|
|
|
|
// We explicitly enable staged WebAssembly features here to increase fuzzer
|
|
|
|
// coverage. For libfuzzer fuzzers it is not possible that the fuzzer enables
|
|
|
|
// the flag by itself.
|
|
|
|
OneTimeEnableStagedWasmFeatures(isolate);
|
|
|
|
|
2017-05-08 09:22:54 +00:00
|
|
|
v8::TryCatch try_catch(isolate);
|
|
|
|
HandleScope scope(i_isolate);
|
|
|
|
|
|
|
|
AccountingAllocator allocator;
|
|
|
|
Zone zone(&allocator, ZONE_NAME);
|
|
|
|
|
|
|
|
ZoneBuffer buffer(&zone);
|
2018-07-12 09:15:43 +00:00
|
|
|
// The first byte builds the bitmask to control which function will be
|
|
|
|
// compiled with Turbofan and which one with Liftoff.
|
2019-04-03 08:38:03 +00:00
|
|
|
uint8_t tier_mask = data.empty() ? 0 : data[0];
|
|
|
|
if (!data.empty()) data += 1;
|
2021-07-08 10:24:30 +00:00
|
|
|
// Build the bitmask to control which functions should be compiled for
|
|
|
|
// debugging.
|
2021-04-06 15:42:44 +00:00
|
|
|
uint8_t debug_mask = data.empty() ? 0 : data[0];
|
2021-07-08 10:24:30 +00:00
|
|
|
if (!data.empty()) data += 1;
|
|
|
|
// Control whether Liftoff or the interpreter will be used as the reference
|
|
|
|
// tier.
|
|
|
|
// TODO(thibaudm): Port nondeterminism detection to arm.
|
|
|
|
#if defined(V8_TARGET_ARCH_X64) || defined(V8_TARGET_ARCH_X86)
|
|
|
|
bool liftoff_as_reference = data.empty() ? false : data[0] % 2;
|
|
|
|
#else
|
|
|
|
bool liftoff_as_reference = false;
|
|
|
|
#endif
|
2021-04-06 15:42:44 +00:00
|
|
|
if (!data.empty()) data += 1;
|
2021-07-05 14:08:41 +00:00
|
|
|
if (!GenerateModule(i_isolate, &zone, data, &buffer)) {
|
2018-11-20 14:41:36 +00:00
|
|
|
return;
|
2017-05-08 09:22:54 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 13:20:46 +00:00
|
|
|
testing::SetupIsolateForWasmModule(i_isolate);
|
2017-05-08 09:22:54 +00:00
|
|
|
|
|
|
|
ErrorThrower interpreter_thrower(i_isolate, "Interpreter");
|
2017-06-12 11:13:15 +00:00
|
|
|
ModuleWireBytes wire_bytes(buffer.begin(), buffer.end());
|
2017-05-08 09:22:54 +00:00
|
|
|
|
2019-11-26 16:25:14 +00:00
|
|
|
auto enabled_features = i::wasm::WasmFeatures::FromIsolate(i_isolate);
|
2017-11-06 12:21:06 +00:00
|
|
|
MaybeHandle<WasmModuleObject> compiled_module;
|
|
|
|
{
|
2018-07-12 09:15:43 +00:00
|
|
|
// Explicitly enable Liftoff, disable tiering and set the tier_mask. This
|
|
|
|
// way, we deterministically test a combination of Liftoff and Turbofan.
|
|
|
|
FlagScope<bool> liftoff(&FLAG_liftoff, true);
|
|
|
|
FlagScope<bool> no_tier_up(&FLAG_wasm_tier_up, false);
|
|
|
|
FlagScope<int> tier_mask_scope(&FLAG_wasm_tier_mask_for_testing, tier_mask);
|
2021-04-06 15:42:44 +00:00
|
|
|
FlagScope<int> debug_mask_scope(&FLAG_wasm_debug_mask_for_testing,
|
|
|
|
debug_mask);
|
2021-06-18 14:29:39 +00:00
|
|
|
compiled_module = GetWasmEngine()->SyncCompile(
|
2018-08-08 14:54:44 +00:00
|
|
|
i_isolate, enabled_features, &interpreter_thrower, wire_bytes);
|
2017-11-06 12:21:06 +00:00
|
|
|
}
|
2017-07-10 19:24:22 +00:00
|
|
|
bool compiles = !compiled_module.is_null();
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
if (FLAG_wasm_fuzzer_gen_test) {
|
|
|
|
GenerateTestCase(i_isolate, wire_bytes, compiles);
|
2017-05-08 09:22:54 +00:00
|
|
|
}
|
|
|
|
|
2021-06-18 14:29:39 +00:00
|
|
|
bool validates =
|
|
|
|
GetWasmEngine()->SyncValidate(i_isolate, enabled_features, wire_bytes);
|
2017-07-10 19:24:22 +00:00
|
|
|
|
2017-11-08 16:59:01 +00:00
|
|
|
CHECK_EQ(compiles, validates);
|
2017-11-08 21:03:20 +00:00
|
|
|
CHECK_IMPLIES(require_valid, validates);
|
2017-07-10 19:24:22 +00:00
|
|
|
|
2018-11-20 14:41:36 +00:00
|
|
|
if (!compiles) return;
|
2017-07-10 19:24:22 +00:00
|
|
|
|
2021-07-08 10:24:30 +00:00
|
|
|
int32_t max_steps = 16 * 1024;
|
|
|
|
int32_t nondeterminism = false;
|
|
|
|
Handle<WasmModuleObject> module_ref;
|
|
|
|
if (liftoff_as_reference) {
|
|
|
|
module_ref = CompileReferenceModule(&zone, i_isolate, wire_bytes,
|
|
|
|
&interpreter_thrower, &max_steps,
|
|
|
|
&nondeterminism);
|
|
|
|
}
|
|
|
|
InterpretAndExecuteModule(i_isolate, compiled_module.ToHandleChecked(),
|
|
|
|
module_ref, &max_steps, &nondeterminism);
|
2017-05-08 09:22:54 +00:00
|
|
|
}
|
2017-09-01 13:20:46 +00:00
|
|
|
|
|
|
|
} // namespace fuzzer
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|