Skip to content

Commit 371ee64

Browse files
committed
deps: update V8 to 9.6.180.14
PR-URL: #40488 Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 6506a42 commit 371ee64

File tree

877 files changed

+27914
-19443
lines changed

Some content is hidden

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

877 files changed

+27914
-19443
lines changed

deps/v8/.vpython

+15
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@
2424

2525
python_version: "2.7"
2626

27+
# The default set of platforms vpython checks does not yet include mac-arm64.
28+
# Setting `verify_pep425_tag` to the list of platforms we explicitly must support
29+
# allows us to ensure that vpython specs stay mac-arm64-friendly
30+
verify_pep425_tag: [
31+
{python: "cp27", abi: "cp27mu", platform: "manylinux1_x86_64"},
32+
{python: "cp27", abi: "cp27mu", platform: "linux_arm64"},
33+
{python: "cp27", abi: "cp27mu", platform: "linux_armv6l"},
34+
35+
{python: "cp27", abi: "cp27m", platform: "macosx_10_10_intel"},
36+
{python: "cp27", abi: "cp27m", platform: "macosx_11_0_arm64"},
37+
38+
{python: "cp27", abi: "cp27m", platform: "win32"},
39+
{python: "cp27", abi: "cp27m", platform: "win_amd64"}
40+
]
41+
2742
# Needed by third_party/catapult/devil/devil, which is imported by
2843
# build/android/test_runner.py when running performance tests.
2944
wheel: <

deps/v8/BUILD.bazel

+9-2
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ config_setting(
165165
# v8_control_flow_integrity
166166
# v8_enable_virtual_memory_cage
167167
# cppgc_enable_caged_heap
168-
# cppgc_enable_check_assignments_in_prefinalizers
169168
# cppgc_enable_object_names
170169
# cppgc_enable_verify_heap
171170
# cppgc_enable_young_generation
@@ -894,6 +893,8 @@ filegroup(
894893
"src/torque/instance-type-generator.cc",
895894
"src/torque/instructions.cc",
896895
"src/torque/instructions.h",
896+
"src/torque/kythe-data.cc",
897+
"src/torque/kythe-data.h",
897898
"src/torque/parameter-difference.h",
898899
"src/torque/server-data.cc",
899900
"src/torque/server-data.h",
@@ -1218,6 +1219,7 @@ filegroup(
12181219
"src/flags/flag-definitions.h",
12191220
"src/flags/flags.cc",
12201221
"src/flags/flags.h",
1222+
"src/handles/global-handles-inl.h",
12211223
"src/handles/global-handles.cc",
12221224
"src/handles/global-handles.h",
12231225
"src/handles/handles-inl.h",
@@ -1588,6 +1590,7 @@ filegroup(
15881590
"src/objects/lookup-inl.h",
15891591
"src/objects/lookup.cc",
15901592
"src/objects/lookup.h",
1593+
"src/objects/managed-inl.h",
15911594
"src/objects/managed.cc",
15921595
"src/objects/managed.h",
15931596
"src/objects/map-inl.h",
@@ -1619,6 +1622,8 @@ filegroup(
16191622
"src/objects/objects-definitions.h",
16201623
"src/objects/oddball-inl.h",
16211624
"src/objects/oddball.h",
1625+
"src/objects/option-utils.h",
1626+
"src/objects/option-utils.cc",
16221627
"src/objects/ordered-hash-table-inl.h",
16231628
"src/objects/ordered-hash-table.cc",
16241629
"src/objects/ordered-hash-table.h",
@@ -1708,6 +1713,7 @@ filegroup(
17081713
"src/objects/value-serializer.cc",
17091714
"src/objects/value-serializer.h",
17101715
"src/objects/visitors.cc",
1716+
"src/objects/visitors-inl.h",
17111717
"src/objects/visitors.h",
17121718
"src/parsing/expression-scope.h",
17131719
"src/parsing/func-name-inferrer.cc",
@@ -2727,6 +2733,7 @@ filegroup(
27272733
"src/bigint/bigint-internal.cc",
27282734
"src/bigint/bigint-internal.h",
27292735
"src/bigint/bigint.h",
2736+
"src/bigint/bitwise.cc",
27302737
"src/bigint/digit-arithmetic.h",
27312738
"src/bigint/div-barrett.cc",
27322739
"src/bigint/div-burnikel.cc",
@@ -2909,11 +2916,11 @@ v8_torque(
29092916
"exported-macros-assembler.h",
29102917
"factory.cc",
29112918
"factory.inc",
2912-
"field-offsets.h",
29132919
"instance-types.h",
29142920
"interface-descriptors.inc",
29152921
"objects-body-descriptors-inl.inc",
29162922
"objects-printer.cc",
2923+
"visitor-lists.h",
29172924
],
29182925
args = select({
29192926
":is_v8_annotate_torque_ir": [ "-annotate-ir" ],

0 commit comments

Comments
 (0)