v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
embedded-empty.cc
Go to the documentation of this file.
1// Copyright 2018 the V8 project authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Used for building without embedded data.
6
7#include <cstdint>
8
9extern "C" const uint8_t v8_Default_embedded_blob_code_[];
11extern "C" const uint8_t v8_Default_embedded_blob_data_[];
13
14const uint8_t v8_Default_embedded_blob_code_[1] = {0};
16const uint8_t v8_Default_embedded_blob_data_[1] = {0};
18
19#if V8_ENABLE_DRUMBRAKE
21typedef void (*fun_ptr)();
22#define V(name) \
23 extern "C" fun_ptr Builtins_##name; \
24 fun_ptr Builtins_##name = nullptr;
26#undef V
27#endif // V8_ENABLE_DRUMBRAKE
#define V(Name)
uint32_t v8_Default_embedded_blob_code_size_
const uint8_t v8_Default_embedded_blob_code_[]
const uint8_t v8_Default_embedded_blob_data_[]
uint32_t v8_Default_embedded_blob_data_size_
#define FOREACH_LOAD_STORE_INSTR_HANDLER(V,...)