libv8-node 16.10.0.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ext/libv8-node/.location.yml +1 -0
- data/ext/libv8-node/location.rb +76 -0
- data/ext/libv8-node/paths.rb +34 -0
- data/lib/libv8/node/version.rb +7 -0
- data/lib/libv8/node.rb +11 -0
- data/lib/libv8-node.rb +1 -0
- data/vendor/v8/include/cppgc/allocation.h +232 -0
- data/vendor/v8/include/cppgc/common.h +29 -0
- data/vendor/v8/include/cppgc/cross-thread-persistent.h +384 -0
- data/vendor/v8/include/cppgc/custom-space.h +97 -0
- data/vendor/v8/include/cppgc/default-platform.h +75 -0
- data/vendor/v8/include/cppgc/ephemeron-pair.h +30 -0
- data/vendor/v8/include/cppgc/explicit-management.h +82 -0
- data/vendor/v8/include/cppgc/garbage-collected.h +117 -0
- data/vendor/v8/include/cppgc/heap-consistency.h +236 -0
- data/vendor/v8/include/cppgc/heap-state.h +70 -0
- data/vendor/v8/include/cppgc/heap-statistics.h +120 -0
- data/vendor/v8/include/cppgc/heap.h +201 -0
- data/vendor/v8/include/cppgc/internal/api-constants.h +47 -0
- data/vendor/v8/include/cppgc/internal/atomic-entry-flag.h +48 -0
- data/vendor/v8/include/cppgc/internal/caged-heap-local-data.h +68 -0
- data/vendor/v8/include/cppgc/internal/compiler-specific.h +38 -0
- data/vendor/v8/include/cppgc/internal/finalizer-trait.h +90 -0
- data/vendor/v8/include/cppgc/internal/gc-info.h +76 -0
- data/vendor/v8/include/cppgc/internal/logging.h +50 -0
- data/vendor/v8/include/cppgc/internal/name-trait.h +111 -0
- data/vendor/v8/include/cppgc/internal/persistent-node.h +172 -0
- data/vendor/v8/include/cppgc/internal/pointer-policies.h +175 -0
- data/vendor/v8/include/cppgc/internal/prefinalizer-handler.h +30 -0
- data/vendor/v8/include/cppgc/internal/write-barrier.h +396 -0
- data/vendor/v8/include/cppgc/liveness-broker.h +74 -0
- data/vendor/v8/include/cppgc/macros.h +26 -0
- data/vendor/v8/include/cppgc/member.h +286 -0
- data/vendor/v8/include/cppgc/name-provider.h +65 -0
- data/vendor/v8/include/cppgc/object-size-trait.h +58 -0
- data/vendor/v8/include/cppgc/persistent.h +365 -0
- data/vendor/v8/include/cppgc/platform.h +153 -0
- data/vendor/v8/include/cppgc/prefinalizer.h +52 -0
- data/vendor/v8/include/cppgc/process-heap-statistics.h +36 -0
- data/vendor/v8/include/cppgc/sentinel-pointer.h +32 -0
- data/vendor/v8/include/cppgc/source-location.h +92 -0
- data/vendor/v8/include/cppgc/testing.h +99 -0
- data/vendor/v8/include/cppgc/trace-trait.h +116 -0
- data/vendor/v8/include/cppgc/type-traits.h +247 -0
- data/vendor/v8/include/cppgc/visitor.h +377 -0
- data/vendor/v8/include/libplatform/libplatform-export.h +29 -0
- data/vendor/v8/include/libplatform/libplatform.h +117 -0
- data/vendor/v8/include/libplatform/v8-tracing.h +334 -0
- data/vendor/v8/include/v8-cppgc.h +325 -0
- data/vendor/v8/include/v8-fast-api-calls.h +791 -0
- data/vendor/v8/include/v8-inspector-protocol.h +13 -0
- data/vendor/v8/include/v8-inspector.h +348 -0
- data/vendor/v8/include/v8-internal.h +499 -0
- data/vendor/v8/include/v8-metrics.h +202 -0
- data/vendor/v8/include/v8-platform.h +709 -0
- data/vendor/v8/include/v8-profiler.h +1123 -0
- data/vendor/v8/include/v8-unwinder-state.h +30 -0
- data/vendor/v8/include/v8-util.h +652 -0
- data/vendor/v8/include/v8-value-serializer-version.h +24 -0
- data/vendor/v8/include/v8-version-string.h +38 -0
- data/vendor/v8/include/v8-version.h +20 -0
- data/vendor/v8/include/v8-wasm-trap-handler-posix.h +31 -0
- data/vendor/v8/include/v8-wasm-trap-handler-win.h +28 -0
- data/vendor/v8/include/v8.h +12648 -0
- data/vendor/v8/include/v8config.h +515 -0
- data/vendor/v8/x86_64-darwin/libv8/obj/libv8_monolith.a +0 -0
- metadata +138 -0
@@ -0,0 +1,38 @@
|
|
1
|
+
// Copyright 2017 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
|
+
#ifndef V8_VERSION_STRING_H_
|
6
|
+
#define V8_VERSION_STRING_H_
|
7
|
+
|
8
|
+
#include "v8-version.h" // NOLINT(build/include_directory)
|
9
|
+
|
10
|
+
// This is here rather than v8-version.h to keep that file simple and
|
11
|
+
// machine-processable.
|
12
|
+
|
13
|
+
#if V8_IS_CANDIDATE_VERSION
|
14
|
+
#define V8_CANDIDATE_STRING " (candidate)"
|
15
|
+
#else
|
16
|
+
#define V8_CANDIDATE_STRING ""
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#ifndef V8_EMBEDDER_STRING
|
20
|
+
#define V8_EMBEDDER_STRING ""
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#define V8_SX(x) #x
|
24
|
+
#define V8_S(x) V8_SX(x)
|
25
|
+
|
26
|
+
#if V8_PATCH_LEVEL > 0
|
27
|
+
#define V8_VERSION_STRING \
|
28
|
+
V8_S(V8_MAJOR_VERSION) \
|
29
|
+
"." V8_S(V8_MINOR_VERSION) "." V8_S(V8_BUILD_NUMBER) "." V8_S( \
|
30
|
+
V8_PATCH_LEVEL) V8_EMBEDDER_STRING V8_CANDIDATE_STRING
|
31
|
+
#else
|
32
|
+
#define V8_VERSION_STRING \
|
33
|
+
V8_S(V8_MAJOR_VERSION) \
|
34
|
+
"." V8_S(V8_MINOR_VERSION) "." V8_S(V8_BUILD_NUMBER) \
|
35
|
+
V8_EMBEDDER_STRING V8_CANDIDATE_STRING
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#endif // V8_VERSION_STRING_H_
|
@@ -0,0 +1,20 @@
|
|
1
|
+
// Copyright 2015 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
|
+
#ifndef V8_INCLUDE_VERSION_H_ // V8_VERSION_H_ conflicts with src/version.h
|
6
|
+
#define V8_INCLUDE_VERSION_H_
|
7
|
+
|
8
|
+
// These macros define the version number for the current version.
|
9
|
+
// NOTE these macros are used by some of the tool scripts and the build
|
10
|
+
// system so their names cannot be changed without changing the scripts.
|
11
|
+
#define V8_MAJOR_VERSION 9
|
12
|
+
#define V8_MINOR_VERSION 3
|
13
|
+
#define V8_BUILD_NUMBER 345
|
14
|
+
#define V8_PATCH_LEVEL 19
|
15
|
+
|
16
|
+
// Use 1 for candidates and 0 otherwise.
|
17
|
+
// (Boolean macro values are not supported by all preprocessors.)
|
18
|
+
#define V8_IS_CANDIDATE_VERSION 0
|
19
|
+
|
20
|
+
#endif // V8_INCLUDE_VERSION_H_
|
@@ -0,0 +1,31 @@
|
|
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
|
+
#ifndef V8_WASM_TRAP_HANDLER_POSIX_H_
|
6
|
+
#define V8_WASM_TRAP_HANDLER_POSIX_H_
|
7
|
+
|
8
|
+
#include <signal.h>
|
9
|
+
|
10
|
+
#include "v8config.h" // NOLINT(build/include_directory)
|
11
|
+
|
12
|
+
namespace v8 {
|
13
|
+
/**
|
14
|
+
* This function determines whether a memory access violation has been an
|
15
|
+
* out-of-bounds memory access in WebAssembly. If so, it will modify the context
|
16
|
+
* parameter and add a return address where the execution can continue after the
|
17
|
+
* signal handling, and return true. Otherwise, false will be returned.
|
18
|
+
*
|
19
|
+
* The parameters to this function correspond to those passed to a Posix signal
|
20
|
+
* handler. Use this function only on Linux and Mac.
|
21
|
+
*
|
22
|
+
* \param sig_code The signal code, e.g. SIGSEGV.
|
23
|
+
* \param info A pointer to the siginfo_t struct provided to the signal handler.
|
24
|
+
* \param context A pointer to a ucontext_t struct provided to the signal
|
25
|
+
* handler.
|
26
|
+
*/
|
27
|
+
V8_EXPORT bool TryHandleWebAssemblyTrapPosix(int sig_code, siginfo_t* info,
|
28
|
+
void* context);
|
29
|
+
|
30
|
+
} // namespace v8
|
31
|
+
#endif // V8_WASM_TRAP_HANDLER_POSIX_H_
|
@@ -0,0 +1,28 @@
|
|
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
|
+
#ifndef V8_WASM_TRAP_HANDLER_WIN_H_
|
6
|
+
#define V8_WASM_TRAP_HANDLER_WIN_H_
|
7
|
+
|
8
|
+
#include <windows.h>
|
9
|
+
|
10
|
+
#include "v8config.h" // NOLINT(build/include_directory)
|
11
|
+
|
12
|
+
namespace v8 {
|
13
|
+
/**
|
14
|
+
* This function determines whether a memory access violation has been an
|
15
|
+
* out-of-bounds memory access in WebAssembly. If so, it will modify the
|
16
|
+
* exception parameter and add a return address where the execution can continue
|
17
|
+
* after the exception handling, and return true. Otherwise the return value
|
18
|
+
* will be false.
|
19
|
+
*
|
20
|
+
* The parameter to this function corresponds to the one passed to a Windows
|
21
|
+
* vectored exception handler. Use this function only on Windows.
|
22
|
+
*
|
23
|
+
* \param exception An EXCEPTION_POINTERS* as provided to the exception handler.
|
24
|
+
*/
|
25
|
+
V8_EXPORT bool TryHandleWebAssemblyTrapWindows(EXCEPTION_POINTERS* exception);
|
26
|
+
|
27
|
+
} // namespace v8
|
28
|
+
#endif // V8_WASM_TRAP_HANDLER_WIN_H_
|