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-context.h"
|
2021-08-06 10:45:15 +00:00
|
|
|
#include "include/v8-exception.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "include/v8-isolate.h"
|
|
|
|
#include "include/v8-local-handle.h"
|
2021-07-08 10:24:30 +00:00
|
|
|
#include "include/v8-metrics.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "src/execution/isolate.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"
|
2021-08-06 10:45:15 +00:00
|
|
|
#include "src/wasm/function-body-decoder-impl.h"
|
2021-07-08 10:24:30 +00:00
|
|
|
#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"
|
2021-11-05 06:10:04 +00:00
|
|
|
#include "src/wasm/wasm-opcodes-inl.h"
|
2017-05-08 09:22:54 +00:00
|
|
|
#include "src/zone/accounting-allocator.h"
|
|
|
|
#include "src/zone/zone.h"
|
2022-07-05 14:54:26 +00:00
|
|
|
#include "test/common/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"
|
|
|
|
|
2022-11-16 12:55:33 +00:00
|
|
|
namespace v8::internal::wasm::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.
|
2022-12-05 11:59:26 +00:00
|
|
|
Handle<WasmModuleObject> CompileReferenceModule(
|
|
|
|
Isolate* isolate, base::Vector<const uint8_t> wire_bytes,
|
|
|
|
int32_t* max_steps, int32_t* nondeterminism) {
|
2021-07-08 10:24:30 +00:00
|
|
|
// Create the native module.
|
|
|
|
std::shared_ptr<NativeModule> native_module;
|
|
|
|
constexpr bool kNoVerifyFunctions = false;
|
2022-11-16 12:55:33 +00:00
|
|
|
auto enabled_features = WasmFeatures::FromIsolate(isolate);
|
2022-12-01 17:34:14 +00:00
|
|
|
ModuleResult module_res =
|
2022-12-05 11:59:26 +00:00
|
|
|
DecodeWasmModule(enabled_features, wire_bytes, kNoVerifyFunctions,
|
|
|
|
ModuleOrigin::kWasmOrigin);
|
2021-07-08 10:24:30 +00:00
|
|
|
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);
|
2022-12-05 11:59:26 +00:00
|
|
|
native_module->SetWireBytes(base::OwnedVector<uint8_t>::Of(wire_bytes));
|
2023-01-16 16:04:23 +00:00
|
|
|
// The module is known to be valid as this point (it was compiled by the
|
|
|
|
// caller before).
|
|
|
|
module->set_all_functions_validated();
|
2021-07-08 10:24:30 +00:00
|
|
|
|
|
|
|
// Compile all functions with Liftoff.
|
|
|
|
WasmCodeRefScope code_ref_scope;
|
|
|
|
auto env = native_module->CreateCompilationEnv();
|
2022-12-05 11:59:26 +00:00
|
|
|
ModuleWireBytes wire_bytes_accessor{wire_bytes};
|
2021-07-08 10:24:30 +00:00
|
|
|
for (size_t i = module->num_imported_functions; i < module->functions.size();
|
|
|
|
++i) {
|
|
|
|
auto& func = module->functions[i];
|
2022-12-05 11:59:26 +00:00
|
|
|
base::Vector<const uint8_t> func_code =
|
|
|
|
wire_bytes_accessor.GetFunctionBytes(&func);
|
2021-07-08 10:24:30 +00:00
|
|
|
FunctionBody func_body(func.sig, func.code.offset(), func_code.begin(),
|
|
|
|
func_code.end());
|
2022-04-19 12:36:13 +00:00
|
|
|
auto result =
|
|
|
|
ExecuteLiftoffCompilation(&env, func_body,
|
|
|
|
LiftoffOptions{}
|
|
|
|
.set_func_index(func.func_index)
|
|
|
|
.set_for_debugging(kForDebugging)
|
|
|
|
.set_max_steps(max_steps)
|
|
|
|
.set_nondeterminism(nondeterminism));
|
2021-07-08 10:24:30 +00:00
|
|
|
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);
|
2022-09-16 13:21:05 +00:00
|
|
|
isolate->heap()->EnsureWasmCanonicalRttsSize(module->MaxCanonicalTypeIndex() +
|
|
|
|
1);
|
|
|
|
return WasmModuleObject::New(isolate, std::move(native_module), script);
|
2021-07-08 10:24:30 +00:00
|
|
|
}
|
|
|
|
|
2022-12-05 11:59:26 +00:00
|
|
|
void ExecuteAgainstReference(Isolate* isolate,
|
|
|
|
Handle<WasmModuleObject> module_object,
|
|
|
|
int32_t max_executed_instructions) {
|
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;
|
|
|
|
|
2022-12-05 11:59:26 +00:00
|
|
|
int32_t max_steps = max_executed_instructions;
|
|
|
|
int32_t nondeterminism = 0;
|
|
|
|
|
2020-08-11 10:05:04 +00:00
|
|
|
HandleScope handle_scope(isolate); // Avoid leaking handles.
|
2022-12-05 11:59:26 +00:00
|
|
|
Zone reference_module_zone(isolate->allocator(), "wasm reference module");
|
|
|
|
Handle<WasmModuleObject> module_ref = CompileReferenceModule(
|
|
|
|
isolate, module_object->native_module()->wire_bytes(), &max_steps,
|
|
|
|
&nondeterminism);
|
2022-06-01 15:03:57 +00:00
|
|
|
Handle<WasmInstanceObject> instance_ref;
|
2018-01-30 10:18:24 +00:00
|
|
|
|
2022-12-05 11:59:26 +00:00
|
|
|
// Try to instantiate the reference instance, return if it fails.
|
2020-08-11 10:05:04 +00:00
|
|
|
{
|
2022-12-05 11:59:26 +00:00
|
|
|
ErrorThrower thrower(isolate, "ExecuteAgainstReference");
|
2021-06-18 14:29:39 +00:00
|
|
|
if (!GetWasmEngine()
|
2022-12-05 11:59:26 +00:00
|
|
|
->SyncInstantiate(isolate, &thrower, module_ref, {},
|
|
|
|
{}) // no imports & memory
|
2022-06-01 15:03:57 +00:00
|
|
|
.ToHandle(&instance_ref)) {
|
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;
|
2022-06-01 15:03:57 +00:00
|
|
|
if (!testing::GetExportedFunction(isolate, instance_ref, "main")
|
2020-08-11 10:05:04 +00:00
|
|
|
.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;
|
2022-12-05 11:59:26 +00:00
|
|
|
int32_t 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.
|
2023-01-13 17:19:39 +00:00
|
|
|
if (max_steps < 0) return;
|
2022-12-05 11:59:26 +00:00
|
|
|
// If there is nondeterminism, we cannot guarantee the behavior of the test
|
|
|
|
// module, and in particular it may not terminate.
|
|
|
|
if (nondeterminism != 0) return;
|
2021-07-08 10:24:30 +00:00
|
|
|
|
2022-06-01 15:03:57 +00:00
|
|
|
// Instantiate a fresh instance for the actual (non-ref) execution.
|
|
|
|
Handle<WasmInstanceObject> instance;
|
|
|
|
{
|
2022-12-05 11:59:26 +00:00
|
|
|
ErrorThrower thrower(isolate, "ExecuteAgainstReference (second)");
|
2022-06-01 15:03:57 +00:00
|
|
|
// We instantiated before, so the second instantiation must also succeed.
|
|
|
|
if (!GetWasmEngine()
|
|
|
|
->SyncInstantiate(isolate, &thrower, module_object, {},
|
|
|
|
{}) // no imports & memory
|
|
|
|
.ToHandle(&instance)) {
|
|
|
|
DCHECK(thrower.error());
|
2022-07-25 11:00:43 +00:00
|
|
|
// The only reason to fail the second instantiation should be OOM. Make
|
|
|
|
// this a proper OOM crash so that ClusterFuzz categorizes it as such.
|
|
|
|
if (strstr(thrower.error_msg(), "Out of memory")) {
|
|
|
|
V8::FatalProcessOutOfMemory(isolate, "Wasm fuzzer second instantiation",
|
|
|
|
thrower.error_msg());
|
|
|
|
}
|
2022-06-01 15:03:57 +00:00
|
|
|
FATAL("Second instantiation failed unexpectedly: %s",
|
|
|
|
thrower.error_msg());
|
|
|
|
}
|
|
|
|
DCHECK(!thrower.error());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool exception = false;
|
|
|
|
int32_t 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-09-22 19:55:42 +00:00
|
|
|
FATAL("expected: %s; got: %s", exception_text[exception_ref],
|
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 {
|
2022-02-11 16:15:23 +00:00
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
struct PrintSig {
|
|
|
|
const size_t num;
|
|
|
|
const std::function<ValueType(size_t)> getter;
|
|
|
|
};
|
2022-02-11 16:15:23 +00:00
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
PrintSig PrintParameters(const FunctionSig* sig) {
|
|
|
|
return {sig->parameter_count(), [=](size_t i) { return sig->GetParam(i); }};
|
|
|
|
}
|
2022-02-11 16:15:23 +00:00
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
PrintSig PrintReturns(const FunctionSig* sig) {
|
|
|
|
return {sig->return_count(), [=](size_t i) { return sig->GetReturn(i); }};
|
|
|
|
}
|
2022-02-11 16:15:23 +00:00
|
|
|
|
2022-06-28 13:37:03 +00:00
|
|
|
std::string index_raw(uint32_t arg) {
|
|
|
|
return arg < 128 ? std::to_string(arg)
|
|
|
|
: "wasmUnsignedLeb(" + std::to_string(arg) + ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string index(uint32_t arg) { return index_raw(arg) + ", "; }
|
|
|
|
|
|
|
|
std::string HeapTypeToJSByteEncoding(HeapType heap_type) {
|
|
|
|
switch (heap_type.representation()) {
|
|
|
|
case HeapType::kFunc:
|
|
|
|
return "kFuncRefCode";
|
|
|
|
case HeapType::kEq:
|
|
|
|
return "kEqRefCode";
|
|
|
|
case HeapType::kI31:
|
|
|
|
return "kI31RefCode";
|
2022-10-14 08:46:34 +00:00
|
|
|
case HeapType::kStruct:
|
|
|
|
return "kStructRefCode";
|
2022-06-28 13:37:03 +00:00
|
|
|
case HeapType::kArray:
|
|
|
|
return "kArrayRefCode";
|
|
|
|
case HeapType::kAny:
|
|
|
|
return "kAnyRefCode";
|
2022-07-28 09:35:25 +00:00
|
|
|
case HeapType::kExtern:
|
|
|
|
return "kExternRefCode";
|
2022-08-10 14:13:23 +00:00
|
|
|
case HeapType::kNone:
|
|
|
|
return "kNullRefCode";
|
|
|
|
case HeapType::kNoFunc:
|
|
|
|
return "kNullFuncRefCode";
|
|
|
|
case HeapType::kNoExtern:
|
|
|
|
return "kNullExternRefCode";
|
2022-06-28 13:37:03 +00:00
|
|
|
case HeapType::kBottom:
|
|
|
|
UNREACHABLE();
|
|
|
|
default:
|
|
|
|
return index_raw(heap_type.ref_index());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-11 16:15:23 +00:00
|
|
|
std::string HeapTypeToConstantName(HeapType heap_type) {
|
|
|
|
switch (heap_type.representation()) {
|
|
|
|
case HeapType::kFunc:
|
|
|
|
return "kWasmFuncRef";
|
|
|
|
case HeapType::kEq:
|
|
|
|
return "kWasmEqRef";
|
|
|
|
case HeapType::kI31:
|
|
|
|
return "kWasmI31Ref";
|
2022-10-14 08:46:34 +00:00
|
|
|
case HeapType::kStruct:
|
|
|
|
return "kWasmStructRef";
|
2022-02-11 16:15:23 +00:00
|
|
|
case HeapType::kArray:
|
|
|
|
return "kWasmArrayRef";
|
2022-07-28 09:35:25 +00:00
|
|
|
case HeapType::kExtern:
|
|
|
|
return "kWasmExternRef";
|
2022-02-11 16:15:23 +00:00
|
|
|
case HeapType::kAny:
|
|
|
|
return "kWasmAnyRef";
|
2022-08-10 14:13:23 +00:00
|
|
|
case HeapType::kNone:
|
|
|
|
return "kWasmNullRef";
|
|
|
|
case HeapType::kNoFunc:
|
|
|
|
return "kWasmNullFuncRef";
|
|
|
|
case HeapType::kNoExtern:
|
|
|
|
return "kWasmNullExternRef";
|
2022-02-11 16:15:23 +00:00
|
|
|
case HeapType::kBottom:
|
|
|
|
UNREACHABLE();
|
|
|
|
default:
|
|
|
|
return std::to_string(heap_type.ref_index());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-06 10:45:15 +00:00
|
|
|
std::string ValueTypeToConstantName(ValueType type) {
|
2020-03-12 14:29:51 +00:00
|
|
|
switch (type.kind()) {
|
2021-10-07 15:10:58 +00:00
|
|
|
case kI8:
|
|
|
|
return "kWasmI8";
|
|
|
|
case kI16:
|
|
|
|
return "kWasmI16";
|
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";
|
2022-07-01 11:50:04 +00:00
|
|
|
case kRefNull:
|
2020-07-01 06:35:04 +00:00
|
|
|
switch (type.heap_representation()) {
|
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";
|
2021-08-06 10:45:15 +00:00
|
|
|
case HeapType::kEq:
|
|
|
|
return "kWasmEqRef";
|
2022-07-28 09:35:25 +00:00
|
|
|
case HeapType::kExtern:
|
|
|
|
return "kWasmExternRef";
|
2020-11-19 14:51:14 +00:00
|
|
|
case HeapType::kAny:
|
2021-08-06 10:45:15 +00:00
|
|
|
return "kWasmAnyRef";
|
2020-11-19 14:51:14 +00:00
|
|
|
case HeapType::kBottom:
|
2022-02-11 16:15:23 +00:00
|
|
|
UNREACHABLE();
|
2022-10-14 08:46:34 +00:00
|
|
|
case HeapType::kStruct:
|
2022-01-11 12:55:55 +00:00
|
|
|
case HeapType::kArray:
|
2021-11-02 14:43:10 +00:00
|
|
|
case HeapType::kI31:
|
|
|
|
default:
|
2022-07-01 11:50:04 +00:00
|
|
|
return "wasmRefNullType(" + HeapTypeToConstantName(type.heap_type()) +
|
2022-02-11 16:15:23 +00:00
|
|
|
")";
|
2021-11-02 14:43:10 +00:00
|
|
|
}
|
2022-02-11 16:15:23 +00:00
|
|
|
case kRef:
|
|
|
|
return "wasmRefType(" + HeapTypeToConstantName(type.heap_type()) + ")";
|
|
|
|
case kRtt:
|
|
|
|
case kVoid:
|
|
|
|
case kBottom:
|
2021-08-06 10:45:15 +00:00
|
|
|
UNREACHABLE();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
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) {
|
2022-02-14 18:04:55 +00:00
|
|
|
return os.put('\'').write(name.name.begin(), name.name.size()).put('\'');
|
2018-02-01 15:18:05 +00:00
|
|
|
}
|
2021-05-19 11:01:15 +00:00
|
|
|
|
2022-06-28 13:37:03 +00:00
|
|
|
// An interface for WasmFullDecoder which appends to a stream a textual
|
|
|
|
// representation of the expression, compatible with wasm-module-builder.js.
|
2021-11-05 06:10:04 +00:00
|
|
|
class InitExprInterface {
|
|
|
|
public:
|
2022-10-24 14:27:20 +00:00
|
|
|
using ValidationTag = Decoder::FullValidationTag;
|
2022-06-16 05:27:43 +00:00
|
|
|
static constexpr DecodingMode decoding_mode = kConstantExpression;
|
2021-11-05 06:10:04 +00:00
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
struct Value : public ValueBase<ValidationTag> {
|
2021-11-05 06:10:04 +00:00
|
|
|
template <typename... Args>
|
|
|
|
explicit Value(Args&&... args) V8_NOEXCEPT
|
|
|
|
: ValueBase(std::forward<Args>(args)...) {}
|
|
|
|
};
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
using Control = ControlBase<Value, ValidationTag>;
|
2021-11-05 06:10:04 +00:00
|
|
|
using FullDecoder =
|
2022-10-24 14:27:20 +00:00
|
|
|
WasmFullDecoder<ValidationTag, InitExprInterface, decoding_mode>;
|
2021-11-05 06:10:04 +00:00
|
|
|
|
2022-06-28 13:37:03 +00:00
|
|
|
explicit InitExprInterface(StdoutStream& os) : os_(os) { os_ << "["; }
|
2021-11-05 06:10:04 +00:00
|
|
|
|
|
|
|
#define EMPTY_INTERFACE_FUNCTION(name, ...) \
|
|
|
|
V8_INLINE void name(FullDecoder* decoder, ##__VA_ARGS__) {}
|
|
|
|
INTERFACE_META_FUNCTIONS(EMPTY_INTERFACE_FUNCTION)
|
|
|
|
#undef EMPTY_INTERFACE_FUNCTION
|
|
|
|
#define UNREACHABLE_INTERFACE_FUNCTION(name, ...) \
|
|
|
|
V8_INLINE void name(FullDecoder* decoder, ##__VA_ARGS__) { UNREACHABLE(); }
|
|
|
|
INTERFACE_NON_CONSTANT_FUNCTIONS(UNREACHABLE_INTERFACE_FUNCTION)
|
|
|
|
#undef UNREACHABLE_INTERFACE_FUNCTION
|
|
|
|
|
|
|
|
void I32Const(FullDecoder* decoder, Value* result, int32_t value) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "...wasmI32Const(" << value << "), ";
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void I64Const(FullDecoder* decoder, Value* result, int64_t value) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "...wasmI64Const(" << value << "), ";
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void F32Const(FullDecoder* decoder, Value* result, float value) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "...wasmF32Const(" << value << "), ";
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void F64Const(FullDecoder* decoder, Value* result, double value) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "...wasmF64Const(" << value << "), ";
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void S128Const(FullDecoder* decoder, Simd128Immediate& imm, Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kSimdPrefix, kExprS128Const, " << std::hex;
|
|
|
|
for (int i = 0; i < kSimd128Size; i++) {
|
|
|
|
os_ << "0x" << static_cast<int>(imm.value[i]) << ", ";
|
|
|
|
}
|
|
|
|
os_ << std::dec;
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-03-04 08:03:41 +00:00
|
|
|
void BinOp(FullDecoder* decoder, WasmOpcode opcode, const Value& lhs,
|
|
|
|
const Value& rhs, Value* result) {
|
|
|
|
// TODO(12089): Implement.
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2023-01-26 06:10:35 +00:00
|
|
|
void UnOp(FullDecoder* decoder, WasmOpcode opcode, const Value& value,
|
|
|
|
Value* result) {
|
|
|
|
// TODO(12089): Implement.
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2021-11-05 06:10:04 +00:00
|
|
|
void RefNull(FullDecoder* decoder, ValueType type, Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kExprRefNull, " << HeapTypeToJSByteEncoding(type.heap_type())
|
|
|
|
<< ", ";
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void RefFunc(FullDecoder* decoder, uint32_t function_index, Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kExprRefFunc, " << index(function_index);
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GlobalGet(FullDecoder* decoder, Value* result,
|
2022-10-24 14:27:20 +00:00
|
|
|
const GlobalIndexImmediate& imm) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kWasmGlobalGet, " << index(imm.index);
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-07-05 05:27:51 +00:00
|
|
|
// The following operations assume non-rtt versions of the instructions.
|
2022-10-24 14:27:20 +00:00
|
|
|
void StructNew(FullDecoder* decoder, const StructIndexImmediate& imm,
|
|
|
|
const Value& rtt, const Value args[], Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kGCPrefix, kExprStructNew, " << index(imm.index);
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void StructNewDefault(FullDecoder* decoder, const StructIndexImmediate& imm,
|
2021-11-05 06:10:04 +00:00
|
|
|
const Value& rtt, Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kGCPrefix, kExprStructNewDefault, " << index(imm.index);
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void ArrayNew(FullDecoder* decoder, const ArrayIndexImmediate& imm,
|
2022-07-25 07:31:23 +00:00
|
|
|
const Value& length, const Value& initial_value,
|
|
|
|
const Value& rtt, Value* result) {
|
2022-07-05 05:27:51 +00:00
|
|
|
os_ << "kGCPrefix, kExprArrayNew, " << index(imm.index);
|
|
|
|
}
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void ArrayNewDefault(FullDecoder* decoder, const ArrayIndexImmediate& imm,
|
2022-07-05 05:27:51 +00:00
|
|
|
const Value& length, const Value& rtt, Value* result) {
|
|
|
|
os_ << "kGCPrefix, kExprArrayNewDefault, " << index(imm.index);
|
|
|
|
}
|
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void ArrayNewFixed(FullDecoder* decoder, const ArrayIndexImmediate& imm,
|
2022-06-27 10:34:39 +00:00
|
|
|
const base::Vector<Value>& elements, const Value& rtt,
|
|
|
|
Value* result) {
|
2022-08-25 14:16:56 +00:00
|
|
|
os_ << "kGCPrefix, kExprArrayNewFixed, " << index(imm.index)
|
2022-06-28 13:37:03 +00:00
|
|
|
<< index(static_cast<uint32_t>(elements.size()));
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-06-27 10:34:39 +00:00
|
|
|
void ArrayNewSegment(FullDecoder* decoder,
|
2022-10-24 14:27:20 +00:00
|
|
|
const ArrayIndexImmediate& array_imm,
|
|
|
|
const IndexImmediate& data_segment_imm,
|
2022-06-27 10:34:39 +00:00
|
|
|
const Value& offset_value, const Value& length_value,
|
|
|
|
const Value& rtt, Value* result) {
|
2022-01-26 08:27:39 +00:00
|
|
|
// TODO(7748): Implement.
|
|
|
|
UNIMPLEMENTED();
|
|
|
|
}
|
|
|
|
|
2022-06-16 06:22:02 +00:00
|
|
|
void I31New(FullDecoder* decoder, const Value& input, Value* result) {
|
2022-06-28 13:37:03 +00:00
|
|
|
os_ << "kGCPrefix, kExprI31New, ";
|
2022-06-16 06:22:02 +00:00
|
|
|
}
|
|
|
|
|
2022-06-28 13:37:03 +00:00
|
|
|
// Since we treat all instructions as rtt-less, we should not print rtts.
|
|
|
|
void RttCanon(FullDecoder* decoder, uint32_t type_index, Value* result) {}
|
2021-11-05 06:10:04 +00:00
|
|
|
|
2022-10-24 14:27:20 +00:00
|
|
|
void StringConst(FullDecoder* decoder, const StringConstImmediate& imm,
|
|
|
|
Value* result) {
|
2022-08-11 10:23:43 +00:00
|
|
|
os_ << "...GCInstr(kExprStringConst), " << index(imm.index);
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
|
|
|
|
2022-06-28 13:37:03 +00:00
|
|
|
void DoReturn(FullDecoder* decoder, uint32_t /*drop_values*/) { os_ << "]"; }
|
2021-11-05 06:10:04 +00:00
|
|
|
|
|
|
|
private:
|
2022-06-28 13:37:03 +00:00
|
|
|
StdoutStream& os_;
|
2021-11-05 06:10:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void DecodeAndAppendInitExpr(StdoutStream& os, Zone* zone,
|
|
|
|
const WasmModule* module,
|
2022-01-11 17:53:56 +00:00
|
|
|
ModuleWireBytes module_bytes,
|
|
|
|
ConstantExpression init, ValueType expected) {
|
|
|
|
switch (init.kind()) {
|
|
|
|
case ConstantExpression::kEmpty:
|
|
|
|
UNREACHABLE();
|
|
|
|
case ConstantExpression::kI32Const:
|
2022-06-28 13:37:03 +00:00
|
|
|
os << "wasmI32Const(" << init.i32_value() << ")";
|
2022-01-11 17:53:56 +00:00
|
|
|
break;
|
|
|
|
case ConstantExpression::kRefNull:
|
2022-06-28 13:37:03 +00:00
|
|
|
os << "[kExprRefNull, " << HeapTypeToJSByteEncoding(HeapType(init.repr()))
|
|
|
|
<< "]";
|
2022-01-11 17:53:56 +00:00
|
|
|
break;
|
|
|
|
case ConstantExpression::kRefFunc:
|
2022-06-28 13:37:03 +00:00
|
|
|
os << "[kExprRefFunc, " << index(init.index()) << "]";
|
2022-01-11 17:53:56 +00:00
|
|
|
break;
|
|
|
|
case ConstantExpression::kWireBytesRef: {
|
|
|
|
WireBytesRef ref = init.wire_bytes_ref();
|
|
|
|
auto sig = FixedSizeSignature<ValueType>::Returns(expected);
|
|
|
|
FunctionBody body(&sig, ref.offset(), module_bytes.start() + ref.offset(),
|
|
|
|
module_bytes.start() + ref.end_offset());
|
|
|
|
WasmFeatures detected;
|
2022-10-24 14:27:20 +00:00
|
|
|
WasmFullDecoder<Decoder::FullValidationTag, InitExprInterface,
|
2022-06-16 05:27:43 +00:00
|
|
|
kConstantExpression>
|
2022-06-28 13:37:03 +00:00
|
|
|
decoder(zone, module, WasmFeatures::All(), &detected, body, os);
|
2022-01-11 17:53:56 +00:00
|
|
|
decoder.DecodeFunctionBody();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-11-05 06:10:04 +00:00
|
|
|
}
|
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;
|
2022-11-16 12:55:33 +00:00
|
|
|
auto enabled_features = WasmFeatures::FromIsolate(isolate);
|
2022-12-01 17:34:14 +00:00
|
|
|
ModuleResult module_res =
|
|
|
|
DecodeWasmModule(enabled_features, wire_bytes.module_bytes(),
|
|
|
|
kVerifyFunctions, ModuleOrigin::kWasmOrigin);
|
2021-08-27 12:53:28 +00:00
|
|
|
CHECK_WITH_MSG(module_res.ok(), module_res.error().message().c_str());
|
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);
|
|
|
|
|
2021-11-05 06:10:04 +00:00
|
|
|
AccountingAllocator allocator;
|
2022-06-27 11:53:40 +00:00
|
|
|
Zone zone(&allocator, "constant expression zone");
|
2021-11-05 06:10:04 +00:00
|
|
|
|
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"
|
2021-08-06 10:45:15 +00:00
|
|
|
"// Flags: --wasm-staging --experimental-wasm-gc\n"
|
2019-08-23 15:32:23 +00:00
|
|
|
"\n"
|
2021-08-24 22:51:54 +00:00
|
|
|
"d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');\n"
|
2018-01-08 11:02:45 +00:00
|
|
|
"\n"
|
2020-02-04 10:31:29 +00:00
|
|
|
"const builder = new WasmModuleBuilder();\n";
|
2018-01-08 11:02:45 +00:00
|
|
|
|
2021-08-06 10:45:15 +00:00
|
|
|
for (int i = 0; i < static_cast<int>(module->types.size()); i++) {
|
|
|
|
if (module->has_struct(i)) {
|
|
|
|
const StructType* struct_type = module->types[i].struct_type;
|
|
|
|
os << "builder.addStruct([";
|
|
|
|
int field_count = struct_type->field_count();
|
|
|
|
for (int index = 0; index < field_count; index++) {
|
|
|
|
os << "makeField(" << ValueTypeToConstantName(struct_type->field(index))
|
|
|
|
<< ", " << (struct_type->mutability(index) ? "true" : "false")
|
|
|
|
<< ")";
|
2021-11-05 06:10:04 +00:00
|
|
|
if (index + 1 < field_count) os << ", ";
|
2021-08-06 10:45:15 +00:00
|
|
|
}
|
2021-11-05 06:10:04 +00:00
|
|
|
os << "]);\n";
|
2021-08-06 10:45:15 +00:00
|
|
|
} else if (module->has_array(i)) {
|
|
|
|
const ArrayType* array_type = module->types[i].array_type;
|
|
|
|
os << "builder.addArray("
|
2021-11-05 06:10:04 +00:00
|
|
|
<< ValueTypeToConstantName(array_type->element_type()) << ", "
|
2021-08-06 10:45:15 +00:00
|
|
|
<< (array_type->mutability() ? "true" : "false") << ");\n";
|
|
|
|
} else {
|
|
|
|
DCHECK(module->has_signature(i));
|
|
|
|
const FunctionSig* sig = module->types[i].function_sig;
|
|
|
|
os << "builder.addType(makeSig(" << PrintParameters(sig) << ", "
|
|
|
|
<< PrintReturns(sig) << "));\n";
|
|
|
|
}
|
2018-11-26 13:05:51 +00:00
|
|
|
}
|
|
|
|
|
2022-02-14 18:04:55 +00:00
|
|
|
for (WasmImport imported : module->import_table) {
|
|
|
|
// TODO(wasm): Support other imports when needed.
|
|
|
|
CHECK_EQ(kExternalFunction, imported.kind);
|
|
|
|
auto module_name = PrintName(wire_bytes, imported.module_name);
|
|
|
|
auto field_name = PrintName(wire_bytes, imported.field_name);
|
|
|
|
int sig_index = module->functions[imported.index].sig_index;
|
|
|
|
os << "builder.addImport(" << module_name << ", " << field_name << ", "
|
|
|
|
<< sig_index << " /* sig */);\n";
|
|
|
|
}
|
|
|
|
|
2022-02-11 16:15:23 +00:00
|
|
|
if (module->has_memory) {
|
|
|
|
os << "builder.addMemory(" << module->initial_pages;
|
|
|
|
if (module->has_maximum_pages) {
|
|
|
|
os << ", " << module->maximum_pages;
|
|
|
|
} else {
|
|
|
|
os << ", undefined";
|
|
|
|
}
|
|
|
|
os << ", " << (module->mem_export ? "true" : "false");
|
|
|
|
if (module->has_shared_memory) {
|
|
|
|
os << ", true";
|
|
|
|
}
|
|
|
|
os << ");\n";
|
|
|
|
}
|
|
|
|
|
2022-02-15 11:08:51 +00:00
|
|
|
for (WasmDataSegment segment : module->data_segments) {
|
|
|
|
base::Vector<const uint8_t> data = wire_bytes.module_bytes().SubVector(
|
|
|
|
segment.source.offset(), segment.source.end_offset());
|
|
|
|
if (segment.active) {
|
|
|
|
// TODO(wasm): Add other expressions when needed.
|
|
|
|
CHECK_EQ(ConstantExpression::kI32Const, segment.dest_addr.kind());
|
|
|
|
os << "builder.addDataSegment(" << segment.dest_addr.i32_value() << ", ";
|
|
|
|
} else {
|
|
|
|
os << "builder.addPassiveDataSegment(";
|
|
|
|
}
|
|
|
|
os << "[";
|
|
|
|
if (!data.empty()) {
|
|
|
|
os << unsigned{data[0]};
|
|
|
|
for (unsigned byte : data + 1) os << ", " << byte;
|
|
|
|
}
|
|
|
|
os << "]);\n";
|
|
|
|
}
|
|
|
|
|
2022-02-11 16:15:23 +00:00
|
|
|
for (WasmGlobal& global : module->globals) {
|
|
|
|
os << "builder.addGlobal(" << ValueTypeToConstantName(global.type) << ", "
|
|
|
|
<< global.mutability << ", ";
|
|
|
|
DecodeAndAppendInitExpr(os, &zone, module, wire_bytes, global.init,
|
|
|
|
global.type);
|
|
|
|
os << ");\n";
|
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
Zone tmp_zone(isolate->allocator(), ZONE_NAME);
|
|
|
|
|
2021-08-23 11:02:30 +00:00
|
|
|
// TODO(9495): Add support for tables with explicit initializers.
|
2018-11-26 13:08:20 +00:00
|
|
|
for (const WasmTable& table : module->tables) {
|
2021-08-23 11:02:30 +00:00
|
|
|
os << "builder.addTable(" << ValueTypeToConstantName(table.type) << ", "
|
|
|
|
<< table.initial_size << ", "
|
|
|
|
<< (table.has_maximum_size ? std::to_string(table.maximum_size)
|
|
|
|
: "undefined")
|
|
|
|
<< ", undefined)\n";
|
2018-11-26 13:08:20 +00:00
|
|
|
}
|
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 << ", ";
|
2021-11-05 06:10:04 +00:00
|
|
|
DecodeAndAppendInitExpr(os, &zone, module, wire_bytes,
|
|
|
|
elem_segment.offset, kWasmI32);
|
2021-06-30 20:35:23 +00:00
|
|
|
os << ", ";
|
2021-05-19 11:01:15 +00:00
|
|
|
}
|
|
|
|
os << "[";
|
|
|
|
for (uint32_t i = 0; i < elem_segment.entries.size(); i++) {
|
2022-01-04 10:23:23 +00:00
|
|
|
if (elem_segment.element_type == WasmElemSegment::kExpressionElements) {
|
|
|
|
DecodeAndAppendInitExpr(os, &zone, module, wire_bytes,
|
2022-01-11 17:53:56 +00:00
|
|
|
elem_segment.entries[i], elem_segment.type);
|
2022-01-04 10:23:23 +00:00
|
|
|
} else {
|
2022-01-11 17:53:56 +00:00
|
|
|
os << elem_segment.entries[i].index();
|
2022-01-04 10:23:23 +00:00
|
|
|
}
|
2021-05-19 11:01:15 +00:00
|
|
|
if (i < elem_segment.entries.size() - 1) os << ", ";
|
2018-11-26 13:08:20 +00:00
|
|
|
}
|
2022-01-04 10:23:23 +00:00
|
|
|
os << "], "
|
|
|
|
<< (elem_segment.element_type == WasmElemSegment::kExpressionElements
|
|
|
|
? ValueTypeToConstantName(elem_segment.type)
|
|
|
|
: "undefined")
|
|
|
|
<< ");\n";
|
2018-11-26 13:08:20 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 10:10:00 +00:00
|
|
|
for (const WasmTag& tag : module->tags) {
|
|
|
|
os << "builder.addTag(makeSig(" << PrintParameters(tag.ToFunctionSig())
|
|
|
|
<< ", []));\n";
|
|
|
|
}
|
|
|
|
|
2018-01-08 11:02:45 +00:00
|
|
|
for (const WasmFunction& func : module->functions) {
|
2022-02-14 18:04:55 +00:00
|
|
|
if (func.imported) continue;
|
|
|
|
|
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.
|
2022-10-13 08:36:53 +00:00
|
|
|
BodyLocalDecls decls;
|
2022-11-07 11:41:40 +00:00
|
|
|
DecodeLocalDecls(enabled_features, &decls, func_code.begin(),
|
2022-10-13 08:36:53 +00:00
|
|
|
func_code.end(), &tmp_zone);
|
|
|
|
if (decls.num_locals) {
|
2020-02-04 10:31:29 +00:00
|
|
|
os << " ";
|
2022-10-13 08:36:53 +00:00
|
|
|
for (size_t pos = 0, count = 1, locals = decls.num_locals; pos < locals;
|
|
|
|
pos += count, count = 1) {
|
|
|
|
ValueType type = decls.local_types[pos];
|
|
|
|
while (pos + count < locals && decls.local_types[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;
|
2022-02-14 18:04:55 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-16 17:01:23 +00:00
|
|
|
void EnableExperimentalWasmFeatures(v8::Isolate* isolate) {
|
|
|
|
struct EnableExperimentalWasmFeatures {
|
|
|
|
explicit EnableExperimentalWasmFeatures(v8::Isolate* isolate) {
|
|
|
|
// Enable all staged features.
|
|
|
|
#define ENABLE_STAGED_FEATURES(feat, ...) \
|
2022-08-29 10:33:33 +00:00
|
|
|
v8_flags.experimental_wasm_##feat = true;
|
2020-10-05 14:50:59 +00:00
|
|
|
FOREACH_WASM_STAGING_FEATURE_FLAG(ENABLE_STAGED_FEATURES)
|
|
|
|
#undef ENABLE_STAGED_FEATURES
|
2022-11-16 17:01:23 +00:00
|
|
|
|
|
|
|
// Enable non-staged experimental features that we also want to fuzz.
|
|
|
|
v8_flags.experimental_wasm_gc = true;
|
|
|
|
|
|
|
|
// Enforce implications from enabling features.
|
|
|
|
FlagList::EnforceFlagImplications();
|
|
|
|
|
|
|
|
// Last, install any conditional features. Implications are handled
|
|
|
|
// implicitly.
|
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.
|
2022-11-16 17:01:23 +00:00
|
|
|
static EnableExperimentalWasmFeatures one_time_enable_experimental_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
|
|
|
|
2022-11-16 12:55:33 +00:00
|
|
|
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.
|
2022-11-16 17:01:23 +00:00
|
|
|
EnableExperimentalWasmFeatures(isolate);
|
2021-03-23 08:02:32 +00:00
|
|
|
|
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);
|
2021-11-16 09:41:25 +00:00
|
|
|
|
|
|
|
// The first byte specifies some internal configuration, like which function
|
|
|
|
// is compiled with with compiler, and other flags.
|
|
|
|
uint8_t configuration_byte = data.empty() ? 0 : data[0];
|
2021-07-08 10:24:30 +00:00
|
|
|
if (!data.empty()) data += 1;
|
2021-11-16 09:41:25 +00:00
|
|
|
|
|
|
|
// Derive the compiler configuration for the first four functions from the
|
|
|
|
// configuration byte, to choose for each function between:
|
|
|
|
// 0: TurboFan
|
|
|
|
// 1: Liftoff
|
|
|
|
// 2: Liftoff for debugging
|
|
|
|
uint8_t tier_mask = 0;
|
|
|
|
uint8_t debug_mask = 0;
|
|
|
|
for (int i = 0; i < 4; ++i, configuration_byte /= 3) {
|
|
|
|
int compiler_config = configuration_byte % 3;
|
|
|
|
tier_mask |= (compiler_config == 0) << i;
|
|
|
|
debug_mask |= (compiler_config == 2) << i;
|
|
|
|
}
|
|
|
|
// Note: After dividing by 3 for 4 times, configuration_byte is within [0, 3].
|
|
|
|
|
2022-08-29 10:33:33 +00:00
|
|
|
FlagScope<bool> turbo_mid_tier_regalloc(
|
|
|
|
&v8_flags.turbo_force_mid_tier_regalloc, configuration_byte == 0);
|
2021-11-16 09:41:25 +00:00
|
|
|
|
2022-12-05 11:59:26 +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
|
|
|
|
2022-08-29 10:33:33 +00:00
|
|
|
if (require_valid && v8_flags.wasm_fuzzer_gen_test) {
|
2021-08-05 13:58:57 +00:00
|
|
|
GenerateTestCase(i_isolate, wire_bytes, true);
|
|
|
|
}
|
|
|
|
|
2022-11-16 12:55:33 +00:00
|
|
|
auto enabled_features = 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.
|
2022-08-29 10:33:33 +00:00
|
|
|
FlagScope<bool> liftoff(&v8_flags.liftoff, true);
|
|
|
|
FlagScope<bool> no_tier_up(&v8_flags.wasm_tier_up, false);
|
|
|
|
FlagScope<int> tier_mask_scope(&v8_flags.wasm_tier_mask_for_testing,
|
|
|
|
tier_mask);
|
|
|
|
FlagScope<int> debug_mask_scope(&v8_flags.wasm_debug_mask_for_testing,
|
2021-04-06 15:42:44 +00:00
|
|
|
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();
|
2022-08-29 10:33:33 +00:00
|
|
|
if (!require_valid && v8_flags.wasm_fuzzer_gen_test) {
|
2018-01-08 11:02:45 +00:00
|
|
|
GenerateTestCase(i_isolate, wire_bytes, compiles);
|
2017-05-08 09:22:54 +00:00
|
|
|
}
|
|
|
|
|
2021-10-12 14:49:04 +00:00
|
|
|
std::string error_message;
|
|
|
|
bool result = GetWasmEngine()->SyncValidate(i_isolate, enabled_features,
|
|
|
|
wire_bytes, &error_message);
|
2021-10-07 10:16:35 +00:00
|
|
|
|
2021-10-12 14:49:04 +00:00
|
|
|
CHECK_EQ(compiles, result);
|
2021-10-07 10:16:35 +00:00
|
|
|
CHECK_WITH_MSG(
|
2021-10-12 14:49:04 +00:00
|
|
|
!require_valid || result,
|
|
|
|
("Generated module should validate, but got: " + error_message).c_str());
|
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
|
|
|
|
2022-12-05 11:59:26 +00:00
|
|
|
ExecuteAgainstReference(i_isolate, compiled_module.ToHandleChecked(),
|
|
|
|
kDefaultMaxFuzzerExecutedInstructions);
|
2017-05-08 09:22:54 +00:00
|
|
|
}
|
2017-09-01 13:20:46 +00:00
|
|
|
|
2022-11-16 12:55:33 +00:00
|
|
|
} // namespace v8::internal::wasm::fuzzer
|