libv8 6.2.414.42.0beta1-universal-darwin-15 → 8.4.255.0-universal-darwin-15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +5 -5
  2. data/ext/libv8/paths.rb +5 -18
  3. data/lib/libv8/version.rb +1 -1
  4. data/vendor/v8/include/cppgc/allocation.h +124 -0
  5. data/vendor/v8/include/cppgc/garbage-collected.h +192 -0
  6. data/vendor/v8/include/cppgc/heap.h +50 -0
  7. data/vendor/v8/include/cppgc/internal/accessors.h +26 -0
  8. data/vendor/v8/include/cppgc/internal/api-constants.h +44 -0
  9. data/vendor/v8/include/cppgc/internal/compiler-specific.h +26 -0
  10. data/vendor/v8/include/cppgc/internal/finalizer-trait.h +90 -0
  11. data/vendor/v8/include/cppgc/internal/gc-info.h +43 -0
  12. data/vendor/v8/include/cppgc/internal/logging.h +50 -0
  13. data/vendor/v8/include/cppgc/internal/persistent-node.h +109 -0
  14. data/vendor/v8/include/cppgc/internal/pointer-policies.h +133 -0
  15. data/vendor/v8/include/cppgc/internal/prefinalizer-handler.h +31 -0
  16. data/vendor/v8/include/cppgc/liveness-broker.h +50 -0
  17. data/vendor/v8/include/cppgc/macros.h +26 -0
  18. data/vendor/v8/include/cppgc/member.h +206 -0
  19. data/vendor/v8/include/cppgc/persistent.h +304 -0
  20. data/vendor/v8/include/cppgc/platform.h +31 -0
  21. data/vendor/v8/include/cppgc/prefinalizer.h +54 -0
  22. data/vendor/v8/include/cppgc/source-location.h +59 -0
  23. data/vendor/v8/include/cppgc/trace-trait.h +67 -0
  24. data/vendor/v8/include/cppgc/type-traits.h +109 -0
  25. data/vendor/v8/include/cppgc/visitor.h +137 -0
  26. data/vendor/v8/include/libplatform/libplatform.h +15 -13
  27. data/vendor/v8/include/libplatform/v8-tracing.h +69 -21
  28. data/vendor/v8/include/v8-fast-api-calls.h +412 -0
  29. data/vendor/v8/include/v8-inspector-protocol.h +4 -4
  30. data/vendor/v8/include/v8-inspector.h +95 -35
  31. data/vendor/v8/include/v8-internal.h +389 -0
  32. data/vendor/v8/include/v8-platform.h +388 -52
  33. data/vendor/v8/include/v8-profiler.h +363 -213
  34. data/vendor/v8/include/v8-util.h +33 -36
  35. data/vendor/v8/include/v8-version-string.h +10 -5
  36. data/vendor/v8/include/v8-version.h +4 -4
  37. data/vendor/v8/include/v8-wasm-trap-handler-posix.h +31 -0
  38. data/vendor/v8/include/v8-wasm-trap-handler-win.h +28 -0
  39. data/vendor/v8/include/v8.h +3566 -1925
  40. data/vendor/v8/include/v8config.h +162 -114
  41. data/vendor/v8/out.gn/libv8/obj/libv8_libbase.a +0 -0
  42. data/vendor/v8/out.gn/libv8/obj/libv8_libplatform.a +0 -0
  43. data/vendor/v8/out.gn/libv8/obj/libv8_monolith.a +0 -0
  44. data/vendor/v8/out.gn/libv8/obj/third_party/icu/libicui18n.a +0 -0
  45. data/vendor/v8/out.gn/libv8/obj/third_party/icu/libicuuc.a +0 -0
  46. data/vendor/v8/out.gn/libv8/obj/third_party/zlib/google/libcompression_utils_portable.a +0 -0
  47. data/vendor/v8/out.gn/libv8/obj/third_party/zlib/libchrome_zlib.a +0 -0
  48. metadata +52 -31
  49. data/ext/libv8/arch.rb +0 -20
  50. data/vendor/v8/include/v8-debug.h +0 -255
  51. data/vendor/v8/include/v8-testing.h +0 -48
  52. data/vendor/v8/out/x64.release/libv8_base.a +0 -0
  53. data/vendor/v8/out/x64.release/libv8_builtins_generators.a +0 -0
  54. data/vendor/v8/out/x64.release/libv8_builtins_setup.a +0 -0
  55. data/vendor/v8/out/x64.release/libv8_libbase.a +0 -0
  56. data/vendor/v8/out/x64.release/libv8_libplatform.a +0 -0
  57. data/vendor/v8/out/x64.release/libv8_libsampler.a +0 -0
  58. data/vendor/v8/out/x64.release/libv8_nosnapshot.a +0 -0
  59. data/vendor/v8/out/x64.release/libv8_snapshot.a +0 -0
@@ -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_
@@ -1,48 +0,0 @@
1
- // Copyright 2010 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_TEST_H_
6
- #define V8_V8_TEST_H_
7
-
8
- #include "v8.h" // NOLINT(build/include)
9
-
10
- /**
11
- * Testing support for the V8 JavaScript engine.
12
- */
13
- namespace v8 {
14
-
15
- class V8_EXPORT Testing {
16
- public:
17
- enum StressType {
18
- kStressTypeOpt,
19
- kStressTypeDeopt
20
- };
21
-
22
- /**
23
- * Set the type of stressing to do. The default if not set is kStressTypeOpt.
24
- */
25
- static void SetStressRunType(StressType type);
26
-
27
- /**
28
- * Get the number of runs of a given test that is required to get the full
29
- * stress coverage.
30
- */
31
- static int GetStressRuns();
32
-
33
- /**
34
- * Indicate the number of the run which is about to start. The value of run
35
- * should be between 0 and one less than the result from GetStressRuns()
36
- */
37
- static void PrepareStressRun(int run);
38
-
39
- /**
40
- * Force deoptimization of all functions.
41
- */
42
- static void DeoptimizeAll(Isolate* isolate);
43
- };
44
-
45
-
46
- } // namespace v8
47
-
48
- #endif // V8_V8_TEST_H_