| Index: runtime/bin/snapshot_utils.h
|
| diff --git a/runtime/bin/snapshot_utils.h b/runtime/bin/snapshot_utils.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fa667776f00b33332488932c5c65bbea9db2c0d9
|
| --- /dev/null
|
| +++ b/runtime/bin/snapshot_utils.h
|
| @@ -0,0 +1,34 @@
|
| +// 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 Snapshot {
|
| + public:
|
| + static void GenerateScript(const char* snapshot_filename);
|
| + static void GenerateAppJIT(const char* snapshot_filename);
|
| + static void GenerateAppAOTAsBlobs(const char* snapshot_filename);
|
| + static void GenerateAppAOTAsAssembly(const char* snapshot_filename);
|
| +
|
| + static bool ReadAppSnapshot(const char* script_name,
|
| + const uint8_t** vm_data_buffer,
|
| + const uint8_t** vm_instructions_buffer,
|
| + const uint8_t** isolate_data_buffer,
|
| + const uint8_t** isolate_instructions_buffer);
|
| +
|
| + private:
|
| + DISALLOW_ALLOCATION();
|
| + DISALLOW_IMPLICIT_CONSTRUCTORS(Snapshot);
|
| +};
|
| +
|
| +} // namespace bin
|
| +} // namespace dart
|
| +
|
| +#endif // RUNTIME_BIN_SNAPSHOT_UTILS_H_
|
|
|