startup-deserializer.h 1.07 KB
Newer Older
1 2 3 4 5 6 7 8
// 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_SNAPSHOT_STARTUP_DESERIALIZER_H_
#define V8_SNAPSHOT_STARTUP_DESERIALIZER_H_

#include "src/snapshot/deserializer.h"
9
#include "src/snapshot/snapshot-data.h"
10 11 12 13 14 15
#include "src/snapshot/snapshot.h"

namespace v8 {
namespace internal {

// Initializes an isolate with context-independent data from a given snapshot.
16
class StartupDeserializer final : public Deserializer<Isolate> {
17
 public:
18 19 20 21 22
  explicit StartupDeserializer(Isolate* isolate,
                               const SnapshotData* startup_data,
                               bool can_rehash)
      : Deserializer(isolate, startup_data->Payload(),
                     startup_data->GetMagicNumber(), false, can_rehash) {}
23 24

  // Deserialize the snapshot into an empty heap.
25
  void DeserializeIntoIsolate();
26

27
 private:
28 29
  void FlushICache();
  void LogNewMapEvents();
30 31 32 33 34 35
};

}  // namespace internal
}  // namespace v8

#endif  // V8_SNAPSHOT_STARTUP_DESERIALIZER_H_