wasm-serialization.h 1.53 KB
Newer Older
1 2 3 4
// 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.

5 6
#ifndef V8_WASM_WASM_SERIALIZATION_H_
#define V8_WASM_WASM_SERIALIZATION_H_
7 8 9 10 11 12 13

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

namespace v8 {
namespace internal {
namespace wasm {

14 15 16
// Support for serializing WebAssembly {NativeModule} objects. This class takes
// a snapshot of the module state at instantiation, and other code that modifies
// the module after that won't affect the serialized result.
17
class V8_EXPORT_PRIVATE WasmSerializer {
18
 public:
19
  explicit WasmSerializer(NativeModule* native_module);
20 21 22 23 24 25 26 27 28 29 30 31 32

  // Measure the required buffer size needed for serialization.
  size_t GetSerializedNativeModuleSize() const;

  // Serialize the {NativeModule} into the provided {buffer}. Returns true on
  // success and false if the given buffer it too small for serialization.
  bool SerializeNativeModule(Vector<byte> buffer) const;

 private:
  NativeModule* native_module_;
  std::vector<WasmCode*> code_table_;
};

33 34
// Support for deserializing WebAssembly {NativeModule} objects.
// Checks the version header of the data against the current version.
35
bool IsSupportedVersion(Vector<const byte> data);
36

37
// Deserializes the given data to create a Wasm module object.
38
MaybeHandle<WasmModuleObject> DeserializeNativeModule(
39
    Isolate* isolate, Vector<const byte> data, Vector<const byte> wire_bytes);
40 41 42 43 44

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

45
#endif  // V8_WASM_WASM_SERIALIZATION_H_