diff options
author | Michaël Zasso <targos@protonmail.com> | 2021-10-12 08:49:00 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2021-10-14 08:42:51 +0200 |
commit | 795108a63d14aedfcc1b320b0754c464ea794e49 (patch) | |
tree | 4de59a4b68463d335495c1fec0ae0e17e8136099 /deps/v8/src/api | |
parent | f9996d5b80a2014fd882c28225a6202b4a75aecf (diff) | |
download | node-new-795108a63d14aedfcc1b320b0754c464ea794e49.tar.gz |
deps: V8: make V8 9.5 ABI-compatible with 9.6
Cherry-pick ABI-breaking changes that happened since 9.5 was branched:
[api] Remove deprecated HostImportModuleDynamicallyCallback
Refs: https://github.com/v8/v8/commit/ab836859d964d03ec43de9e7d0096c4ebf6ab64c
[zone] Provide a way to configure allocator for zone backings
Refs: https://github.com/v8/v8/commit/e262e1cb4a0f9ab0051eb981a01dc1e66c0b4125
[isolate-data] Consistent field names
Needed for the next commit.
Refs: https://github.com/v8/v8/commit/d09fc5403aaa7ce18d01d79da067ebc2408d18ed
[isolate-data] Split builtin tables into tiers
Refs: https://github.com/v8/v8/commit/06af754cea8006e0a802655250c129dc8e9cdce0
[mips][loong64][isolate-data] Split builtin tables into tiers
Refs: https://github.com/v8/v8/commit/1fd55617e15b07b0b939d795db16dd07a7656e85
[riscv64] Replace builtin_entry_slot_offset with BuiltinEntrySlotOffset
Refs: https://github.com/v8/v8/commit/b66d5f023315160623b17d8ee686f26a82ae374b
ppc/s390: [isolate-data] Split builtin tables into tiers
Refs: https://github.com/v8/v8/commit/dc88bdf35ea708bf6ff7ab7816d2fc554ae902a1
PR-URL: https://github.com/nodejs/node/pull/40422
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Diffstat (limited to 'deps/v8/src/api')
-rw-r--r-- | deps/v8/src/api/api.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/deps/v8/src/api/api.cc b/deps/v8/src/api/api.cc index dedbd5db66..81057d6e7a 100644 --- a/deps/v8/src/api/api.cc +++ b/deps/v8/src/api/api.cc @@ -8545,12 +8545,6 @@ void Isolate::SetAbortOnUncaughtExceptionCallback( } void Isolate::SetHostImportModuleDynamicallyCallback( - i::Isolate::DeprecatedHostImportModuleDynamicallyCallback callback) { - i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this); - isolate->SetHostImportModuleDynamicallyCallback(callback); -} - -void Isolate::SetHostImportModuleDynamicallyCallback( HostImportModuleDynamicallyWithImportAssertionsCallback callback) { i::Isolate* isolate = reinterpret_cast<i::Isolate*>(this); isolate->SetHostImportModuleDynamicallyCallback(callback); |