Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: update V8 to 11.8 #49639

Closed
wants to merge 29 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
73ba853
deps: update V8 to 11.8.172.13
targos Oct 5, 2023
0fef29f
build: reset embedder string to "-node.0"
targos Oct 5, 2023
23bbae2
src: update NODE_MODULE_VERSION to 120
targos Sep 13, 2023
ff43327
deps: always define V8_EXPORT_PRIVATE as no-op
targos Sep 21, 2022
435c47d
deps: silence irrelevant V8 warning
targos Jun 21, 2022
6b80402
deps: disable V8 concurrent sparkplug compilation
targos Apr 6, 2023
ec65678
deps: avoid compilation error with ASan
targos Jul 31, 2023
4b15fec
deps: remove usage of a C++20 feature from V8
targos Aug 10, 2023
525ddd9
deps: patch V8 to avoid duplicated zlib symbol
targos Sep 16, 2023
dc935b6
deps: V8: cherry-pick 1a3ecc2483b2
targos Sep 13, 2023
b32f78b
deps: V8: cherry-pick 93b1a74cbc9b
targos Sep 15, 2023
b3b93c2
deps: V8: cherry-pick b5b5d6c31bb0
targos Sep 22, 2023
aa82ccb
deps: V8: cherry-pick de9a5de2274f
targos Sep 26, 2023
95e9514
deps: V8: cherry-pick 89b3702c92b0
targos Sep 26, 2023
f5f62ef
deps: V8: cherry-pick 8ec2651fbdd8
targos Oct 5, 2023
e4f5a0f
deps: bump minimum ICU version to 73
targos Jul 7, 2023
23e01d9
tools: update V8 gypfiles for 11.4
targos Mar 31, 2023
55e21e0
tools: update V8 gypfiles for 11.5
targos Apr 30, 2023
9485f89
tools: update V8 gypfiles for 11.6
targos Jun 12, 2023
62bd3f6
tools: update V8 gypfiles for 11.7
targos Jul 7, 2023
3a29541
tools: update V8 gypfiles for 11.8
targos Aug 10, 2023
e13172d
tools: add new V8 headers to distribution
targos Mar 31, 2023
4a15c7d
lib: update usage of always on Atomics API
targos Apr 16, 2023
f030296
test: adapt debugger tests to V8 11.4
pfaffe Mar 17, 2023
e12e0ca
test: update flag to disable SharedArrayBuffer
targos Apr 20, 2023
1213ee4
test: adapt test-fs-write to V8 internal changes
targos May 6, 2023
11f1bde
test: adapt REPL test to V8 changes
targos Jul 7, 2023
c37dcaa
test: skip test-tick-processor-arguments on SmartOS
targos Oct 5, 2023
a74cdd8
test: skip v8-updates/test-linux-perf
targos Oct 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
4 changes: 0 additions & 4 deletions benchmark/worker/atomics-wait.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ if (typeof SharedArrayBuffer === 'undefined') {
throw new Error('SharedArrayBuffers must be enabled to run this benchmark');
}

if (typeof Atomics === 'undefined') {
throw new Error('Atomics must be enabled to run this benchmark');
}

const common = require('../common.js');
const bench = common.createBenchmark(main, {
n: [1e7],
Expand Down
2 changes: 1 addition & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

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

##### V8 defaults for Node.js #####

Expand Down
1 change: 1 addition & 0 deletions configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1498,6 +1498,7 @@ def configure_v8(o):
o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0
o['variables']['v8_enable_31bit_smis_on_64bit_arch'] = 1 if options.enable_pointer_compression else 0
o['variables']['v8_enable_shared_ro_heap'] = 0 if options.enable_pointer_compression or options.disable_shared_ro_heap else 1
o['variables']['v8_enable_extensible_ro_snapshot'] = 0
o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)
o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)
Expand Down
1 change: 1 addition & 0 deletions deps/v8/.clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
BasedOnStyle: Google
DerivePointerAlignment: false
MaxEmptyLinesToKeep: 1
IfMacros: ['IF', 'IF_NOT', 'ELSE', 'ELSE_IF']
3 changes: 3 additions & 0 deletions deps/v8/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
/test/wasm-spec-tests/tests.tar.gz
/third_party/*
!/third_party/antlr4
!/third_party/cpu_features
/third_party/cpu_features/src
!/third_party/inspector_protocol
!/third_party/jsoncpp
/third_party/jsoncpp/source
Expand Down Expand Up @@ -94,6 +96,7 @@
/tools/turbolizer/build
/tools/turbolizer/.rpt2_cache
/tools/turbolizer/deploy
/tools/v8heapconst.py
/tools/visual_studio/Debug
/tools/visual_studio/Release
/v8.log.ll
Expand Down
7 changes: 5 additions & 2 deletions deps/v8/.gn
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,18 @@ no_check_targets = [
"//:cppgc_base",
"//:v8_internal_headers",
"//src/inspector:inspector",
"//test/cctest:cctest_sources", # 15 errors
"//test/unittests:inspector_unittests_sources", # 2 errors
"//test/cctest:cctest_sources", # 15 errors
"//test/unittests:inspector_unittests_sources", # 2 errors
"//third_party/icu:*",
]

default_args = {
# Overwrite default args declared in the Fuchsia sdk
# Please maintain this in sync with Chromium version in src/.gn
fuchsia_target_api_level = 9

# Disable rust dependencies.
enable_rust = false
}

# These are the list of GN files that run exec_script. This whitelist exists
Expand Down
21 changes: 19 additions & 2 deletions deps/v8/.vpython3
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,24 @@ wheel: <
version: "version:3.19.3"
>

# requests and its dependencies.
wheel: <
name: "infra/python/wheels/requests-py2_py3"
version: "version:2.13.0"
name: "infra/python/wheels/requests-py3"
version: "version:2.31.0"
>
wheel: <
name: "infra/python/wheels/urllib3-py2_py3"
version: "version:1.26.6"
>
wheel: <
name: "infra/python/wheels/idna-py2_py3"
version: "version:2.8"
>
wheel: <
name: "infra/python/wheels/certifi-py2_py3"
version: "version:2020.11.8"
>
wheel: <
name: "infra/python/wheels/charset_normalizer-py3"
version: "version:2.0.4"
>
12 changes: 12 additions & 0 deletions deps/v8/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ Anton Bershanskiy <8knots@protonmail.com>
Anton Bikineev <ant.bikineev@gmail.com>
Ao Wang <wangao.james@bytedance.com>
Archil Sharashenidze <achosharashenidze@gmail.com>
Arthur Islamov <arthur@islamov.ai>
Aurèle Barrière <aurele.barriere@gmail.com>
Bala Avulapati <bavulapati@gmail.com>
Bangfu Tao <bangfu.tao@samsung.com>
Ben Coe <bencoe@gmail.com>
Expand Down Expand Up @@ -110,6 +112,7 @@ Dominic Farolini <domfarolino@gmail.com>
Douglas Crosher <dtc-v8@scieneer.com>
Dusan Milosavljevic <dusan.m.milosavljevic@gmail.com>
Eden Wang <nedenwang@tencent.com>
Elisha Hollander <just4now666666@gmail.com>
Eric Rannaud <eric.rannaud@gmail.com>
Erich Ocean <erich.ocean@me.com>
Evan Lucas <evan.lucas@help.com>
Expand All @@ -133,6 +136,7 @@ Harshil Jain <twitharshil@gmail.com>
Henrique Ferreiro <henrique.ferreiro@gmail.com>
Hirofumi Mako <mkhrfm@gmail.com>
Hisham Muhammad <hisham@gobolinux.org>
Ho Cheung <uioptt24@gmail.com>
Honggyu Kim <honggyu.kp@gmail.com>
Huáng Jùnliàng <jlhwung@gmail.com>
HyeockJin Kim <kherootz@gmail.com>
Expand All @@ -149,6 +153,7 @@ Jan de Mooij <jandemooij@gmail.com>
Janusz Majnert <jmajnert@gmail.com>
Javad Amiri <javad.amiri@anu.edu.au>
Jay Freeman <saurik@saurik.com>
Jérôme Vouillon <jerome.vouillon@gmail.com>
Jesper van den Ende <jespertheend@gmail.com>
Ji Qiu <qiuji@iscas.ac.cn>
Jiawen Geng <technicalcute@gmail.com>
Expand All @@ -167,6 +172,7 @@ Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu>
Karl Skomski <karl@skomski.com>
Keith Smiley <keithbsmiley@gmail.com>
Kevin Gibbons <bakkot@gmail.com>
Keyhan Vakil <kvakil@googlecontrib.kvakil.me>
Kris Selden <kris.selden@gmail.com>
Kyounga Ra <kyounga@alticast.com>
Loo Rong Jie <loorongjie@gmail.com>
Expand All @@ -178,6 +184,7 @@ Maciej Małecki <me@mmalecki.com>
Marcel Laverdet <marcel@laverdet.com>
Marcin Cieślak <saper@marcincieslak.com>
Marcin Wiącek <marcin@mwiacek.com>
Marisa Kirisame <u1319884@utah.edu>
Martin Bidlingmaier <martin.bidlingmaier@gmail.com>
Mateusz Czeladka <mateusz.szczap@gmail.com>
Matheus Marchini <mat@mmarchini.me>
Expand All @@ -187,6 +194,7 @@ Matt Hanselman <mjhanselman@gmail.com>
Matthew Sporleder <msporleder@gmail.com>
Maxim Mazurok <maxim@mazurok.com>
Maxim Mossienko <maxim.mossienko@gmail.com>
Meir Shpilraien <meir@redis.com>
Michael Lutz <michi@icosahedron.de>
Michael Mclaughlin <m8ch88l@gmail.com>
Michael Smith <mike@w3.org>
Expand Down Expand Up @@ -239,16 +247,19 @@ Sakthipriyan Vairamani (thefourtheye) <thechargingvolcano@gmail.com>
Sander Mathijs van Veen <sander@leaningtech.com>
Sandro Santilli <strk@keybit.net>
Sanjoy Das <sanjoy@playingwithpointers.com>
Sam James <sam@gentoo.org>
Seo Sanghyeon <sanxiyn@gmail.com>
Shawn Anastasio <shawnanastasio@gmail.com>
Shawn Presser <shawnpresser@gmail.com>
Stefan Penner <stefan.penner@gmail.com>
Stefan Stojanovic <stefko.stojanovic@gmail.com>
Stephan Hartmann <stha09@googlemail.com>
Stephen Belanger <stephen.belanger@datadoghq.com>
Sylvestre Ledru <sledru@mozilla.com>
Takeshi Yoneda <takeshi@tetrate.io>
Taketoshi Aono <brn@b6n.ch>
Tao Liqiang <taolq@outlook.com>
Tao Wang <tao.wang.2261@gmail.com>
Teddy Katz <teddy.katz@gmail.com>
Thomas Young <wenzhang5800@gmail.com>
Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Expand All @@ -265,6 +276,7 @@ Vlad Burlik <vladbph@gmail.com>
Vladimir Krivosheev <develar@gmail.com>
Vladimir Shutoff <vovan@shutoff.ru>
Wael Almattar <waelsy123@gmail.com>
Wang Chen <wangchen20@iscas.ac.cn>
WANG Xuerui <git@xen0n.name>
Wei Wu <lazyparser@gmail.com>
Wenlu Wang <kingwenlu@gmail.com>
Expand Down
Loading