2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-21 00:30:26 +00:00
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Thu, 20 Sep 2018 17:44:26 -0700
|
|
|
|
Subject: add_realloc.patch
|
|
|
|
|
|
|
|
Blink overrides ArrayBuffer's allocator with its own one, while Node simply
|
|
|
|
uses malloc and free, so we need to use v8's allocator in Node. As part of the
|
|
|
|
10.6.0 upgrade, we needed to make SerializerDelegate accept an allocator
|
|
|
|
argument in its constructor, and override ReallocateBufferMemory and
|
|
|
|
FreeBufferMemory to use the allocator. We cannot simply allocate and then memcpy
|
|
|
|
when we override ReallocateBufferMemory, so we therefore need to implement
|
|
|
|
Realloc on the v8 side and correspondingly in gin.
|
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/gin/array_buffer.cc b/gin/array_buffer.cc
|
2019-01-12 01:00:43 +00:00
|
|
|
index a02797e94f61e8c71428633a4585a625dc5aadbd..305b7d307d233af699e3f495f85de0f8097ff311 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/gin/array_buffer.cc
|
|
|
|
+++ b/gin/array_buffer.cc
|
|
|
|
@@ -43,6 +43,10 @@ void* ArrayBufferAllocator::AllocateUninitialized(size_t length) {
|
|
|
|
return malloc(length);
|
|
|
|
}
|
2018-09-14 18:03:43 +00:00
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
+void* ArrayBufferAllocator::Realloc(void* data, size_t length) {
|
|
|
|
+ return realloc(data, length);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void ArrayBufferAllocator::Free(void* data, size_t length) {
|
|
|
|
free(data);
|
|
|
|
}
|
|
|
|
diff --git a/gin/array_buffer.h b/gin/array_buffer.h
|
2018-10-24 18:24:11 +00:00
|
|
|
index 2aef366ac8194aa261cbca6abc051f7da8a988d3..3c7d66c81032636abcca4f1538ce9b7f4ddb2de2 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/gin/array_buffer.h
|
|
|
|
+++ b/gin/array_buffer.h
|
|
|
|
@@ -21,6 +21,7 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
|
|
|
|
public:
|
|
|
|
void* Allocate(size_t length) override;
|
|
|
|
void* AllocateUninitialized(size_t length) override;
|
|
|
|
+ void* Realloc(void* data, size_t length) override;
|
|
|
|
void Free(void* data, size_t length) override;
|
2018-09-14 18:03:43 +00:00
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
GIN_EXPORT static ArrayBufferAllocator* SharedInstance();
|
2018-09-14 18:03:43 +00:00
|
|
|
diff --git a/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc b/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
2019-08-24 01:14:23 +00:00
|
|
|
index 7ca876bc7f2afa192167f0689690d73d5a420c60..d58085e0b14241d666f533cb23dd89159c27d8b2 100644
|
2018-09-14 18:03:43 +00:00
|
|
|
--- a/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
|
|
|
+++ b/third_party/blink/renderer/bindings/core/v8/v8_initializer.cc
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -642,6 +642,10 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
|
2018-09-14 18:03:43 +00:00
|
|
|
size, WTF::ArrayBufferContents::kDontInitialize);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ void* Realloc(void* data, size_t size) override {
|
|
|
|
+ return WTF::ArrayBufferContents::Realloc(data, size);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
void Free(void* data, size_t size) override {
|
|
|
|
WTF::ArrayBufferContents::FreeMemory(data);
|
|
|
|
}
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.cc b/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.cc
|
2019-08-15 20:50:58 +00:00
|
|
|
index ac76d127b96b80c8260a7e2cda0b669cd98787ad..dcab64586700a8740262aede8dba2755f652d8e8 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.cc
|
|
|
|
+++ b/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.cc
|
2019-02-26 21:31:29 +00:00
|
|
|
@@ -130,6 +130,11 @@ void* ArrayBufferContents::AllocateMemoryOrNull(size_t size,
|
2018-09-14 05:02:16 +00:00
|
|
|
return AllocateMemoryWithFlags(size, policy, base::PartitionAllocReturnNull);
|
|
|
|
}
|
|
|
|
|
|
|
|
+void* ArrayBufferContents::Realloc(void* data, size_t size) {
|
|
|
|
+ return Partitions::ArrayBufferPartition()->Realloc(data, size,
|
|
|
|
+ WTF_HEAP_PROFILER_TYPE_NAME(ArrayBufferContents));
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void ArrayBufferContents::FreeMemory(void* data) {
|
|
|
|
Partitions::ArrayBufferPartition()->Free(data);
|
|
|
|
}
|
|
|
|
diff --git a/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.h b/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.h
|
2019-08-24 01:14:23 +00:00
|
|
|
index ee7c89a4950d6b3c97a810c41a62fee7e372018d..c2b60f20a72cca46d05af369f33d9c19395b34ef 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.h
|
|
|
|
+++ b/third_party/blink/renderer/platform/wtf/typed_arrays/array_buffer_contents.h
|
2019-08-24 01:14:23 +00:00
|
|
|
@@ -140,6 +140,7 @@ class WTF_EXPORT ArrayBufferContents {
|
2018-09-14 05:02:16 +00:00
|
|
|
void CopyTo(ArrayBufferContents& other);
|
|
|
|
|
|
|
|
static void* AllocateMemoryOrNull(size_t, InitializationPolicy);
|
|
|
|
+ static void* Realloc(void* data, size_t);
|
|
|
|
static void FreeMemory(void*);
|
|
|
|
static DataHandle CreateDataHandle(size_t, InitializationPolicy);
|
|
|
|
static void Initialize(
|