Skip to content

Commit a3db203

Browse files
committedOct 4, 2021
deps: make V8 9.4 abi-compatible with 9.0
Revert "[api] Avoid handles for const API functions" This reverts commit aee471b2ff5b1a9e622426454885b748d226535b. Revert "[api] Remove deprecated [Shared]ArrayBuffer API" This reverts commit 578f6be77fc5d8af975005c2baf918e7225abb62. Revert "[Jobs]: Cleanup in v8 platform." This reverts commit baf2b088dd9f585aa597459f30d71431171666e2. Revert "Skip global registration of [Shared]ArrayBuffer backing stores" This reverts commit fcdf35e6d70d51699ece063e25dc705e80673308. Revert "[api] Remove previously deprecated Function::GetDisplayName()." This reverts commit 6165fef8cc9dde52973e54c915e6905221b3f8fb. Revert "[api] Remove deprecated Symbol::Name()" This reverts commit bbc72ef6c7d6d8e2c4dd074d7713e5c841003163. Revert API change for HeapProfiler::TakeHeapSnapshot This reverts a small part of 7f52e4f92d3d3ded9a1701ee2f93966075ae5004. Revert "[cpu-profiler] Reintroduce support for context filtering" This reverts commit 0aacfb2a6ecbeda1d1d97ca113afd8253a1b9670. Restore new argument for TakeHeapSnapshot method This creates a new TakeHeapSnapshotV8_92 method with the signature from 7f52e4f92d3d3ded9a1701ee2f93966075ae5004. It is necessary because the API is used internall by V8. Silence irrelevant warning V8 triggers it in the Name method. Revert "[api] Add v8::metrics::LongTaskStats for the LongTasks UKM" This reverts commit 521ae93bf652b0cc1fec1fdd788e3b80fb72a349. Move cage_base isolate data field Makes 3ada6f27404b4ffd6d3e97cf15be76672f60c10d ABI-compatible. Revert ABI-breaking change in FunctionTemplate::SetCallHandler Reverts part of a7980d43e030ba4bdb36813d4bc99f85982bf4ee and ad4eab00e7ec96730eb2c1b6ddcef14ba2e4becd. Revert "[api] Support PropertyAttribute in v8::Template::Set" This reverts commit 22a32f11f7a39e4a73105608a51ebab0ad97960f. Revert API change for FunctionTemplate::New This reverts the API change of 5f82dbbe534635a8b1e93f27e8fd7e68c0eaf291. Fix some reverts - constness of internal APIs has not external effect - restored API function must but adapted to moved internal API. Revert "[api] Add API for off-thread code cache deserialization" This reverts commit f888f48e4c65e3ccfd9fd831c71c1832b957c945. Revert "[api] Implement signature checks using instance types" This reverts commit 7df6678c32255ec5a1b1470f1e5a7e56b3b192fa. Revert "[api] Remove deprecated APIs" This reverts commit 390456678a8261827cd9a1b5f0c4dc8e4328af07. PR-URL: #40285 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
1 parent 5cc24e6 commit a3db203

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1454
-1525
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.11',
39+
'v8_embedder_string': '-node.12',
4040

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

‎deps/v8/include/v8-internal.h

+2-16
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ const int kApiSystemPointerSize = sizeof(void*);
3636
const int kApiDoubleSize = sizeof(double);
3737
const int kApiInt32Size = sizeof(int32_t);
3838
const int kApiInt64Size = sizeof(int64_t);
39-
const int kApiSizetSize = sizeof(size_t);
4039

4140
// Tag information for HeapObject.
4241
const int kHeapObjectTag = 1;
@@ -188,8 +187,6 @@ V8_EXPORT internal::Isolate* IsolateFromNeverReadOnlySpaceObject(Address obj);
188187
// language mode is strict.
189188
V8_EXPORT bool ShouldThrowOnError(v8::internal::Isolate* isolate);
190189

191-
V8_EXPORT bool CanHaveInternalField(int instance_type);
192-
193190
/**
194191
* This class exports constants and functionality from within v8 that
195192
* is necessary to implement inline functions in the v8 api. Don't
@@ -236,12 +233,8 @@ class Internals {
236233
kIsolateFastCCallCallerFpOffset + kApiSystemPointerSize;
237234
static const int kIsolateFastApiCallTargetOffset =
238235
kIsolateFastCCallCallerPcOffset + kApiSystemPointerSize;
239-
static const int kIsolateCageBaseOffset =
240-
kIsolateFastApiCallTargetOffset + kApiSystemPointerSize;
241-
static const int kIsolateLongTaskStatsCounterOffset =
242-
kIsolateCageBaseOffset + kApiSystemPointerSize;
243236
static const int kIsolateStackGuardOffset =
244-
kIsolateLongTaskStatsCounterOffset + kApiSizetSize;
237+
kIsolateFastApiCallTargetOffset + kApiSystemPointerSize;
245238
static const int kIsolateRootsOffset =
246239
kIsolateStackGuardOffset + 7 * kApiSystemPointerSize;
247240

@@ -268,9 +261,8 @@ class Internals {
268261
static const int kOddballType = 0x43;
269262
static const int kForeignType = 0x46;
270263
static const int kJSSpecialApiObjectType = 0x410;
264+
static const int kJSApiObjectType = 0x420;
271265
static const int kJSObjectType = 0x421;
272-
static const int kFirstJSApiObjectType = 0x422;
273-
static const int kLastJSApiObjectType = 0x80A;
274266

275267
static const int kUndefinedOddballKind = 5;
276268
static const int kNullOddballKind = 3;
@@ -375,12 +367,6 @@ class Internals {
375367
return *reinterpret_cast<void* const*>(addr);
376368
}
377369

378-
V8_INLINE static void IncrementLongTasksStatsCounter(v8::Isolate* isolate) {
379-
internal::Address addr = reinterpret_cast<internal::Address>(isolate) +
380-
kIsolateLongTaskStatsCounterOffset;
381-
++(*reinterpret_cast<size_t*>(addr));
382-
}
383-
384370
V8_INLINE static internal::Address* GetRoot(v8::Isolate* isolate, int index) {
385371
internal::Address addr = reinterpret_cast<internal::Address>(isolate) +
386372
kIsolateRootsOffset +

0 commit comments

Comments
 (0)
Please sign in to comment.