4b1180a39d
'--snapshot_kind=script --snapshot=xyz' produce a kernel dill file which is the equivalent of a script snapshot in Dart2 world. Change-Id: I7ba66eb86d9ecdfe1426b8b22b8d673598c4b71f Reviewed-on: https://dart-review.googlesource.com/52740 Commit-Queue: Siva Annamalai <asiva@google.com> Reviewed-by: Ryan Macnak <rmacnak@google.com>
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#ifndef RUNTIME_BIN_SNAPSHOT_UTILS_H_
|
|
#define RUNTIME_BIN_SNAPSHOT_UTILS_H_
|
|
|
|
#include "platform/globals.h"
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
class AppSnapshot {
|
|
public:
|
|
virtual ~AppSnapshot() {}
|
|
|
|
virtual void SetBuffers(const uint8_t** vm_data_buffer,
|
|
const uint8_t** vm_instructions_buffer,
|
|
const uint8_t** isolate_data_buffer,
|
|
const uint8_t** isolate_instructions_buffer) = 0;
|
|
|
|
protected:
|
|
AppSnapshot() {}
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(AppSnapshot);
|
|
};
|
|
|
|
class Snapshot {
|
|
public:
|
|
static void GenerateKernel(const char* snapshot_filename,
|
|
const char* script_name,
|
|
bool strong,
|
|
const char* package_config);
|
|
static void GenerateScript(const char* snapshot_filename);
|
|
static void GenerateAppJIT(const char* snapshot_filename);
|
|
static void GenerateAppAOTAsBlobs(const char* snapshot_filename,
|
|
const uint8_t* shared_data,
|
|
const uint8_t* shared_instructions);
|
|
static void GenerateAppAOTAsAssembly(const char* snapshot_filename);
|
|
|
|
static AppSnapshot* TryReadAppSnapshot(const char* script_name);
|
|
|
|
private:
|
|
DISALLOW_ALLOCATION();
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
|
|
};
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|
|
|
|
#endif // RUNTIME_BIN_SNAPSHOT_UTILS_H_
|