libv8 4.5.95.5-amd64-freebsd-10 → 5.0.71.48.1beta2-amd64-freebsd-10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/libv8/arch.rb +1 -0
- data/ext/libv8/location.rb +7 -8
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/include/v8-debug.h +31 -23
- data/vendor/v8/include/v8-experimental.h +54 -0
- data/vendor/v8/include/v8-platform.h +90 -1
- data/vendor/v8/include/v8-profiler.h +148 -13
- data/vendor/v8/include/v8-testing.h +2 -2
- data/vendor/v8/include/v8-util.h +6 -3
- data/vendor/v8/include/v8-version.h +4 -4
- data/vendor/v8/include/v8.h +761 -534
- data/vendor/v8/include/v8config.h +17 -3
- data/vendor/v8/out/x64.release/libv8_base.a +0 -0
- data/vendor/v8/out/x64.release/libv8_libbase.a +0 -0
- data/vendor/v8/out/x64.release/libv8_libplatform.a +0 -0
- data/vendor/v8/out/x64.release/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/x64.release/libv8_snapshot.a +0 -0
- data/vendor/v8/out/x64.release/obj.target/tools/gyp/libv8_base.a +0 -0
- data/vendor/v8/out/x64.release/obj.target/tools/gyp/libv8_libbase.a +0 -0
- data/vendor/v8/out/x64.release/obj.target/tools/gyp/libv8_libplatform.a +0 -0
- data/vendor/v8/out/x64.release/obj.target/tools/gyp/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/x64.release/obj.target/tools/gyp/libv8_snapshot.a +0 -0
- metadata +8 -7
@@ -163,7 +163,6 @@
|
|
163
163
|
//
|
164
164
|
// V8_HAS_CXX11_ALIGNAS - alignas specifier supported
|
165
165
|
// V8_HAS_CXX11_ALIGNOF - alignof(type) operator supported
|
166
|
-
// V8_HAS_CXX11_STATIC_ASSERT - static_assert() supported
|
167
166
|
//
|
168
167
|
// Compiler-specific feature detection
|
169
168
|
//
|
@@ -174,6 +173,7 @@
|
|
174
173
|
// supported
|
175
174
|
// V8_HAS_ATTRIBUTE_DEPRECATED - __attribute__((deprecated)) supported
|
176
175
|
// V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported
|
176
|
+
// V8_HAS_ATTRIBUTE_NORETURN - __attribute__((noreturn)) supported
|
177
177
|
// V8_HAS_ATTRIBUTE_UNUSED - __attribute__((unused)) supported
|
178
178
|
// V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
|
179
179
|
// V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
|
@@ -190,6 +190,7 @@
|
|
190
190
|
// V8_HAS_DECLSPEC_DEPRECATED - __declspec(deprecated) supported
|
191
191
|
// V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported
|
192
192
|
// V8_HAS_DECLSPEC_SELECTANY - __declspec(selectany) supported
|
193
|
+
// V8_HAS_DECLSPEC_NORETURN - __declspec(noreturn) supported
|
193
194
|
// V8_HAS___FORCEINLINE - __forceinline supported
|
194
195
|
//
|
195
196
|
// Note that testing for compilers and/or features must be done using #if
|
@@ -212,6 +213,7 @@
|
|
212
213
|
# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (__has_attribute(always_inline))
|
213
214
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (__has_attribute(deprecated))
|
214
215
|
# define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline))
|
216
|
+
# define V8_HAS_ATTRIBUTE_NORETURN (__has_attribute(noreturn))
|
215
217
|
# define V8_HAS_ATTRIBUTE_UNUSED (__has_attribute(unused))
|
216
218
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (__has_attribute(visibility))
|
217
219
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -227,7 +229,6 @@
|
|
227
229
|
# define V8_HAS_BUILTIN_UADD_OVERFLOW (__has_builtin(__builtin_uadd_overflow))
|
228
230
|
|
229
231
|
# define V8_HAS_CXX11_ALIGNAS (__has_feature(cxx_alignas))
|
230
|
-
# define V8_HAS_CXX11_STATIC_ASSERT (__has_feature(cxx_static_assert))
|
231
232
|
|
232
233
|
#elif defined(__GNUC__)
|
233
234
|
|
@@ -253,6 +254,7 @@
|
|
253
254
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (V8_GNUC_PREREQ(3, 4, 0))
|
254
255
|
# define V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE (V8_GNUC_PREREQ(4, 5, 0))
|
255
256
|
# define V8_HAS_ATTRIBUTE_NOINLINE (V8_GNUC_PREREQ(3, 4, 0))
|
257
|
+
# define V8_HAS_ATTRIBUTE_NORETURN (V8_GNUC_PREREQ(2, 5, 0))
|
256
258
|
# define V8_HAS_ATTRIBUTE_UNUSED (V8_GNUC_PREREQ(2, 95, 0))
|
257
259
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (V8_GNUC_PREREQ(4, 3, 0))
|
258
260
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -273,7 +275,6 @@
|
|
273
275
|
# if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
|
274
276
|
# define V8_HAS_CXX11_ALIGNAS (V8_GNUC_PREREQ(4, 8, 0))
|
275
277
|
# define V8_HAS_CXX11_ALIGNOF (V8_GNUC_PREREQ(4, 8, 0))
|
276
|
-
# define V8_HAS_CXX11_STATIC_ASSERT (V8_GNUC_PREREQ(4, 3, 0))
|
277
278
|
# endif
|
278
279
|
#endif
|
279
280
|
|
@@ -285,6 +286,7 @@
|
|
285
286
|
# define V8_HAS_DECLSPEC_DEPRECATED 1
|
286
287
|
# define V8_HAS_DECLSPEC_NOINLINE 1
|
287
288
|
# define V8_HAS_DECLSPEC_SELECTANY 1
|
289
|
+
# define V8_HAS_DECLSPEC_NORETURN 1
|
288
290
|
|
289
291
|
# define V8_HAS___FORCEINLINE 1
|
290
292
|
|
@@ -319,6 +321,18 @@
|
|
319
321
|
#endif
|
320
322
|
|
321
323
|
|
324
|
+
// A macro used to tell the compiler that a particular function never returns.
|
325
|
+
// Use like:
|
326
|
+
// V8_NORETURN void MyAbort() { abort(); }
|
327
|
+
#if V8_HAS_ATTRIBUTE_NORETURN
|
328
|
+
# define V8_NORETURN __attribute__((noreturn))
|
329
|
+
#elif HAS_DECLSPEC_NORETURN
|
330
|
+
# define V8_NORETURN __declspec(noreturn)
|
331
|
+
#else
|
332
|
+
# define V8_NORETURN /* NOT SUPPORTED */
|
333
|
+
#endif
|
334
|
+
|
335
|
+
|
322
336
|
// A macro (V8_DEPRECATED) to mark classes or functions as deprecated.
|
323
337
|
#if defined(V8_DEPRECATION_WARNINGS) && V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE
|
324
338
|
#define V8_DEPRECATED(message, declarator) \
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.71.48.1beta2
|
5
5
|
platform: amd64-freebsd-10
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '11'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '11'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake-compiler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -68,6 +68,7 @@ files:
|
|
68
68
|
- lib/libv8/version.rb
|
69
69
|
- vendor/v8/include/libplatform/libplatform.h
|
70
70
|
- vendor/v8/include/v8-debug.h
|
71
|
+
- vendor/v8/include/v8-experimental.h
|
71
72
|
- vendor/v8/include/v8-platform.h
|
72
73
|
- vendor/v8/include/v8-profiler.h
|
73
74
|
- vendor/v8/include/v8-testing.h
|
@@ -101,12 +102,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
101
102
|
version: '0'
|
102
103
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
103
104
|
requirements:
|
104
|
-
- - "
|
105
|
+
- - ">"
|
105
106
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
107
|
+
version: 1.3.1
|
107
108
|
requirements: []
|
108
109
|
rubyforge_project: libv8
|
109
|
-
rubygems_version: 2.
|
110
|
+
rubygems_version: 2.5.1
|
110
111
|
signing_key:
|
111
112
|
specification_version: 4
|
112
113
|
summary: Distribution of the V8 JavaScript engine
|