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

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 (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,433 @@
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_ARRAY_BUFFER_H_
6
+ #define INCLUDE_V8_ARRAY_BUFFER_H_
7
+
8
+ #include <stddef.h>
9
+
10
+ #include <memory>
11
+
12
+ #include "v8-local-handle.h" // NOLINT(build/include_directory)
13
+ #include "v8-object.h" // NOLINT(build/include_directory)
14
+ #include "v8config.h" // NOLINT(build/include_directory)
15
+
16
+ namespace v8 {
17
+
18
+ class SharedArrayBuffer;
19
+
20
+ #ifndef V8_ARRAY_BUFFER_INTERNAL_FIELD_COUNT
21
+ // The number of required internal fields can be defined by embedder.
22
+ #define V8_ARRAY_BUFFER_INTERNAL_FIELD_COUNT 2
23
+ #endif
24
+
25
+ enum class ArrayBufferCreationMode { kInternalized, kExternalized };
26
+
27
+ /**
28
+ * A wrapper around the backing store (i.e. the raw memory) of an array buffer.
29
+ * See a document linked in http://crbug.com/v8/9908 for more information.
30
+ *
31
+ * The allocation and destruction of backing stores is generally managed by
32
+ * V8. Clients should always use standard C++ memory ownership types (i.e.
33
+ * std::unique_ptr and std::shared_ptr) to manage lifetimes of backing stores
34
+ * properly, since V8 internal objects may alias backing stores.
35
+ *
36
+ * This object does not keep the underlying |ArrayBuffer::Allocator| alive by
37
+ * default. Use Isolate::CreateParams::array_buffer_allocator_shared when
38
+ * creating the Isolate to make it hold a reference to the allocator itself.
39
+ */
40
+ class V8_EXPORT BackingStore : public v8::internal::BackingStoreBase {
41
+ public:
42
+ ~BackingStore();
43
+
44
+ /**
45
+ * Return a pointer to the beginning of the memory block for this backing
46
+ * store. The pointer is only valid as long as this backing store object
47
+ * lives.
48
+ */
49
+ void* Data() const;
50
+
51
+ /**
52
+ * The length (in bytes) of this backing store.
53
+ */
54
+ size_t ByteLength() const;
55
+
56
+ /**
57
+ * Indicates whether the backing store was created for an ArrayBuffer or
58
+ * a SharedArrayBuffer.
59
+ */
60
+ bool IsShared() const;
61
+
62
+ /**
63
+ * Prevent implicit instantiation of operator delete with size_t argument.
64
+ * The size_t argument would be incorrect because ptr points to the
65
+ * internal BackingStore object.
66
+ */
67
+ void operator delete(void* ptr) { ::operator delete(ptr); }
68
+
69
+ /**
70
+ * Wrapper around ArrayBuffer::Allocator::Reallocate that preserves IsShared.
71
+ * Assumes that the backing_store was allocated by the ArrayBuffer allocator
72
+ * of the given isolate.
73
+ */
74
+ static std::unique_ptr<BackingStore> Reallocate(
75
+ v8::Isolate* isolate, std::unique_ptr<BackingStore> backing_store,
76
+ size_t byte_length);
77
+
78
+ /**
79
+ * This callback is used only if the memory block for a BackingStore cannot be
80
+ * allocated with an ArrayBuffer::Allocator. In such cases the destructor of
81
+ * the BackingStore invokes the callback to free the memory block.
82
+ */
83
+ using DeleterCallback = void (*)(void* data, size_t length,
84
+ void* deleter_data);
85
+
86
+ /**
87
+ * If the memory block of a BackingStore is static or is managed manually,
88
+ * then this empty deleter along with nullptr deleter_data can be passed to
89
+ * ArrayBuffer::NewBackingStore to indicate that.
90
+ *
91
+ * The manually managed case should be used with caution and only when it
92
+ * is guaranteed that the memory block freeing happens after detaching its
93
+ * ArrayBuffer.
94
+ */
95
+ static void EmptyDeleter(void* data, size_t length, void* deleter_data);
96
+
97
+ private:
98
+ /**
99
+ * See [Shared]ArrayBuffer::GetBackingStore and
100
+ * [Shared]ArrayBuffer::NewBackingStore.
101
+ */
102
+ BackingStore();
103
+ };
104
+
105
+ #if !defined(V8_IMMINENT_DEPRECATION_WARNINGS)
106
+ // Use v8::BackingStore::DeleterCallback instead.
107
+ using BackingStoreDeleterCallback = void (*)(void* data, size_t length,
108
+ void* deleter_data);
109
+
110
+ #endif
111
+
112
+ /**
113
+ * An instance of the built-in ArrayBuffer constructor (ES6 draft 15.13.5).
114
+ */
115
+ class V8_EXPORT ArrayBuffer : public Object {
116
+ public:
117
+ /**
118
+ * A thread-safe allocator that V8 uses to allocate |ArrayBuffer|'s memory.
119
+ * The allocator is a global V8 setting. It has to be set via
120
+ * Isolate::CreateParams.
121
+ *
122
+ * Memory allocated through this allocator by V8 is accounted for as external
123
+ * memory by V8. Note that V8 keeps track of the memory for all internalized
124
+ * |ArrayBuffer|s. Responsibility for tracking external memory (using
125
+ * Isolate::AdjustAmountOfExternalAllocatedMemory) is handed over to the
126
+ * embedder upon externalization and taken over upon internalization (creating
127
+ * an internalized buffer from an existing buffer).
128
+ *
129
+ * Note that it is unsafe to call back into V8 from any of the allocator
130
+ * functions.
131
+ */
132
+ class V8_EXPORT Allocator {
133
+ public:
134
+ virtual ~Allocator() = default;
135
+
136
+ /**
137
+ * Allocate |length| bytes. Return nullptr if allocation is not successful.
138
+ * Memory should be initialized to zeroes.
139
+ */
140
+ virtual void* Allocate(size_t length) = 0;
141
+
142
+ /**
143
+ * Allocate |length| bytes. Return nullptr if allocation is not successful.
144
+ * Memory does not have to be initialized.
145
+ */
146
+ virtual void* AllocateUninitialized(size_t length) = 0;
147
+
148
+ /**
149
+ * Free the memory block of size |length|, pointed to by |data|.
150
+ * That memory is guaranteed to be previously allocated by |Allocate|.
151
+ */
152
+ virtual void Free(void* data, size_t length) = 0;
153
+
154
+ /**
155
+ * Reallocate the memory block of size |old_length| to a memory block of
156
+ * size |new_length| by expanding, contracting, or copying the existing
157
+ * memory block. If |new_length| > |old_length|, then the new part of
158
+ * the memory must be initialized to zeros. Return nullptr if reallocation
159
+ * is not successful.
160
+ *
161
+ * The caller guarantees that the memory block was previously allocated
162
+ * using Allocate or AllocateUninitialized.
163
+ *
164
+ * The default implementation allocates a new block and copies data.
165
+ */
166
+ virtual void* Reallocate(void* data, size_t old_length, size_t new_length);
167
+
168
+ /**
169
+ * ArrayBuffer allocation mode. kNormal is a malloc/free style allocation,
170
+ * while kReservation is for larger allocations with the ability to set
171
+ * access permissions.
172
+ */
173
+ enum class AllocationMode { kNormal, kReservation };
174
+
175
+ /**
176
+ * Convenience allocator.
177
+ *
178
+ * When the virtual memory cage is enabled, this allocator will allocate its
179
+ * backing memory inside the cage. Otherwise, it will rely on malloc/free.
180
+ *
181
+ * Caller takes ownership, i.e. the returned object needs to be freed using
182
+ * |delete allocator| once it is no longer in use.
183
+ */
184
+ static Allocator* NewDefaultAllocator();
185
+ };
186
+
187
+ /**
188
+ * Data length in bytes.
189
+ */
190
+ size_t ByteLength() const;
191
+
192
+ /**
193
+ * Create a new ArrayBuffer. Allocate |byte_length| bytes.
194
+ * Allocated memory will be owned by a created ArrayBuffer and
195
+ * will be deallocated when it is garbage-collected,
196
+ * unless the object is externalized.
197
+ */
198
+ static Local<ArrayBuffer> New(Isolate* isolate, size_t byte_length);
199
+
200
+ /**
201
+ * Create a new ArrayBuffer with an existing backing store.
202
+ * The created array keeps a reference to the backing store until the array
203
+ * is garbage collected. Note that the IsExternal bit does not affect this
204
+ * reference from the array to the backing store.
205
+ *
206
+ * In future IsExternal bit will be removed. Until then the bit is set as
207
+ * follows. If the backing store does not own the underlying buffer, then
208
+ * the array is created in externalized state. Otherwise, the array is created
209
+ * in internalized state. In the latter case the array can be transitioned
210
+ * to the externalized state using Externalize(backing_store).
211
+ */
212
+ static Local<ArrayBuffer> New(Isolate* isolate,
213
+ std::shared_ptr<BackingStore> backing_store);
214
+
215
+ /**
216
+ * Returns a new standalone BackingStore that is allocated using the array
217
+ * buffer allocator of the isolate. The result can be later passed to
218
+ * ArrayBuffer::New.
219
+ *
220
+ * If the allocator returns nullptr, then the function may cause GCs in the
221
+ * given isolate and re-try the allocation. If GCs do not help, then the
222
+ * function will crash with an out-of-memory error.
223
+ */
224
+ static std::unique_ptr<BackingStore> NewBackingStore(Isolate* isolate,
225
+ size_t byte_length);
226
+ /**
227
+ * Returns a new standalone BackingStore that takes over the ownership of
228
+ * the given buffer. The destructor of the BackingStore invokes the given
229
+ * deleter callback.
230
+ *
231
+ * The result can be later passed to ArrayBuffer::New. The raw pointer
232
+ * to the buffer must not be passed again to any V8 API function.
233
+ */
234
+ static std::unique_ptr<BackingStore> NewBackingStore(
235
+ void* data, size_t byte_length, v8::BackingStore::DeleterCallback deleter,
236
+ void* deleter_data);
237
+
238
+ /**
239
+ * Returns true if this ArrayBuffer may be detached.
240
+ */
241
+ bool IsDetachable() const;
242
+
243
+ /**
244
+ * Detaches this ArrayBuffer and all its views (typed arrays).
245
+ * Detaching sets the byte length of the buffer and all typed arrays to zero,
246
+ * preventing JavaScript from ever accessing underlying backing store.
247
+ * ArrayBuffer should have been externalized and must be detachable.
248
+ */
249
+ void Detach();
250
+
251
+ /**
252
+ * Get a shared pointer to the backing store of this array buffer. This
253
+ * pointer coordinates the lifetime management of the internal storage
254
+ * with any live ArrayBuffers on the heap, even across isolates. The embedder
255
+ * should not attempt to manage lifetime of the storage through other means.
256
+ */
257
+ std::shared_ptr<BackingStore> GetBackingStore();
258
+
259
+ V8_INLINE static ArrayBuffer* Cast(Value* value) {
260
+ #ifdef V8_ENABLE_CHECKS
261
+ CheckCast(value);
262
+ #endif
263
+ return static_cast<ArrayBuffer*>(value);
264
+ }
265
+
266
+ static const int kInternalFieldCount = V8_ARRAY_BUFFER_INTERNAL_FIELD_COUNT;
267
+ static const int kEmbedderFieldCount = V8_ARRAY_BUFFER_INTERNAL_FIELD_COUNT;
268
+
269
+ private:
270
+ ArrayBuffer();
271
+ static void CheckCast(Value* obj);
272
+ };
273
+
274
+ #ifndef V8_ARRAY_BUFFER_VIEW_INTERNAL_FIELD_COUNT
275
+ // The number of required internal fields can be defined by embedder.
276
+ #define V8_ARRAY_BUFFER_VIEW_INTERNAL_FIELD_COUNT 2
277
+ #endif
278
+
279
+ /**
280
+ * A base class for an instance of one of "views" over ArrayBuffer,
281
+ * including TypedArrays and DataView (ES6 draft 15.13).
282
+ */
283
+ class V8_EXPORT ArrayBufferView : public Object {
284
+ public:
285
+ /**
286
+ * Returns underlying ArrayBuffer.
287
+ */
288
+ Local<ArrayBuffer> Buffer();
289
+ /**
290
+ * Byte offset in |Buffer|.
291
+ */
292
+ size_t ByteOffset();
293
+ /**
294
+ * Size of a view in bytes.
295
+ */
296
+ size_t ByteLength();
297
+
298
+ /**
299
+ * Copy the contents of the ArrayBufferView's buffer to an embedder defined
300
+ * memory without additional overhead that calling ArrayBufferView::Buffer
301
+ * might incur.
302
+ *
303
+ * Will write at most min(|byte_length|, ByteLength) bytes starting at
304
+ * ByteOffset of the underlying buffer to the memory starting at |dest|.
305
+ * Returns the number of bytes actually written.
306
+ */
307
+ size_t CopyContents(void* dest, size_t byte_length);
308
+
309
+ /**
310
+ * Returns true if ArrayBufferView's backing ArrayBuffer has already been
311
+ * allocated.
312
+ */
313
+ bool HasBuffer() const;
314
+
315
+ V8_INLINE static ArrayBufferView* Cast(Value* value) {
316
+ #ifdef V8_ENABLE_CHECKS
317
+ CheckCast(value);
318
+ #endif
319
+ return static_cast<ArrayBufferView*>(value);
320
+ }
321
+
322
+ static const int kInternalFieldCount =
323
+ V8_ARRAY_BUFFER_VIEW_INTERNAL_FIELD_COUNT;
324
+ static const int kEmbedderFieldCount =
325
+ V8_ARRAY_BUFFER_VIEW_INTERNAL_FIELD_COUNT;
326
+
327
+ private:
328
+ ArrayBufferView();
329
+ static void CheckCast(Value* obj);
330
+ };
331
+
332
+ /**
333
+ * An instance of DataView constructor (ES6 draft 15.13.7).
334
+ */
335
+ class V8_EXPORT DataView : public ArrayBufferView {
336
+ public:
337
+ static Local<DataView> New(Local<ArrayBuffer> array_buffer,
338
+ size_t byte_offset, size_t length);
339
+ static Local<DataView> New(Local<SharedArrayBuffer> shared_array_buffer,
340
+ size_t byte_offset, size_t length);
341
+ V8_INLINE static DataView* Cast(Value* value) {
342
+ #ifdef V8_ENABLE_CHECKS
343
+ CheckCast(value);
344
+ #endif
345
+ return static_cast<DataView*>(value);
346
+ }
347
+
348
+ private:
349
+ DataView();
350
+ static void CheckCast(Value* obj);
351
+ };
352
+
353
+ /**
354
+ * An instance of the built-in SharedArrayBuffer constructor.
355
+ */
356
+ class V8_EXPORT SharedArrayBuffer : public Object {
357
+ public:
358
+ /**
359
+ * Data length in bytes.
360
+ */
361
+ size_t ByteLength() const;
362
+
363
+ /**
364
+ * Create a new SharedArrayBuffer. Allocate |byte_length| bytes.
365
+ * Allocated memory will be owned by a created SharedArrayBuffer and
366
+ * will be deallocated when it is garbage-collected,
367
+ * unless the object is externalized.
368
+ */
369
+ static Local<SharedArrayBuffer> New(Isolate* isolate, size_t byte_length);
370
+
371
+ /**
372
+ * Create a new SharedArrayBuffer with an existing backing store.
373
+ * The created array keeps a reference to the backing store until the array
374
+ * is garbage collected. Note that the IsExternal bit does not affect this
375
+ * reference from the array to the backing store.
376
+ *
377
+ * In future IsExternal bit will be removed. Until then the bit is set as
378
+ * follows. If the backing store does not own the underlying buffer, then
379
+ * the array is created in externalized state. Otherwise, the array is created
380
+ * in internalized state. In the latter case the array can be transitioned
381
+ * to the externalized state using Externalize(backing_store).
382
+ */
383
+ static Local<SharedArrayBuffer> New(
384
+ Isolate* isolate, std::shared_ptr<BackingStore> backing_store);
385
+
386
+ /**
387
+ * Returns a new standalone BackingStore that is allocated using the array
388
+ * buffer allocator of the isolate. The result can be later passed to
389
+ * SharedArrayBuffer::New.
390
+ *
391
+ * If the allocator returns nullptr, then the function may cause GCs in the
392
+ * given isolate and re-try the allocation. If GCs do not help, then the
393
+ * function will crash with an out-of-memory error.
394
+ */
395
+ static std::unique_ptr<BackingStore> NewBackingStore(Isolate* isolate,
396
+ size_t byte_length);
397
+ /**
398
+ * Returns a new standalone BackingStore that takes over the ownership of
399
+ * the given buffer. The destructor of the BackingStore invokes the given
400
+ * deleter callback.
401
+ *
402
+ * The result can be later passed to SharedArrayBuffer::New. The raw pointer
403
+ * to the buffer must not be passed again to any V8 functions.
404
+ */
405
+ static std::unique_ptr<BackingStore> NewBackingStore(
406
+ void* data, size_t byte_length, v8::BackingStore::DeleterCallback deleter,
407
+ void* deleter_data);
408
+
409
+ /**
410
+ * Get a shared pointer to the backing store of this array buffer. This
411
+ * pointer coordinates the lifetime management of the internal storage
412
+ * with any live ArrayBuffers on the heap, even across isolates. The embedder
413
+ * should not attempt to manage lifetime of the storage through other means.
414
+ */
415
+ std::shared_ptr<BackingStore> GetBackingStore();
416
+
417
+ V8_INLINE static SharedArrayBuffer* Cast(Value* value) {
418
+ #ifdef V8_ENABLE_CHECKS
419
+ CheckCast(value);
420
+ #endif
421
+ return static_cast<SharedArrayBuffer*>(value);
422
+ }
423
+
424
+ static const int kInternalFieldCount = V8_ARRAY_BUFFER_INTERNAL_FIELD_COUNT;
425
+
426
+ private:
427
+ SharedArrayBuffer();
428
+ static void CheckCast(Value* obj);
429
+ };
430
+
431
+ } // namespace v8
432
+
433
+ #endif // INCLUDE_V8_ARRAY_BUFFER_H_