mksnapshot.cc 6.09 KB
Newer Older
1
// Copyright 2006-2008 the V8 project authors. All rights reserved.
2 3
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4

5
#include <errno.h>
6
#include <signal.h>
7
#include <stdio.h>
8

9
#include "include/libplatform/libplatform.h"
10
#include "src/assembler.h"
11
#include "src/base/platform/platform.h"
12
#include "src/flags.h"
13
#include "src/list.h"
14
#include "src/msan.h"
15
#include "src/snapshot/natives.h"
16 17
#include "src/snapshot/partial-serializer.h"
#include "src/snapshot/startup-serializer.h"
18

19 20
using namespace v8;

21 22
class SnapshotWriter {
 public:
23
  SnapshotWriter() : snapshot_cpp_path_(NULL), snapshot_blob_path_(NULL) {}
24

25 26
  void SetSnapshotFile(const char* snapshot_cpp_file) {
    snapshot_cpp_path_ = snapshot_cpp_file;
27
  }
28

29 30
  void SetStartupBlobFile(const char* snapshot_blob_file) {
    snapshot_blob_path_ = snapshot_blob_file;
31 32
  }

33
  void WriteSnapshot(v8::StartupData blob) const {
34 35 36 37
    // TODO(crbug/633159): if we crash before the files have been fully created,
    // we end up with a corrupted snapshot file. The build step would succeed,
    // but the build target is unusable. Ideally we would write out temporary
    // files and only move them to the final destination as last step.
38 39 40 41

    // Tell MSan to ignore uninitialized padding in the blob.
    MSAN_MEMORY_IS_INITIALIZED(blob.data, blob.raw_size);

42 43
    i::Vector<const i::byte> blob_vector(
        reinterpret_cast<const i::byte*>(blob.data), blob.raw_size);
44
    MaybeWriteSnapshotFile(blob_vector);
45
    MaybeWriteStartupBlob(blob_vector);
46 47 48
  }

 private:
49
  void MaybeWriteStartupBlob(const i::Vector<const i::byte>& blob) const {
50
    if (!snapshot_blob_path_) return;
51

52 53 54
    FILE* fp = GetFileDescriptorOrDie(snapshot_blob_path_);
    size_t written = fwrite(blob.begin(), 1, blob.length(), fp);
    fclose(fp);
55
    if (written != static_cast<size_t>(blob.length())) {
56
      i::PrintF("Writing snapshot file failed.. Aborting.\n");
57
      remove(snapshot_blob_path_);
58 59 60 61
      exit(1);
    }
  }

62
  void MaybeWriteSnapshotFile(const i::Vector<const i::byte>& blob) const {
63 64 65 66 67 68 69
    if (!snapshot_cpp_path_) return;

    FILE* fp = GetFileDescriptorOrDie(snapshot_cpp_path_);

    WriteFilePrefix(fp);
    WriteData(fp, blob);
    WriteFileSuffix(fp);
70

71
    fclose(fp);
72 73
  }

74 75 76 77 78 79 80
  static void WriteFilePrefix(FILE* fp) {
    fprintf(fp, "// Autogenerated snapshot file. Do not edit.\n\n");
    fprintf(fp, "#include \"src/v8.h\"\n");
    fprintf(fp, "#include \"src/base/platform/platform.h\"\n\n");
    fprintf(fp, "#include \"src/snapshot/snapshot.h\"\n\n");
    fprintf(fp, "namespace v8 {\n");
    fprintf(fp, "namespace internal {\n\n");
81 82
  }

83 84 85 86 87 88
  static void WriteFileSuffix(FILE* fp) {
    fprintf(fp, "const v8::StartupData* Snapshot::DefaultSnapshotBlob() {\n");
    fprintf(fp, "  return &blob;\n");
    fprintf(fp, "}\n\n");
    fprintf(fp, "}  // namespace internal\n");
    fprintf(fp, "}  // namespace v8\n");
89 90
  }

91 92 93 94 95 96 97
  static void WriteData(FILE* fp, const i::Vector<const i::byte>& blob) {
    fprintf(fp, "static const byte blob_data[] = {\n");
    WriteSnapshotData(fp, blob);
    fprintf(fp, "};\n");
    fprintf(fp, "static const int blob_size = %d;\n", blob.length());
    fprintf(fp, "static const v8::StartupData blob =\n");
    fprintf(fp, "{ (const char*) blob_data, blob_size };\n");
98 99
  }

100 101
  static void WriteSnapshotData(FILE* fp,
                                const i::Vector<const i::byte>& blob) {
102
    for (int i = 0; i < blob.length(); i++) {
103 104 105
      if ((i & 0x1f) == 0x1f) fprintf(fp, "\n");
      if (i > 0) fprintf(fp, ",");
      fprintf(fp, "%u", static_cast<unsigned char>(blob.at(i)));
106
    }
107
    fprintf(fp, "\n");
108 109
  }

110
  static FILE* GetFileDescriptorOrDie(const char* filename) {
111
    FILE* fp = base::OS::FOpen(filename, "wb");
112 113 114 115 116 117
    if (fp == NULL) {
      i::PrintF("Unable to open file \"%s\" for writing.\n", filename);
      exit(1);
    }
    return fp;
  }
118

119 120
  const char* snapshot_cpp_path_;
  const char* snapshot_blob_path_;
121
};
122

123
char* GetExtraCode(char* filename, const char* description) {
124
  if (filename == NULL || strlen(filename) == 0) return NULL;
125
  ::printf("Loading script for %s: %s\n", description, filename);
126 127 128 129 130 131
  FILE* file = base::OS::FOpen(filename, "rb");
  if (file == NULL) {
    fprintf(stderr, "Failed to open '%s': errno %d\n", filename, errno);
    exit(1);
  }
  fseek(file, 0, SEEK_END);
132
  size_t size = ftell(file);
133 134 135
  rewind(file);
  char* chars = new char[size + 1];
  chars[size] = '\0';
136 137 138
  for (size_t i = 0; i < size;) {
    size_t read = fread(&chars[i], 1, size - i, file);
    if (ferror(file)) {
139 140 141 142 143 144 145 146 147 148
      fprintf(stderr, "Failed to read '%s': errno %d\n", filename, errno);
      exit(1);
    }
    i += read;
  }
  fclose(file);
  return chars;
}


149
int main(int argc, char** argv) {
150 151
  // Make mksnapshot runs predictable to create reproducible snapshots.
  i::FLAG_predictable = true;
152

153 154
  // Print the usage if an error occurs when parsing the command line
  // flags or if the help flag is set.
155
  int result = i::FlagList::SetFlagsFromCommandLine(&argc, argv, true);
156
  if (result > 0 || (argc > 3) || i::FLAG_help) {
157 158
    ::printf("Usage: %s --startup_src=... --startup_blob=... [extras]\n",
             argv[0]);
159
    i::FlagList::PrintHelp();
160
    return !i::FLAG_help;
161
  }
162 163

  i::CpuFeatures::Probe(true);
164
  V8::InitializeICUDefaultLocation(argv[0]);
165 166 167 168
  v8::Platform* platform = v8::platform::CreateDefaultPlatform();
  v8::V8::InitializePlatform(platform);
  v8::V8::Initialize();

169
  {
170 171
    SnapshotWriter writer;
    if (i::FLAG_startup_src) writer.SetSnapshotFile(i::FLAG_startup_src);
172
    if (i::FLAG_startup_blob) writer.SetStartupBlobFile(i::FLAG_startup_blob);
173 174 175 176 177 178 179 180 181 182 183 184 185

    char* embed_script = GetExtraCode(argc >= 2 ? argv[1] : NULL, "embedding");
    StartupData blob = v8::V8::CreateSnapshotDataBlob(embed_script);
    delete[] embed_script;

    char* warmup_script = GetExtraCode(argc >= 3 ? argv[2] : NULL, "warm up");
    if (warmup_script) {
      StartupData cold = blob;
      blob = v8::V8::WarmUpSnapshotDataBlob(cold, warmup_script);
      delete[] cold.data;
      delete[] warmup_script;
    }

186 187 188
    CHECK(blob.data);
    writer.WriteSnapshot(blob);
    delete[] blob.data;
189
  }
190

191
  V8::Dispose();
192 193
  V8::ShutdownPlatform();
  delete platform;
194 195
  return 0;
}