2019-07-11 09:18:58 +00:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2022-01-21 11:58:08 +00:00
|
|
|
#include "src/execution/isolate.h"
|
|
|
|
#include "src/wasm/c-api.h"
|
2019-07-11 09:18:58 +00:00
|
|
|
#include "test/wasm-api-tests/wasm-api-test.h"
|
|
|
|
|
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
|
|
|
namespace wasm {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool g_callback_called;
|
|
|
|
|
2019-08-19 14:35:47 +00:00
|
|
|
own<Trap> Callback(const Val args[], Val results[]) {
|
2019-07-11 09:18:58 +00:00
|
|
|
g_callback_called = true;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
TEST_F(WasmCapiTest, Serialize) {
|
|
|
|
FunctionSig sig(0, 0, nullptr);
|
2021-06-17 15:43:55 +00:00
|
|
|
uint32_t callback_index =
|
|
|
|
builder()->AddImport(base::CStrVector("callback"), &sig);
|
2019-07-11 09:18:58 +00:00
|
|
|
byte code[] = {WASM_CALL_FUNCTION0(callback_index)};
|
2021-06-17 15:43:55 +00:00
|
|
|
AddExportedFunction(base::CStrVector("run"), code, sizeof(code), &sig);
|
2019-07-11 09:18:58 +00:00
|
|
|
Compile();
|
|
|
|
|
|
|
|
vec<byte_t> serialized = module()->serialize();
|
2020-08-11 11:36:55 +00:00
|
|
|
EXPECT_TRUE(serialized); // Serialization succeeded.
|
2022-01-21 11:58:08 +00:00
|
|
|
|
|
|
|
// We reset the module and collect it to make sure the NativeModuleCache does
|
|
|
|
// not contain it anymore. Otherwise deserialization will not happen.
|
|
|
|
ResetModule();
|
2022-11-03 11:09:55 +00:00
|
|
|
Heap* heap =
|
|
|
|
reinterpret_cast<::wasm::StoreImpl*>(store())->i_isolate()->heap();
|
|
|
|
heap->PreciseCollectAllGarbage(Heap::kForcedGC,
|
|
|
|
GarbageCollectionReason::kTesting);
|
|
|
|
heap->PreciseCollectAllGarbage(Heap::kForcedGC,
|
|
|
|
GarbageCollectionReason::kTesting);
|
2019-08-19 14:35:47 +00:00
|
|
|
own<Module> deserialized = Module::deserialize(store(), serialized);
|
2019-07-11 09:18:58 +00:00
|
|
|
|
2022-01-21 11:58:08 +00:00
|
|
|
// Try to serialize the module again. This can fail if deserialization does
|
|
|
|
// not set up a clean state.
|
|
|
|
deserialized->serialize();
|
|
|
|
|
2019-08-19 14:35:47 +00:00
|
|
|
own<FuncType> callback_type =
|
|
|
|
FuncType::make(ownvec<ValType>::make(), ownvec<ValType>::make());
|
|
|
|
own<Func> callback = Func::make(store(), callback_type.get(), Callback);
|
2019-07-11 09:18:58 +00:00
|
|
|
Extern* imports[] = {callback.get()};
|
|
|
|
|
2019-08-19 14:35:47 +00:00
|
|
|
own<Instance> instance = Instance::make(store(), deserialized.get(), imports);
|
|
|
|
ownvec<Extern> exports = instance->exports();
|
2019-07-11 09:18:58 +00:00
|
|
|
Func* run = exports[0]->func();
|
|
|
|
g_callback_called = false;
|
|
|
|
run->call();
|
|
|
|
EXPECT_TRUE(g_callback_called);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace wasm
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace v8
|