libv8 6.3.292.48.1-universal-darwin-16 → 6.7.288.46.1beta0-universal-darwin-16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/ext/libv8/paths.rb +5 -18
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/include/libplatform/libplatform.h +25 -12
- data/vendor/v8/include/libplatform/v8-tracing.h +13 -2
- data/vendor/v8/include/v8-inspector.h +22 -2
- data/vendor/v8/include/v8-platform.h +247 -12
- data/vendor/v8/include/v8-profiler.h +93 -7
- data/vendor/v8/include/v8-util.h +6 -11
- data/vendor/v8/include/v8-version-string.h +4 -3
- data/vendor/v8/include/v8-version.h +3 -3
- data/vendor/v8/include/v8.h +663 -692
- data/vendor/v8/include/v8config.h +7 -1
- data/vendor/v8/out.gn/libv8/obj/libv8_libbase.a +0 -0
- data/vendor/v8/out.gn/libv8/obj/libv8_libplatform.a +0 -0
- data/vendor/v8/{out/x64.release/libv8_base.a → out.gn/libv8/obj/libv8_monolith.a} +0 -0
- metadata +18 -25
- data/ext/libv8/arch.rb +0 -20
- data/vendor/v8/include/v8-debug.h +0 -255
- data/vendor/v8/out/x64.release/libv8_init.a +0 -0
- data/vendor/v8/out/x64.release/libv8_initializers.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_libsampler.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
@@ -177,6 +177,9 @@
|
|
177
177
|
// V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
|
178
178
|
// V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
|
179
179
|
// supported
|
180
|
+
// V8_HAS_BUILTIN_BSWAP16 - __builtin_bswap16() supported
|
181
|
+
// V8_HAS_BUILTIN_BSWAP32 - __builtin_bswap32() supported
|
182
|
+
// V8_HAS_BUILTIN_BSWAP64 - __builtin_bswap64() supported
|
180
183
|
// V8_HAS_BUILTIN_CLZ - __builtin_clz() supported
|
181
184
|
// V8_HAS_BUILTIN_CTZ - __builtin_ctz() supported
|
182
185
|
// V8_HAS_BUILTIN_EXPECT - __builtin_expect() supported
|
@@ -217,6 +220,9 @@
|
|
217
220
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
218
221
|
(__has_attribute(warn_unused_result))
|
219
222
|
|
223
|
+
# define V8_HAS_BUILTIN_BSWAP16 (__has_builtin(__builtin_bswap16))
|
224
|
+
# define V8_HAS_BUILTIN_BSWAP32 (__has_builtin(__builtin_bswap32))
|
225
|
+
# define V8_HAS_BUILTIN_BSWAP64 (__has_builtin(__builtin_bswap64))
|
220
226
|
# define V8_HAS_BUILTIN_CLZ (__has_builtin(__builtin_clz))
|
221
227
|
# define V8_HAS_BUILTIN_CTZ (__has_builtin(__builtin_ctz))
|
222
228
|
# define V8_HAS_BUILTIN_EXPECT (__has_builtin(__builtin_expect))
|
@@ -405,7 +411,7 @@ namespace v8 { template <typename T> class AlignOfHelper { char c; T t; }; }
|
|
405
411
|
|
406
412
|
// Annotate a function indicating the caller must examine the return value.
|
407
413
|
// Use like:
|
408
|
-
// int foo()
|
414
|
+
// int foo() V8_WARN_UNUSED_RESULT;
|
409
415
|
#if V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT
|
410
416
|
#define V8_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
|
411
417
|
#else
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,55 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
4
|
+
version: 6.7.288.46.1beta0
|
5
5
|
platform: universal-darwin-16
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '12'
|
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
26
|
version: '12'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake-compiler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - ~>
|
31
|
+
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - ~>
|
38
|
+
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - ~>
|
45
|
+
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '3'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - ~>
|
52
|
+
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3'
|
55
55
|
description: Distributes the V8 JavaScript engine in binary and source forms in order
|
@@ -60,16 +60,14 @@ executables: []
|
|
60
60
|
extensions: []
|
61
61
|
extra_rdoc_files: []
|
62
62
|
files:
|
63
|
-
-
|
64
|
-
- lib/libv8/version.rb
|
65
|
-
- ext/libv8/arch.rb
|
63
|
+
- ext/libv8/.location.yml
|
66
64
|
- ext/libv8/location.rb
|
67
65
|
- ext/libv8/paths.rb
|
68
|
-
-
|
66
|
+
- lib/libv8.rb
|
67
|
+
- lib/libv8/version.rb
|
69
68
|
- vendor/v8/include/libplatform/libplatform-export.h
|
70
69
|
- vendor/v8/include/libplatform/libplatform.h
|
71
70
|
- vendor/v8/include/libplatform/v8-tracing.h
|
72
|
-
- vendor/v8/include/v8-debug.h
|
73
71
|
- vendor/v8/include/v8-inspector-protocol.h
|
74
72
|
- vendor/v8/include/v8-inspector.h
|
75
73
|
- vendor/v8/include/v8-platform.h
|
@@ -81,14 +79,9 @@ files:
|
|
81
79
|
- vendor/v8/include/v8-version.h
|
82
80
|
- vendor/v8/include/v8.h
|
83
81
|
- vendor/v8/include/v8config.h
|
84
|
-
- vendor/v8/out
|
85
|
-
- vendor/v8/out
|
86
|
-
- vendor/v8/out
|
87
|
-
- vendor/v8/out/x64.release/libv8_libbase.a
|
88
|
-
- vendor/v8/out/x64.release/libv8_libplatform.a
|
89
|
-
- vendor/v8/out/x64.release/libv8_libsampler.a
|
90
|
-
- vendor/v8/out/x64.release/libv8_nosnapshot.a
|
91
|
-
- vendor/v8/out/x64.release/libv8_snapshot.a
|
82
|
+
- vendor/v8/out.gn/libv8/obj/libv8_libbase.a
|
83
|
+
- vendor/v8/out.gn/libv8/obj/libv8_libplatform.a
|
84
|
+
- vendor/v8/out.gn/libv8/obj/libv8_monolith.a
|
92
85
|
homepage: http://github.com/cowboyd/libv8
|
93
86
|
licenses:
|
94
87
|
- MIT
|
@@ -100,17 +93,17 @@ require_paths:
|
|
100
93
|
- ext
|
101
94
|
required_ruby_version: !ruby/object:Gem::Requirement
|
102
95
|
requirements:
|
103
|
-
- -
|
96
|
+
- - ">="
|
104
97
|
- !ruby/object:Gem::Version
|
105
98
|
version: '0'
|
106
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
107
100
|
requirements:
|
108
|
-
- -
|
101
|
+
- - ">"
|
109
102
|
- !ruby/object:Gem::Version
|
110
|
-
version:
|
103
|
+
version: 1.3.1
|
111
104
|
requirements: []
|
112
105
|
rubyforge_project: libv8
|
113
|
-
rubygems_version: 2.
|
106
|
+
rubygems_version: 2.7.7
|
114
107
|
signing_key:
|
115
108
|
specification_version: 4
|
116
109
|
summary: Distribution of the V8 JavaScript engine
|
data/ext/libv8/arch.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
require 'rubygems'
|
2
|
-
|
3
|
-
module Libv8
|
4
|
-
module Arch
|
5
|
-
module_function
|
6
|
-
|
7
|
-
def libv8_arch
|
8
|
-
case Gem::Platform.local.cpu
|
9
|
-
when /^arm(v6.*|v7.*)*$/ then 'arm'
|
10
|
-
when /^a(rm|arch)64$/ then 'arm64'
|
11
|
-
when /^x86$/ then 'ia32'
|
12
|
-
when /^(x86_64|amd64)$/ then 'x64'
|
13
|
-
when /^universal$/ then 'x64' # OS X
|
14
|
-
else
|
15
|
-
warn "Unsupported target: #{Gem::Platform.local.cpu}"
|
16
|
-
Gem::Platform.local.cpu
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,255 +0,0 @@
|
|
1
|
-
// Copyright 2008 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_V8_DEBUG_H_
|
6
|
-
#define V8_V8_DEBUG_H_
|
7
|
-
|
8
|
-
#include "v8.h" // NOLINT(build/include)
|
9
|
-
|
10
|
-
/**
|
11
|
-
* ATTENTION: The debugger API exposed by this file is deprecated and will be
|
12
|
-
* removed by the end of 2017. Please use the V8 inspector declared
|
13
|
-
* in include/v8-inspector.h instead.
|
14
|
-
*/
|
15
|
-
namespace v8 {
|
16
|
-
|
17
|
-
// Debug events which can occur in the V8 JavaScript engine.
|
18
|
-
enum DebugEvent {
|
19
|
-
Break = 1,
|
20
|
-
Exception = 2,
|
21
|
-
AfterCompile = 3,
|
22
|
-
CompileError = 4,
|
23
|
-
AsyncTaskEvent = 5,
|
24
|
-
};
|
25
|
-
|
26
|
-
class V8_EXPORT Debug {
|
27
|
-
public:
|
28
|
-
/**
|
29
|
-
* A client object passed to the v8 debugger whose ownership will be taken by
|
30
|
-
* it. v8 is always responsible for deleting the object.
|
31
|
-
*/
|
32
|
-
class ClientData {
|
33
|
-
public:
|
34
|
-
virtual ~ClientData() {}
|
35
|
-
};
|
36
|
-
|
37
|
-
|
38
|
-
/**
|
39
|
-
* A message object passed to the debug message handler.
|
40
|
-
*/
|
41
|
-
class Message {
|
42
|
-
public:
|
43
|
-
/**
|
44
|
-
* Check type of message.
|
45
|
-
*/
|
46
|
-
virtual bool IsEvent() const = 0;
|
47
|
-
virtual bool IsResponse() const = 0;
|
48
|
-
virtual DebugEvent GetEvent() const = 0;
|
49
|
-
|
50
|
-
/**
|
51
|
-
* Indicate whether this is a response to a continue command which will
|
52
|
-
* start the VM running after this is processed.
|
53
|
-
*/
|
54
|
-
virtual bool WillStartRunning() const = 0;
|
55
|
-
|
56
|
-
/**
|
57
|
-
* Access to execution state and event data. Don't store these cross
|
58
|
-
* callbacks as their content becomes invalid. These objects are from the
|
59
|
-
* debugger event that started the debug message loop.
|
60
|
-
*/
|
61
|
-
virtual Local<Object> GetExecutionState() const = 0;
|
62
|
-
virtual Local<Object> GetEventData() const = 0;
|
63
|
-
|
64
|
-
/**
|
65
|
-
* Get the debugger protocol JSON.
|
66
|
-
*/
|
67
|
-
virtual Local<String> GetJSON() const = 0;
|
68
|
-
|
69
|
-
/**
|
70
|
-
* Get the context active when the debug event happened. Note this is not
|
71
|
-
* the current active context as the JavaScript part of the debugger is
|
72
|
-
* running in its own context which is entered at this point.
|
73
|
-
*/
|
74
|
-
virtual Local<Context> GetEventContext() const = 0;
|
75
|
-
|
76
|
-
/**
|
77
|
-
* Client data passed with the corresponding request if any. This is the
|
78
|
-
* client_data data value passed into Debug::SendCommand along with the
|
79
|
-
* request that led to the message or NULL if the message is an event. The
|
80
|
-
* debugger takes ownership of the data and will delete it even if there is
|
81
|
-
* no message handler.
|
82
|
-
*/
|
83
|
-
virtual ClientData* GetClientData() const = 0;
|
84
|
-
|
85
|
-
virtual Isolate* GetIsolate() const = 0;
|
86
|
-
|
87
|
-
virtual ~Message() {}
|
88
|
-
};
|
89
|
-
|
90
|
-
/**
|
91
|
-
* An event details object passed to the debug event listener.
|
92
|
-
*/
|
93
|
-
class EventDetails {
|
94
|
-
public:
|
95
|
-
/**
|
96
|
-
* Event type.
|
97
|
-
*/
|
98
|
-
virtual DebugEvent GetEvent() const = 0;
|
99
|
-
|
100
|
-
/**
|
101
|
-
* Access to execution state and event data of the debug event. Don't store
|
102
|
-
* these cross callbacks as their content becomes invalid.
|
103
|
-
*/
|
104
|
-
virtual Local<Object> GetExecutionState() const = 0;
|
105
|
-
virtual Local<Object> GetEventData() const = 0;
|
106
|
-
|
107
|
-
/**
|
108
|
-
* Get the context active when the debug event happened. Note this is not
|
109
|
-
* the current active context as the JavaScript part of the debugger is
|
110
|
-
* running in its own context which is entered at this point.
|
111
|
-
*/
|
112
|
-
virtual Local<Context> GetEventContext() const = 0;
|
113
|
-
|
114
|
-
/**
|
115
|
-
* Client data passed with the corresponding callback when it was
|
116
|
-
* registered.
|
117
|
-
*/
|
118
|
-
virtual Local<Value> GetCallbackData() const = 0;
|
119
|
-
|
120
|
-
/**
|
121
|
-
* This is now a dummy that returns nullptr.
|
122
|
-
*/
|
123
|
-
virtual ClientData* GetClientData() const = 0;
|
124
|
-
|
125
|
-
virtual Isolate* GetIsolate() const = 0;
|
126
|
-
|
127
|
-
virtual ~EventDetails() {}
|
128
|
-
};
|
129
|
-
|
130
|
-
/**
|
131
|
-
* Debug event callback function.
|
132
|
-
*
|
133
|
-
* \param event_details object providing information about the debug event
|
134
|
-
*
|
135
|
-
* A EventCallback does not take possession of the event data,
|
136
|
-
* and must not rely on the data persisting after the handler returns.
|
137
|
-
*/
|
138
|
-
typedef void (*EventCallback)(const EventDetails& event_details);
|
139
|
-
|
140
|
-
/**
|
141
|
-
* This is now a no-op.
|
142
|
-
*/
|
143
|
-
typedef void (*MessageHandler)(const Message& message);
|
144
|
-
|
145
|
-
V8_DEPRECATED("No longer supported", static bool SetDebugEventListener(
|
146
|
-
Isolate* isolate, EventCallback that,
|
147
|
-
Local<Value> data = Local<Value>()));
|
148
|
-
|
149
|
-
// Schedule a debugger break to happen when JavaScript code is run
|
150
|
-
// in the given isolate.
|
151
|
-
V8_DEPRECATED("No longer supported",
|
152
|
-
static void DebugBreak(Isolate* isolate));
|
153
|
-
|
154
|
-
// Remove scheduled debugger break in given isolate if it has not
|
155
|
-
// happened yet.
|
156
|
-
V8_DEPRECATED("No longer supported",
|
157
|
-
static void CancelDebugBreak(Isolate* isolate));
|
158
|
-
|
159
|
-
// Check if a debugger break is scheduled in the given isolate.
|
160
|
-
V8_DEPRECATED("No longer supported",
|
161
|
-
static bool CheckDebugBreak(Isolate* isolate));
|
162
|
-
|
163
|
-
// This is now a no-op.
|
164
|
-
V8_DEPRECATED("No longer supported",
|
165
|
-
static void SetMessageHandler(Isolate* isolate,
|
166
|
-
MessageHandler handler));
|
167
|
-
|
168
|
-
// This is now a no-op.
|
169
|
-
V8_DEPRECATED("No longer supported",
|
170
|
-
static void SendCommand(Isolate* isolate,
|
171
|
-
const uint16_t* command, int length,
|
172
|
-
ClientData* client_data = NULL));
|
173
|
-
|
174
|
-
/**
|
175
|
-
* Run a JavaScript function in the debugger.
|
176
|
-
* \param fun the function to call
|
177
|
-
* \param data passed as second argument to the function
|
178
|
-
* With this call the debugger is entered and the function specified is called
|
179
|
-
* with the execution state as the first argument. This makes it possible to
|
180
|
-
* get access to information otherwise not available during normal JavaScript
|
181
|
-
* execution e.g. details on stack frames. Receiver of the function call will
|
182
|
-
* be the debugger context global object, however this is a subject to change.
|
183
|
-
* The following example shows a JavaScript function which when passed to
|
184
|
-
* v8::Debug::Call will return the current line of JavaScript execution.
|
185
|
-
*
|
186
|
-
* \code
|
187
|
-
* function frame_source_line(exec_state) {
|
188
|
-
* return exec_state.frame(0).sourceLine();
|
189
|
-
* }
|
190
|
-
* \endcode
|
191
|
-
*/
|
192
|
-
V8_DEPRECATED("No longer supported",
|
193
|
-
static MaybeLocal<Value> Call(
|
194
|
-
Local<Context> context, v8::Local<v8::Function> fun,
|
195
|
-
Local<Value> data = Local<Value>()));
|
196
|
-
|
197
|
-
// This is now a no-op.
|
198
|
-
V8_DEPRECATED("No longer supported",
|
199
|
-
static void ProcessDebugMessages(Isolate* isolate));
|
200
|
-
|
201
|
-
/**
|
202
|
-
* Debugger is running in its own context which is entered while debugger
|
203
|
-
* messages are being dispatched. This is an explicit getter for this
|
204
|
-
* debugger context. Note that the content of the debugger context is subject
|
205
|
-
* to change. The Context exists only when the debugger is active, i.e. at
|
206
|
-
* least one DebugEventListener or MessageHandler is set.
|
207
|
-
*/
|
208
|
-
V8_DEPRECATED("Use v8-inspector",
|
209
|
-
static Local<Context> GetDebugContext(Isolate* isolate));
|
210
|
-
|
211
|
-
/**
|
212
|
-
* While in the debug context, this method returns the top-most non-debug
|
213
|
-
* context, if it exists.
|
214
|
-
*/
|
215
|
-
V8_DEPRECATED(
|
216
|
-
"No longer supported",
|
217
|
-
static MaybeLocal<Context> GetDebuggedContext(Isolate* isolate));
|
218
|
-
|
219
|
-
/**
|
220
|
-
* Enable/disable LiveEdit functionality for the given Isolate
|
221
|
-
* (default Isolate if not provided). V8 will abort if LiveEdit is
|
222
|
-
* unexpectedly used. LiveEdit is enabled by default.
|
223
|
-
*/
|
224
|
-
V8_DEPRECATED("No longer supported",
|
225
|
-
static void SetLiveEditEnabled(Isolate* isolate, bool enable));
|
226
|
-
|
227
|
-
/**
|
228
|
-
* Returns array of internal properties specific to the value type. Result has
|
229
|
-
* the following format: [<name>, <value>,...,<name>, <value>]. Result array
|
230
|
-
* will be allocated in the current context.
|
231
|
-
*/
|
232
|
-
V8_DEPRECATED("No longer supported",
|
233
|
-
static MaybeLocal<Array> GetInternalProperties(
|
234
|
-
Isolate* isolate, Local<Value> value));
|
235
|
-
|
236
|
-
/**
|
237
|
-
* Defines if the ES2015 tail call elimination feature is enabled or not.
|
238
|
-
* The change of this flag triggers deoptimization of all functions that
|
239
|
-
* contain calls at tail position.
|
240
|
-
*/
|
241
|
-
V8_DEPRECATED("No longer supported",
|
242
|
-
static bool IsTailCallEliminationEnabled(Isolate* isolate));
|
243
|
-
V8_DEPRECATED("No longer supported",
|
244
|
-
static void SetTailCallEliminationEnabled(Isolate* isolate,
|
245
|
-
bool enabled));
|
246
|
-
};
|
247
|
-
|
248
|
-
|
249
|
-
} // namespace v8
|
250
|
-
|
251
|
-
|
252
|
-
#undef EXPORT
|
253
|
-
|
254
|
-
|
255
|
-
#endif // V8_V8_DEBUG_H_
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|