Skip to content

Commit c7964bc

Browse files
targosRafaelGSS
authored andcommitted
deps: update V8 to 13.6.233.8
PR-URL: #58070 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Joyee Cheung <[email protected]> Reviewed-By: Rafael Gonzaga <[email protected]>
1 parent f6a085d commit c7964bc

File tree

5,321 files changed

+472433
-214539
lines changed

Some content is hidden

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

5,321 files changed

+472433
-214539
lines changed

deps/v8/.bazelrc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
# Use of this source code is governed by a BSD-style license that can be
33
# found in the LICENSE file.
44

5+
# Enable Bzlmod for every Bazel command
6+
common --enable_bzlmod
7+
58
# Pass CC, CXX and PATH from the environment
69
build --action_env=CC
710
build --action_env=CXX
811
build --action_env=PATH
12+
build --copt=-std=c++20
913

1014
# Use Clang compiler
1115
build:clang --action_env=BAZEL_COMPILER=clang
@@ -17,7 +21,8 @@ build:debug --compilation_mode=dbg
1721
build:debug --config=v8_enable_debugging_features
1822
build:debug --//:v8_enable_fast_mksnapshot
1923
build:debug --//:v8_enable_backtrace
20-
build:debug --//:v8_enable_handle_zapping
24+
build:debug --//:v8_enable_local_handle_zapping
25+
build:debug --//:v8_enable_global_handle_zapping
2126

2227
# v8_enable_debugging_features flags
2328
build:v8_enable_debugging_features --//:v8_enable_verify_heap

deps/v8/.clang-tidy

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
modernize-redundant-void-arg,
1010
modernize-replace-random-shuffle,
1111
modernize-shrink-to-fit,
12+
modernize-type-traits,
1213
# modernize-use-auto,
14+
modernize-use-constraints,
1315
modernize-use-bool-literals,
1416
modernize-use-equals-default,
1517
# modernize-use-equals-delete,

deps/v8/.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,21 @@
8282
/third_party/googletest/src/googletest/include/gtest/*
8383
!/third_party/googletest/src/googletest/include/gtest/gtest_prod.h
8484
!/third_party/highway
85-
/third_party/highway/src
85+
/third_party/highway/src/*
86+
!/third_party/highway/src/hwy
8687
!/third_party/inspector_protocol
8788
!/third_party/jsoncpp
8889
/third_party/jsoncpp/source
90+
!/third_party/llvm-libc
91+
/third_party/llvm-libc/src
92+
!/third_party/rapidhash-v8
8993
!/third_party/re2
9094
/third_party/re2/src
91-
!/third_party/test262-harness
95+
!/third_party/siphash
96+
!/third_party/utf8-decoder
9297
!/third_party/v8
98+
!/third_party/valgrind
99+
!/third_party/vtune
93100
!/third_party/wasm-api
94101
/tools/builtins-pgo/profiles/*
95102
!/tools/builtins-pgo/profiles/.*
@@ -103,6 +110,7 @@
103110
/tools/oom_dump/oom_dump
104111
/tools/oom_dump/oom_dump.o
105112
/tools/protoc_wrapper
113+
/tools/rust
106114
/tools/turbolizer/build
107115
/tools/turbolizer/.rpt2_cache
108116
/tools/turbolizer/deploy
@@ -145,3 +153,4 @@ bazel-v8
145153
!/third_party/fp16
146154
/third_party/fp16/src/*
147155
!/third_party/fp16/src/include
156+
!/third_party/simdutf

deps/v8/.gn

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ no_check_targets = [
2727
default_args = {
2828
# Disable js dependencies like the closure compiler.
2929
enable_js_protobuf = false
30+
3031
# Disable rust dependencies.
31-
enable_rust = false
32+
enable_rust = true
3233
}
3334

3435
# These are the list of GN files that run exec_script. This whitelist exists

deps/v8/AUTHORS

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ Alexander Botero-Lowry <[email protected]>
5757
Alexander Karpinsky <[email protected]>
5858
Alexander Neville <[email protected]>
5959
Alexandre Vassalotti <[email protected]>
60-
Alexey Pavlyutkin <alexey.pavlyutkin.community@gmail.com>
60+
Alexey Pavlyutkin <alexey.pavlyutkin@syntacore.com>
6161
Alexis Campailla <[email protected]>
62+
Aliya Minimullina <[email protected]>
6263
Allan Sandfeld Jensen <[email protected]>
6364
6465
Andreas Anyuru <[email protected]>
@@ -120,6 +121,7 @@ Dominic Farolini <[email protected]>
120121
Douglas Crosher <[email protected]>
121122
Dusan Milosavljevic <[email protected]>
122123
Eden Wang <[email protected]>
124+
Edoardo Marangoni <[email protected]>
123125
Elisha Hollander <[email protected]>
124126
Eric Rannaud <[email protected]>
125127
Erich Ocean <[email protected]>
@@ -210,11 +212,13 @@ Maxim Mazurok <[email protected]>
210212
Maxim Mossienko <[email protected]>
211213
Md Hasibul Hasan <[email protected]>
212214
Meir Shpilraien <[email protected]>
215+
213216
Michael Lutz <[email protected]>
214217
Michael Mclaughlin <[email protected]>
215218
Michael Smith <[email protected]>
216219
Michaël Zasso <[email protected]>
217220
Mihir Shah <[email protected]>
221+
Mika Fischer <[email protected]>
218222
Mike Gilbert <[email protected]>
219223
Mike Pennisi <[email protected]>
220224
Mikhail Gusarov <[email protected]>
@@ -268,6 +272,7 @@ Sébastien Doeraene <[email protected]>
268272
Seo Sanghyeon <[email protected]>
269273
Shawn Anastasio <[email protected]>
270274
Shawn Presser <[email protected]>
275+
Sho Miyamoto <[email protected]>
271276
Stefan Penner <[email protected]>
272277
Stefan Stojanovic <[email protected]>
273278
Stephan Hartmann <[email protected]>
@@ -290,6 +295,7 @@ Varun Varada <[email protected]>
290295
Victor Costan <[email protected]>
291296
Victor Polevoy <[email protected]>
292297
Vlad Burlik <[email protected]>
298+
Vladimir Kempik <[email protected]>
293299
Vladimir Krivosheev <[email protected]>
294300
Vladimir Shutoff <[email protected]>
295301
Wael Almattar <[email protected]>
@@ -303,6 +309,7 @@ Wiktor Garbacz <[email protected]>
303309
Wouter Vermeiren <[email protected]>
304310
Xiaofang Zou <[email protected]>
305311
Xiaoyin Liu <[email protected]>
312+
Yagiz Nizipli <[email protected]>
306313
307314
Yannic Bonenberger <[email protected]>
308315
@@ -317,6 +324,7 @@ Yuxiang Cao <[email protected]>
317324
Zac Hansen <[email protected]>
318325
Zeynep Cankara <[email protected]>
319326
Zhao Jiazhong <[email protected]>
327+
320328
Zhaojun Meng <[email protected]>
321329
Zheng Liu <[email protected]>
322330
Zhongping Wang <[email protected]>
@@ -325,3 +333,4 @@ Yang Xiang <[email protected]>
325333
Kotaro Ohsugi <[email protected]>
326334
Jing Peiyang <[email protected]>
327335
magic-akari <[email protected]>
336+
Ryuhei Shima <[email protected]>

0 commit comments

Comments
 (0)