natives-external.cc 7.03 KB
Newer Older
1 2 3 4
// Copyright 2014 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
#include "src/snapshot/natives.h"
6

7
#include "src/base/logging.h"
8 9
#include "src/list.h"
#include "src/list-inl.h"
10
#include "src/snapshot/snapshot-source-sink.h"
11 12
#include "src/vector.h"

13 14 15 16 17
#ifndef V8_USE_EXTERNAL_STARTUP_DATA
#error natives-external.cc is used only for the external snapshot build.
#endif  // V8_USE_EXTERNAL_STARTUP_DATA


18 19 20 21 22 23 24 25 26 27 28 29 30
namespace v8 {
namespace internal {


/**
 * NativesStore stores the 'native' (builtin) JS libraries.
 *
 * NativesStore needs to be initialized before using V8, usually by the
 * embedder calling v8::SetNativesDataBlob, which calls SetNativesFromFile
 * below.
 */
class NativesStore {
 public:
31 32 33 34 35
  ~NativesStore() {
    for (int i = 0; i < native_names_.length(); i++) {
      native_names_[i].Dispose();
    }
  }
36

37
  int GetBuiltinsCount() { return native_ids_.length(); }
38
  int GetDebuggerCount() { return debugger_count_; }
39

40
  Vector<const char> GetScriptSource(int index) {
41 42 43
    return native_source_[index];
  }

44 45
  Vector<const char> GetScriptName(int index) { return native_names_[index]; }

46 47 48 49 50
  int GetIndex(const char* id) {
    for (int i = 0; i < native_ids_.length(); ++i) {
      int native_id_length = native_ids_[i].length();
      if ((static_cast<int>(strlen(id)) == native_id_length) &&
          (strncmp(id, native_ids_[i].start(), native_id_length) == 0)) {
51 52 53
        return i;
      }
    }
54
    DCHECK(false);
55 56 57
    return -1;
  }

58 59 60
  Vector<const char> GetScriptsSource() {
    DCHECK(false);  // Not implemented.
    return Vector<const char>();
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
  }

  static NativesStore* MakeFromScriptsSource(SnapshotByteSource* source) {
    NativesStore* store = new NativesStore;

    // We expect the libraries in the following format:
    //   int: # of debugger sources.
    //   2N blobs: N pairs of source name + actual source.
    //   then, repeat for non-debugger sources.
    int debugger_count = source->GetInt();
    for (int i = 0; i < debugger_count; ++i)
      store->ReadNameAndContentPair(source);
    int library_count = source->GetInt();
    for (int i = 0; i < library_count; ++i)
      store->ReadNameAndContentPair(source);

    store->debugger_count_ = debugger_count;
    return store;
  }

 private:
  NativesStore() : debugger_count_(0) {}

84
  Vector<const char> NameFromId(const byte* id, int id_length) {
85 86 87 88 89 90 91 92
    const char native[] = "native ";
    const char extension[] = ".js";
    Vector<char> name(Vector<char>::New(id_length + sizeof(native) - 1 +
                                        sizeof(extension) - 1));
    memcpy(name.start(), native, sizeof(native) - 1);
    memcpy(name.start() + sizeof(native) - 1, id, id_length);
    memcpy(name.start() + sizeof(native) - 1 + id_length, extension,
           sizeof(extension) - 1);
93 94 95
    return Vector<const char>::cast(name);
  }

96
  void ReadNameAndContentPair(SnapshotByteSource* bytes) {
97
    const byte* id;
98
    const byte* source;
99 100 101 102 103 104 105 106
    int id_length = bytes->GetBlob(&id);
    int source_length = bytes->GetBlob(&source);
    Vector<const char> id_vector(reinterpret_cast<const char*>(id), id_length);
    Vector<const char> source_vector(reinterpret_cast<const char*>(source),
                                     source_length);
    native_ids_.Add(id_vector);
    native_source_.Add(source_vector);
    native_names_.Add(NameFromId(id, id_length));
107 108
  }

109
  List<Vector<const char> > native_ids_;
110 111 112 113 114 115 116 117 118 119 120 121
  List<Vector<const char> > native_names_;
  List<Vector<const char> > native_source_;
  int debugger_count_;

  DISALLOW_COPY_AND_ASSIGN(NativesStore);
};


template<NativeType type>
class NativesHolder {
 public:
  static NativesStore* get() {
122
    CHECK(holder_);
123 124 125
    return holder_;
  }
  static void set(NativesStore* store) {
126
    CHECK(store);
127 128
    holder_ = store;
  }
129
  static bool empty() { return holder_ == NULL; }
130 131
  static void Dispose() {
    delete holder_;
132
    holder_ = NULL;
133
  }
134 135 136 137 138 139 140 141 142

 private:
  static NativesStore* holder_;
};

template<NativeType type>
NativesStore* NativesHolder<type>::holder_ = NULL;


143 144 145 146 147 148 149 150 151 152 153
// The natives blob. Memory is owned by caller.
static StartupData* natives_blob_ = NULL;


/**
 * Read the Natives blob, as previously set by SetNativesFromFile.
 */
void ReadNatives() {
  if (natives_blob_ && NativesHolder<CORE>::empty()) {
    SnapshotByteSource bytes(natives_blob_->data, natives_blob_->raw_size);
    NativesHolder<CORE>::set(NativesStore::MakeFromScriptsSource(&bytes));
154
    NativesHolder<EXTRAS>::set(NativesStore::MakeFromScriptsSource(&bytes));
155 156
    NativesHolder<EXPERIMENTAL_EXTRAS>::set(
        NativesStore::MakeFromScriptsSource(&bytes));
157 158 159 160 161
    DCHECK(!bytes.HasMore());
  }
}


162
/**
163
 * Set the Natives (library sources) blob, as generated by js2c + the build
164 165 166
 * system.
 */
void SetNativesFromFile(StartupData* natives_blob) {
167
  DCHECK(!natives_blob_);
168 169 170
  DCHECK(natives_blob);
  DCHECK(natives_blob->data);
  DCHECK(natives_blob->raw_size > 0);
171

172 173
  natives_blob_ = natives_blob;
  ReadNatives();
174 175 176
}


177 178 179 180 181
/**
 * Release memory allocated by SetNativesFromFile.
 */
void DisposeNatives() {
  NativesHolder<CORE>::Dispose();
182
  NativesHolder<EXTRAS>::Dispose();
183
  NativesHolder<EXPERIMENTAL_EXTRAS>::Dispose();
184 185 186
}


187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
// Implement NativesCollection<T> bsaed on NativesHolder + NativesStore.
//
// (The callers expect a purely static interface, since this is how the
//  natives are usually compiled in. Since we implement them based on
//  runtime content, we have to implement this indirection to offer
//  a static interface.)
template<NativeType type>
int NativesCollection<type>::GetBuiltinsCount() {
  return NativesHolder<type>::get()->GetBuiltinsCount();
}

template<NativeType type>
int NativesCollection<type>::GetDebuggerCount() {
  return NativesHolder<type>::get()->GetDebuggerCount();
}

template<NativeType type>
int NativesCollection<type>::GetIndex(const char* name) {
  return NativesHolder<type>::get()->GetIndex(name);
}

208 209 210
template <NativeType type>
Vector<const char> NativesCollection<type>::GetScriptSource(int index) {
  return NativesHolder<type>::get()->GetScriptSource(index);
211 212 213 214 215 216 217
}

template<NativeType type>
Vector<const char> NativesCollection<type>::GetScriptName(int index) {
  return NativesHolder<type>::get()->GetScriptName(index);
}

218 219
template <NativeType type>
Vector<const char> NativesCollection<type>::GetScriptsSource() {
220 221 222 223
  return NativesHolder<type>::get()->GetScriptsSource();
}


224 225 226 227 228 229 230 231 232 233
// Explicit template instantiations.
#define INSTANTIATE_TEMPLATES(T)                                            \
  template int NativesCollection<T>::GetBuiltinsCount();                    \
  template int NativesCollection<T>::GetDebuggerCount();                    \
  template int NativesCollection<T>::GetIndex(const char* name);            \
  template Vector<const char> NativesCollection<T>::GetScriptSource(int i); \
  template Vector<const char> NativesCollection<T>::GetScriptName(int i);   \
  template Vector<const char> NativesCollection<T>::GetScriptsSource();
INSTANTIATE_TEMPLATES(CORE)
INSTANTIATE_TEMPLATES(EXTRAS)
234
INSTANTIATE_TEMPLATES(EXPERIMENTAL_EXTRAS)
235 236
#undef INSTANTIATE_TEMPLATES

237
}  // namespace internal
238
}  // namespace v8