summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-serialization.h
blob: 352195b2b0b287aab173367b2b29ffdbafd06240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Copyright 2017 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.

#ifndef V8_WASM_WASM_SERIALIZATION_H_
#define V8_WASM_WASM_SERIALIZATION_H_

#include "src/wasm/wasm-objects.h"

namespace v8 {
namespace internal {
namespace wasm {

size_t GetSerializedNativeModuleSize(Isolate* isolate,
                                     NativeModule* native_module);

bool SerializeNativeModule(Isolate* isolate, NativeModule* native_module,
                           Vector<byte> buffer);

MaybeHandle<WasmModuleObject> DeserializeNativeModule(
    Isolate* isolate, Vector<const byte> data, Vector<const byte> wire_bytes);

}  // namespace wasm
}  // namespace internal
}  // namespace v8

#endif  // V8_WASM_WASM_SERIALIZATION_H_