libv8-node 15.14.0.1-x86_64-linux → 17.9.1.0-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +4 -4
  2. data/ext/libv8-node/location.rb +1 -1
  3. data/ext/libv8-node/paths.rb +5 -1
  4. data/lib/libv8/node/version.rb +3 -3
  5. data/vendor/v8/include/cppgc/allocation.h +110 -44
  6. data/vendor/v8/include/cppgc/common.h +9 -6
  7. data/vendor/v8/include/cppgc/cross-thread-persistent.h +465 -0
  8. data/vendor/v8/include/cppgc/custom-space.h +37 -2
  9. data/vendor/v8/include/cppgc/default-platform.h +47 -48
  10. data/vendor/v8/include/cppgc/ephemeron-pair.h +30 -0
  11. data/vendor/v8/include/cppgc/explicit-management.h +82 -0
  12. data/vendor/v8/include/cppgc/garbage-collected.h +4 -3
  13. data/vendor/v8/include/cppgc/heap-consistency.h +253 -0
  14. data/vendor/v8/include/cppgc/heap-state.h +70 -0
  15. data/vendor/v8/include/cppgc/heap-statistics.h +120 -0
  16. data/vendor/v8/include/cppgc/heap.h +68 -6
  17. data/vendor/v8/include/cppgc/internal/api-constants.h +3 -3
  18. data/vendor/v8/include/cppgc/internal/caged-heap-local-data.h +4 -3
  19. data/vendor/v8/include/cppgc/internal/compiler-specific.h +2 -2
  20. data/vendor/v8/include/cppgc/internal/finalizer-trait.h +2 -0
  21. data/vendor/v8/include/cppgc/internal/gc-info.h +124 -13
  22. data/vendor/v8/include/cppgc/internal/name-trait.h +122 -0
  23. data/vendor/v8/include/cppgc/internal/persistent-node.h +94 -6
  24. data/vendor/v8/include/cppgc/internal/pointer-policies.h +81 -29
  25. data/vendor/v8/include/cppgc/internal/prefinalizer-handler.h +1 -1
  26. data/vendor/v8/include/cppgc/internal/write-barrier.h +398 -35
  27. data/vendor/v8/include/cppgc/liveness-broker.h +11 -2
  28. data/vendor/v8/include/cppgc/macros.h +2 -0
  29. data/vendor/v8/include/cppgc/member.h +87 -25
  30. data/vendor/v8/include/cppgc/name-provider.h +65 -0
  31. data/vendor/v8/include/cppgc/object-size-trait.h +58 -0
  32. data/vendor/v8/include/cppgc/persistent.h +41 -11
  33. data/vendor/v8/include/cppgc/platform.h +49 -25
  34. data/vendor/v8/include/cppgc/prefinalizer.h +2 -2
  35. data/vendor/v8/include/cppgc/process-heap-statistics.h +36 -0
  36. data/vendor/v8/include/cppgc/sentinel-pointer.h +32 -0
  37. data/vendor/v8/include/cppgc/source-location.h +2 -1
  38. data/vendor/v8/include/cppgc/testing.h +99 -0
  39. data/vendor/v8/include/cppgc/trace-trait.h +8 -3
  40. data/vendor/v8/include/cppgc/type-traits.h +157 -19
  41. data/vendor/v8/include/cppgc/visitor.h +194 -28
  42. data/vendor/v8/include/libplatform/libplatform.h +11 -0
  43. data/vendor/v8/include/libplatform/v8-tracing.h +2 -0
  44. data/vendor/v8/include/v8-array-buffer.h +433 -0
  45. data/vendor/v8/include/v8-callbacks.h +377 -0
  46. data/vendor/v8/include/v8-container.h +129 -0
  47. data/vendor/v8/include/v8-context.h +418 -0
  48. data/vendor/v8/include/v8-cppgc.h +261 -159
  49. data/vendor/v8/include/v8-data.h +65 -0
  50. data/vendor/v8/include/v8-date.h +43 -0
  51. data/vendor/v8/include/v8-debug.h +151 -0
  52. data/vendor/v8/include/v8-embedder-heap.h +238 -0
  53. data/vendor/v8/include/v8-exception.h +224 -0
  54. data/vendor/v8/include/v8-extension.h +62 -0
  55. data/vendor/v8/include/v8-external.h +37 -0
  56. data/vendor/v8/include/v8-fast-api-calls.h +652 -152
  57. data/vendor/v8/include/v8-forward.h +81 -0
  58. data/vendor/v8/include/v8-function-callback.h +475 -0
  59. data/vendor/v8/include/v8-function.h +122 -0
  60. data/vendor/v8/include/v8-initialization.h +282 -0
  61. data/vendor/v8/include/v8-inspector.h +33 -25
  62. data/vendor/v8/include/v8-internal.h +178 -31
  63. data/vendor/v8/include/v8-isolate.h +1662 -0
  64. data/vendor/v8/include/v8-json.h +47 -0
  65. data/vendor/v8/include/v8-local-handle.h +459 -0
  66. data/vendor/v8/include/v8-locker.h +148 -0
  67. data/vendor/v8/include/v8-maybe.h +137 -0
  68. data/vendor/v8/include/v8-memory-span.h +43 -0
  69. data/vendor/v8/include/v8-message.h +241 -0
  70. data/vendor/v8/include/v8-metrics.h +114 -9
  71. data/vendor/v8/include/v8-microtask-queue.h +152 -0
  72. data/vendor/v8/include/v8-microtask.h +28 -0
  73. data/vendor/v8/include/v8-object.h +770 -0
  74. data/vendor/v8/include/v8-persistent-handle.h +590 -0
  75. data/vendor/v8/include/v8-platform.h +74 -25
  76. data/vendor/v8/include/v8-primitive-object.h +118 -0
  77. data/vendor/v8/include/v8-primitive.h +858 -0
  78. data/vendor/v8/include/v8-profiler.h +72 -9
  79. data/vendor/v8/include/v8-promise.h +174 -0
  80. data/vendor/v8/include/v8-proxy.h +50 -0
  81. data/vendor/v8/include/v8-regexp.h +105 -0
  82. data/vendor/v8/include/v8-script.h +771 -0
  83. data/vendor/v8/include/v8-snapshot.h +198 -0
  84. data/vendor/v8/include/v8-statistics.h +215 -0
  85. data/vendor/v8/include/v8-template.h +1052 -0
  86. data/vendor/v8/include/v8-traced-handle.h +605 -0
  87. data/vendor/v8/include/v8-typed-array.h +282 -0
  88. data/vendor/v8/include/v8-unwinder-state.h +31 -0
  89. data/vendor/v8/include/v8-unwinder.h +129 -0
  90. data/vendor/v8/include/v8-util.h +8 -2
  91. data/vendor/v8/include/v8-value-serializer.h +249 -0
  92. data/vendor/v8/include/v8-value.h +526 -0
  93. data/vendor/v8/include/v8-version.h +3 -3
  94. data/vendor/v8/include/v8-wasm.h +245 -0
  95. data/vendor/v8/include/v8-weak-callback-info.h +73 -0
  96. data/vendor/v8/include/v8.h +41 -12050
  97. data/vendor/v8/include/v8config.h +87 -11
  98. data/vendor/v8/{out.gn → x86_64-linux}/libv8/obj/libv8_monolith.a +0 -0
  99. metadata +60 -6
  100. data/vendor/v8/include/cppgc/internal/process-heap.h +0 -34
@@ -0,0 +1,249 @@
1
+ // Copyright 2021 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 INCLUDE_V8_VALUE_SERIALIZER_H_
6
+ #define INCLUDE_V8_VALUE_SERIALIZER_H_
7
+
8
+ #include <stddef.h>
9
+ #include <stdint.h>
10
+
11
+ #include <utility>
12
+
13
+ #include "v8-local-handle.h" // NOLINT(build/include_directory)
14
+ #include "v8-maybe.h" // NOLINT(build/include_directory)
15
+ #include "v8config.h" // NOLINT(build/include_directory)
16
+
17
+ namespace v8 {
18
+
19
+ class ArrayBuffer;
20
+ class Isolate;
21
+ class Object;
22
+ class SharedArrayBuffer;
23
+ class String;
24
+ class WasmModuleObject;
25
+ class Value;
26
+
27
+ namespace internal {
28
+ struct ScriptStreamingData;
29
+ } // namespace internal
30
+
31
+ /**
32
+ * Value serialization compatible with the HTML structured clone algorithm.
33
+ * The format is backward-compatible (i.e. safe to store to disk).
34
+ */
35
+ class V8_EXPORT ValueSerializer {
36
+ public:
37
+ class V8_EXPORT Delegate {
38
+ public:
39
+ virtual ~Delegate() = default;
40
+
41
+ /**
42
+ * Handles the case where a DataCloneError would be thrown in the structured
43
+ * clone spec. Other V8 embedders may throw some other appropriate exception
44
+ * type.
45
+ */
46
+ virtual void ThrowDataCloneError(Local<String> message) = 0;
47
+
48
+ /**
49
+ * The embedder overrides this method to write some kind of host object, if
50
+ * possible. If not, a suitable exception should be thrown and
51
+ * Nothing<bool>() returned.
52
+ */
53
+ virtual Maybe<bool> WriteHostObject(Isolate* isolate, Local<Object> object);
54
+
55
+ /**
56
+ * Called when the ValueSerializer is going to serialize a
57
+ * SharedArrayBuffer object. The embedder must return an ID for the
58
+ * object, using the same ID if this SharedArrayBuffer has already been
59
+ * serialized in this buffer. When deserializing, this ID will be passed to
60
+ * ValueDeserializer::GetSharedArrayBufferFromId as |clone_id|.
61
+ *
62
+ * If the object cannot be serialized, an
63
+ * exception should be thrown and Nothing<uint32_t>() returned.
64
+ */
65
+ virtual Maybe<uint32_t> GetSharedArrayBufferId(
66
+ Isolate* isolate, Local<SharedArrayBuffer> shared_array_buffer);
67
+
68
+ virtual Maybe<uint32_t> GetWasmModuleTransferId(
69
+ Isolate* isolate, Local<WasmModuleObject> module);
70
+ /**
71
+ * Allocates memory for the buffer of at least the size provided. The actual
72
+ * size (which may be greater or equal) is written to |actual_size|. If no
73
+ * buffer has been allocated yet, nullptr will be provided.
74
+ *
75
+ * If the memory cannot be allocated, nullptr should be returned.
76
+ * |actual_size| will be ignored. It is assumed that |old_buffer| is still
77
+ * valid in this case and has not been modified.
78
+ *
79
+ * The default implementation uses the stdlib's `realloc()` function.
80
+ */
81
+ virtual void* ReallocateBufferMemory(void* old_buffer, size_t size,
82
+ size_t* actual_size);
83
+
84
+ /**
85
+ * Frees a buffer allocated with |ReallocateBufferMemory|.
86
+ *
87
+ * The default implementation uses the stdlib's `free()` function.
88
+ */
89
+ virtual void FreeBufferMemory(void* buffer);
90
+ };
91
+
92
+ explicit ValueSerializer(Isolate* isolate);
93
+ ValueSerializer(Isolate* isolate, Delegate* delegate);
94
+ ~ValueSerializer();
95
+
96
+ /**
97
+ * Writes out a header, which includes the format version.
98
+ */
99
+ void WriteHeader();
100
+
101
+ /**
102
+ * Serializes a JavaScript value into the buffer.
103
+ */
104
+ V8_WARN_UNUSED_RESULT Maybe<bool> WriteValue(Local<Context> context,
105
+ Local<Value> value);
106
+
107
+ /**
108
+ * Returns the stored data (allocated using the delegate's
109
+ * ReallocateBufferMemory) and its size. This serializer should not be used
110
+ * once the buffer is released. The contents are undefined if a previous write
111
+ * has failed. Ownership of the buffer is transferred to the caller.
112
+ */
113
+ V8_WARN_UNUSED_RESULT std::pair<uint8_t*, size_t> Release();
114
+
115
+ /**
116
+ * Marks an ArrayBuffer as havings its contents transferred out of band.
117
+ * Pass the corresponding ArrayBuffer in the deserializing context to
118
+ * ValueDeserializer::TransferArrayBuffer.
119
+ */
120
+ void TransferArrayBuffer(uint32_t transfer_id,
121
+ Local<ArrayBuffer> array_buffer);
122
+
123
+ /**
124
+ * Indicate whether to treat ArrayBufferView objects as host objects,
125
+ * i.e. pass them to Delegate::WriteHostObject. This should not be
126
+ * called when no Delegate was passed.
127
+ *
128
+ * The default is not to treat ArrayBufferViews as host objects.
129
+ */
130
+ void SetTreatArrayBufferViewsAsHostObjects(bool mode);
131
+
132
+ /**
133
+ * Write raw data in various common formats to the buffer.
134
+ * Note that integer types are written in base-128 varint format, not with a
135
+ * binary copy. For use during an override of Delegate::WriteHostObject.
136
+ */
137
+ void WriteUint32(uint32_t value);
138
+ void WriteUint64(uint64_t value);
139
+ void WriteDouble(double value);
140
+ void WriteRawBytes(const void* source, size_t length);
141
+
142
+ ValueSerializer(const ValueSerializer&) = delete;
143
+ void operator=(const ValueSerializer&) = delete;
144
+
145
+ private:
146
+ struct PrivateData;
147
+ PrivateData* private_;
148
+ };
149
+
150
+ /**
151
+ * Deserializes values from data written with ValueSerializer, or a compatible
152
+ * implementation.
153
+ */
154
+ class V8_EXPORT ValueDeserializer {
155
+ public:
156
+ class V8_EXPORT Delegate {
157
+ public:
158
+ virtual ~Delegate() = default;
159
+
160
+ /**
161
+ * The embedder overrides this method to read some kind of host object, if
162
+ * possible. If not, a suitable exception should be thrown and
163
+ * MaybeLocal<Object>() returned.
164
+ */
165
+ virtual MaybeLocal<Object> ReadHostObject(Isolate* isolate);
166
+
167
+ /**
168
+ * Get a WasmModuleObject given a transfer_id previously provided
169
+ * by ValueSerializer::GetWasmModuleTransferId
170
+ */
171
+ virtual MaybeLocal<WasmModuleObject> GetWasmModuleFromId(
172
+ Isolate* isolate, uint32_t transfer_id);
173
+
174
+ /**
175
+ * Get a SharedArrayBuffer given a clone_id previously provided
176
+ * by ValueSerializer::GetSharedArrayBufferId
177
+ */
178
+ virtual MaybeLocal<SharedArrayBuffer> GetSharedArrayBufferFromId(
179
+ Isolate* isolate, uint32_t clone_id);
180
+ };
181
+
182
+ ValueDeserializer(Isolate* isolate, const uint8_t* data, size_t size);
183
+ ValueDeserializer(Isolate* isolate, const uint8_t* data, size_t size,
184
+ Delegate* delegate);
185
+ ~ValueDeserializer();
186
+
187
+ /**
188
+ * Reads and validates a header (including the format version).
189
+ * May, for example, reject an invalid or unsupported wire format.
190
+ */
191
+ V8_WARN_UNUSED_RESULT Maybe<bool> ReadHeader(Local<Context> context);
192
+
193
+ /**
194
+ * Deserializes a JavaScript value from the buffer.
195
+ */
196
+ V8_WARN_UNUSED_RESULT MaybeLocal<Value> ReadValue(Local<Context> context);
197
+
198
+ /**
199
+ * Accepts the array buffer corresponding to the one passed previously to
200
+ * ValueSerializer::TransferArrayBuffer.
201
+ */
202
+ void TransferArrayBuffer(uint32_t transfer_id,
203
+ Local<ArrayBuffer> array_buffer);
204
+
205
+ /**
206
+ * Similar to TransferArrayBuffer, but for SharedArrayBuffer.
207
+ * The id is not necessarily in the same namespace as unshared ArrayBuffer
208
+ * objects.
209
+ */
210
+ void TransferSharedArrayBuffer(uint32_t id,
211
+ Local<SharedArrayBuffer> shared_array_buffer);
212
+
213
+ /**
214
+ * Must be called before ReadHeader to enable support for reading the legacy
215
+ * wire format (i.e., which predates this being shipped).
216
+ *
217
+ * Don't use this unless you need to read data written by previous versions of
218
+ * blink::ScriptValueSerializer.
219
+ */
220
+ void SetSupportsLegacyWireFormat(bool supports_legacy_wire_format);
221
+
222
+ /**
223
+ * Reads the underlying wire format version. Likely mostly to be useful to
224
+ * legacy code reading old wire format versions. Must be called after
225
+ * ReadHeader.
226
+ */
227
+ uint32_t GetWireFormatVersion() const;
228
+
229
+ /**
230
+ * Reads raw data in various common formats to the buffer.
231
+ * Note that integer types are read in base-128 varint format, not with a
232
+ * binary copy. For use during an override of Delegate::ReadHostObject.
233
+ */
234
+ V8_WARN_UNUSED_RESULT bool ReadUint32(uint32_t* value);
235
+ V8_WARN_UNUSED_RESULT bool ReadUint64(uint64_t* value);
236
+ V8_WARN_UNUSED_RESULT bool ReadDouble(double* value);
237
+ V8_WARN_UNUSED_RESULT bool ReadRawBytes(size_t length, const void** data);
238
+
239
+ ValueDeserializer(const ValueDeserializer&) = delete;
240
+ void operator=(const ValueDeserializer&) = delete;
241
+
242
+ private:
243
+ struct PrivateData;
244
+ PrivateData* private_;
245
+ };
246
+
247
+ } // namespace v8
248
+
249
+ #endif // INCLUDE_V8_VALUE_SERIALIZER_H_