| OLD | NEW |
| 1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/natives.h" | 5 #include "src/natives.h" |
| 6 | 6 |
| 7 #include "src/base/logging.h" | 7 #include "src/base/logging.h" |
| 8 #include "src/list.h" | 8 #include "src/list.h" |
| 9 #include "src/list-inl.h" | 9 #include "src/list-inl.h" |
| 10 #include "src/snapshot-source-sink.h" | 10 #include "src/snapshot-source-sink.h" |
| 11 #include "src/vector.h" | 11 #include "src/vector.h" |
| 12 | 12 |
| 13 #ifndef V8_USE_EXTERNAL_STARTUP_DATA | |
| 14 #error natives-external.cc is used only for the external snapshot build. | |
| 15 #endif // V8_USE_EXTERNAL_STARTUP_DATA | |
| 16 | |
| 17 | |
| 18 namespace v8 { | 13 namespace v8 { |
| 19 namespace internal { | 14 namespace internal { |
| 20 | 15 |
| 21 | 16 |
| 22 /** | 17 /** |
| 23 * NativesStore stores the 'native' (builtin) JS libraries. | 18 * NativesStore stores the 'native' (builtin) JS libraries. |
| 24 * | 19 * |
| 25 * NativesStore needs to be initialized before using V8, usually by the | 20 * NativesStore needs to be initialized before using V8, usually by the |
| 26 * embedder calling v8::SetNativesDataBlob, which calls SetNativesFromFile | 21 * embedder calling v8::SetNativesDataBlob, which calls SetNativesFromFile |
| 27 * below. | 22 * below. |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 | 135 |
| 141 /** | 136 /** |
| 142 * Read the Natives (library sources) blob, as generated by js2c + the build | 137 * Read the Natives (library sources) blob, as generated by js2c + the build |
| 143 * system. | 138 * system. |
| 144 */ | 139 */ |
| 145 void SetNativesFromFile(StartupData* natives_blob) { | 140 void SetNativesFromFile(StartupData* natives_blob) { |
| 146 DCHECK(natives_blob); | 141 DCHECK(natives_blob); |
| 147 DCHECK(natives_blob->data); | 142 DCHECK(natives_blob->data); |
| 148 DCHECK(natives_blob->raw_size > 0); | 143 DCHECK(natives_blob->raw_size > 0); |
| 149 | 144 |
| 150 SnapshotByteSource bytes(natives_blob->data, natives_blob->raw_size); | 145 SnapshotByteSource bytes(reinterpret_cast<const byte*>(natives_blob->data), |
| 146 natives_blob->raw_size); |
| 151 NativesHolder<CORE>::set(NativesStore::MakeFromScriptsSource(&bytes)); | 147 NativesHolder<CORE>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
| 152 NativesHolder<EXPERIMENTAL>::set(NativesStore::MakeFromScriptsSource(&bytes)); | 148 NativesHolder<EXPERIMENTAL>::set(NativesStore::MakeFromScriptsSource(&bytes)); |
| 153 DCHECK(!bytes.HasMore()); | 149 DCHECK(!bytes.HasMore()); |
| 154 } | 150 } |
| 155 | 151 |
| 156 | 152 |
| 157 // Implement NativesCollection<T> bsaed on NativesHolder + NativesStore. | 153 // Implement NativesCollection<T> bsaed on NativesHolder + NativesStore. |
| 158 // | 154 // |
| 159 // (The callers expect a purely static interface, since this is how the | 155 // (The callers expect a purely static interface, since this is how the |
| 160 // natives are usually compiled in. Since we implement them based on | 156 // natives are usually compiled in. Since we implement them based on |
| (...skipping 24 matching lines...) Expand all Loading... |
| 185 return NativesHolder<type>::get()->GetScriptName(index); | 181 return NativesHolder<type>::get()->GetScriptName(index); |
| 186 } | 182 } |
| 187 | 183 |
| 188 template <NativeType type> | 184 template <NativeType type> |
| 189 Vector<const char> NativesCollection<type>::GetScriptsSource() { | 185 Vector<const char> NativesCollection<type>::GetScriptsSource() { |
| 190 return NativesHolder<type>::get()->GetScriptsSource(); | 186 return NativesHolder<type>::get()->GetScriptsSource(); |
| 191 } | 187 } |
| 192 | 188 |
| 193 | 189 |
| 194 // The compiler can't 'see' all uses of the static methods and hence | 190 // The compiler can't 'see' all uses of the static methods and hence |
| 195 // my choice to elide them. This we'll explicitly instantiate these. | 191 // my chose to elide them. This we'll explicitly instantiate these. |
| 196 template class NativesCollection<CORE>; | 192 template class NativesCollection<CORE>; |
| 197 template class NativesCollection<EXPERIMENTAL>; | 193 template class NativesCollection<EXPERIMENTAL>; |
| 198 | 194 |
| 199 } // namespace v8::internal | 195 } // namespace v8::internal |
| 200 } // namespace v8 | 196 } // namespace v8 |
| OLD | NEW |