Skip to content

Commit 117efe9

Browse files
anonrigruyadorno
authored andcommitted
deps: V8: cherry-pick 9df5ef70ff18
Original commit message: Add an `v8::ArrayBuffer::WasDetached` method to the C++ API V8's C++ API does not give a way to tell whether an ArrayBuffer has been detached from the `v8::ArrayBuffer` class. In fact, as far as can be told from the C++ API without running JS code, detached ArrayBuffers behave the same as zero-sized ArrayBuffers and there is no way to observe the difference. However, this difference can be observed in JS because constructing a TypedArray from a detached ArrayBuffer will throw. This change adds a `WasDetached` method to the `v8::ArrayBuffer` class to give embedders access to this information without having to run JS code. Bug: v8:13159 Change-Id: I2bb1e380cee1cecd31f6d48ec3d9f28c03a8a673 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3810345 Commit-Queue: Toon Verwaest <[email protected]> Reviewed-by: Toon Verwaest <[email protected]> Cr-Commit-Position: refs/heads/main@{#83963} Refs: v8/v8@9df5ef7 PR-URL: #45474 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Daeyeon Jeong <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 8ff16fd commit 117efe9

File tree

6 files changed

+46
-1
lines changed

6 files changed

+46
-1
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.19',
39+
'v8_embedder_string': '-node.20',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Allan Sandfeld Jensen <[email protected]>
6060
6161
Andreas Anyuru <[email protected]>
6262
Andrei Kashcha <[email protected]>
63+
Andreu Botella <[email protected]>
6364
Andrew Paprocki <[email protected]>
6465
Anna Henningsen <[email protected]>
6566
Antoine du Hamel <[email protected]>

deps/v8/include/v8-array-buffer.h

+8
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,11 @@ class V8_EXPORT ArrayBuffer : public Object {
240240
*/
241241
bool IsDetachable() const;
242242

243+
/**
244+
* Returns true if this ArrayBuffer has been detached.
245+
*/
246+
bool WasDetached() const;
247+
243248
/**
244249
* Detaches this ArrayBuffer and all its views (typed arrays).
245250
* Detaching sets the byte length of the buffer and all typed arrays to zero,
@@ -253,6 +258,9 @@ class V8_EXPORT ArrayBuffer : public Object {
253258
* pointer coordinates the lifetime management of the internal storage
254259
* with any live ArrayBuffers on the heap, even across isolates. The embedder
255260
* should not attempt to manage lifetime of the storage through other means.
261+
*
262+
* The returned shared pointer will not be empty, even if the ArrayBuffer has
263+
* been detached. Use |WasDetached| to tell if it has been detached instead.
256264
*/
257265
std::shared_ptr<BackingStore> GetBackingStore();
258266

deps/v8/src/api/api.cc

+4
Original file line numberDiff line numberDiff line change
@@ -8064,6 +8064,10 @@ bool v8::ArrayBuffer::IsDetachable() const {
80648064
return Utils::OpenHandle(this)->is_detachable();
80658065
}
80668066

8067+
bool v8::ArrayBuffer::WasDetached() const {
8068+
return Utils::OpenHandle(this)->was_detached();
8069+
}
8070+
80678071
namespace {
80688072
std::shared_ptr<i::BackingStore> ToInternal(
80698073
std::shared_ptr<i::BackingStoreBase> backing_store) {

deps/v8/test/cctest/cctest.status

+1
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@
516516
'test-api/WasmI32AtomicWaitCallback': [SKIP],
517517
'test-api/WasmI64AtomicWaitCallback': [SKIP],
518518
'test-api/WasmSetJitCodeEventHandler': [SKIP],
519+
'test-api-array-buffer/ArrayBuffer_NonDetachableWasDetached': [SKIP],
519520
'test-backing-store/Run_WasmModule_Buffer_Externalized_Regression_UseAfterFree': [SKIP],
520521
'test-c-wasm-entry/*': [SKIP],
521522
'test-compilation-cache/*': [SKIP],

deps/v8/test/cctest/test-api-array-buffer.cc

+31
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,37 @@ THREADED_TEST(ArrayBuffer_DetachingScript) {
245245
CheckDataViewIsDetached(dv);
246246
}
247247

248+
THREADED_TEST(ArrayBuffer_WasDetached) {
249+
LocalContext env;
250+
v8::Isolate* isolate = env->GetIsolate();
251+
v8::HandleScope handle_scope(isolate);
252+
253+
Local<v8::ArrayBuffer> ab = v8::ArrayBuffer::New(isolate, 0);
254+
CHECK(!ab->WasDetached());
255+
256+
ab->Detach();
257+
CHECK(ab->WasDetached());
258+
}
259+
260+
THREADED_TEST(ArrayBuffer_NonDetachableWasDetached) {
261+
LocalContext env;
262+
v8::Isolate* isolate = env->GetIsolate();
263+
v8::HandleScope handle_scope(isolate);
264+
265+
CompileRun(R"JS(
266+
var wasmMemory = new WebAssembly.Memory({initial: 1, maximum: 2});
267+
)JS");
268+
269+
Local<v8::ArrayBuffer> non_detachable =
270+
CompileRun("wasmMemory.buffer").As<v8::ArrayBuffer>();
271+
CHECK(!non_detachable->IsDetachable());
272+
CHECK(!non_detachable->WasDetached());
273+
274+
CompileRun("wasmMemory.grow(1)");
275+
CHECK(!non_detachable->IsDetachable());
276+
CHECK(non_detachable->WasDetached());
277+
}
278+
248279
THREADED_TEST(ArrayBuffer_ExternalizeEmpty) {
249280
LocalContext env;
250281
v8::Isolate* isolate = env->GetIsolate();

0 commit comments

Comments
 (0)