Skip to content

Commit a3b9967

Browse files
targosruyadorno
authored andcommitted
deps: update V8 to 10.8.168.20
PR-URL: #45230 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
1 parent f441b04 commit a3b9967

File tree

1,255 files changed

+51370
-25132
lines changed

Some content is hidden

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

1,255 files changed

+51370
-25132
lines changed

deps/v8/.vpython

-91
This file was deleted.

deps/v8/.vpython3

+6-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ wheel: <
4747

4848
wheel: <
4949
name: "infra/python/wheels/coverage/${vpython_platform}"
50-
version: "version:5.5.chromium.2"
50+
version: "version:5.5.chromium.3"
5151
>
5252

5353
wheel: <
@@ -74,3 +74,8 @@ wheel: <
7474
name: "infra/python/wheels/protobuf-py3"
7575
version: "version:3.19.3"
7676
>
77+
78+
wheel: <
79+
name: "infra/python/wheels/requests-py2_py3"
80+
version: "version:2.13.0"
81+
>

deps/v8/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ Ingvar Stepanyan <me@rreverser.com>
137137
Ioseb Dzmanashvili <ioseb.dzmanashvili@gmail.com>
138138
Isiah Meadows <impinball@gmail.com>
139139
Jaime Bernardo <jaime@janeasystems.com>
140+
Jake Hughes <jh@jakehughes.uk>
140141
James M Snell <jasnell@gmail.com>
141142
James Pike <g00gle@chilon.net>
142143
Jan Krems <jan.krems@gmail.com>

deps/v8/BUILD.bazel

+31-6
Original file line numberDiff line numberDiff line change
@@ -891,6 +891,7 @@ filegroup(
891891
"src/builtins/typed-array-sort.tq",
892892
"src/builtins/typed-array-subarray.tq",
893893
"src/builtins/typed-array-to-reversed.tq",
894+
"src/builtins/typed-array-to-sorted.tq",
894895
"src/builtins/typed-array-values.tq",
895896
"src/builtins/typed-array-with.tq",
896897
"src/builtins/typed-array.tq",
@@ -925,6 +926,7 @@ filegroup(
925926
"src/objects/js-objects.tq",
926927
"src/objects/js-promise.tq",
927928
"src/objects/js-proxy.tq",
929+
"src/objects/js-raw-json.tq",
928930
"src/objects/js-regexp-string-iterator.tq",
929931
"src/objects/js-regexp.tq",
930932
"src/objects/js-shadow-realm.tq",
@@ -980,6 +982,7 @@ filegroup(
980982
"src/objects/js-collator.tq",
981983
"src/objects/js-date-time-format.tq",
982984
"src/objects/js-display-names.tq",
985+
"src/objects/js-duration-format.tq",
983986
"src/objects/js-list-format.tq",
984987
"src/objects/js-locale.tq",
985988
"src/objects/js-number-format.tq",
@@ -1267,8 +1270,6 @@ filegroup(
12671270
"src/debug/debug-scopes.h",
12681271
"src/debug/debug-stack-trace-iterator.cc",
12691272
"src/debug/debug-stack-trace-iterator.h",
1270-
"src/debug/debug-type-profile.cc",
1271-
"src/debug/debug-type-profile.h",
12721273
"src/debug/debug.cc",
12731274
"src/debug/debug.h",
12741275
"src/debug/interface-types.h",
@@ -1435,6 +1436,9 @@ filegroup(
14351436
"src/heap/embedder-tracing.cc",
14361437
"src/heap/embedder-tracing.h",
14371438
"src/heap/embedder-tracing-inl.h",
1439+
"src/heap/evacuation-verifier.cc",
1440+
"src/heap/evacuation-verifier.h",
1441+
"src/heap/evacuation-verifier-inl.h",
14381442
"src/heap/factory-base.cc",
14391443
"src/heap/factory-base.h",
14401444
"src/heap/factory-base-inl.h",
@@ -1497,6 +1501,8 @@ filegroup(
14971501
"src/heap/marking-barrier.cc",
14981502
"src/heap/marking-barrier.h",
14991503
"src/heap/marking-barrier-inl.h",
1504+
"src/heap/marking-state.h",
1505+
"src/heap/marking-state-inl.h",
15001506
"src/heap/marking-visitor-inl.h",
15011507
"src/heap/marking-visitor.h",
15021508
"src/heap/marking-worklist-inl.h",
@@ -1529,6 +1535,9 @@ filegroup(
15291535
"src/heap/paged-spaces.h",
15301536
"src/heap/parallel-work-item.h",
15311537
"src/heap/parked-scope.h",
1538+
"src/heap/pretenuring-handler-inl.h",
1539+
"src/heap/pretenuring-handler.cc",
1540+
"src/heap/pretenuring-handler.h",
15321541
"src/heap/progress-bar.h",
15331542
"src/heap/read-only-heap-inl.h",
15341543
"src/heap/read-only-heap.cc",
@@ -1753,6 +1762,9 @@ filegroup(
17531762
"src/objects/js-promise.h",
17541763
"src/objects/js-proxy-inl.h",
17551764
"src/objects/js-proxy.h",
1765+
"src/objects/js-raw-json-inl.h",
1766+
"src/objects/js-raw-json.h",
1767+
"src/objects/js-raw-json.cc",
17561768
"src/objects/js-regexp-inl.h",
17571769
"src/objects/js-regexp-string-iterator-inl.h",
17581770
"src/objects/js-regexp-string-iterator.h",
@@ -1978,8 +1990,6 @@ filegroup(
19781990
"src/regexp/experimental/experimental-interpreter.h",
19791991
"src/regexp/experimental/experimental.cc",
19801992
"src/regexp/experimental/experimental.h",
1981-
"src/regexp/property-sequences.cc",
1982-
"src/regexp/property-sequences.h",
19831993
"src/regexp/regexp-ast.cc",
19841994
"src/regexp/regexp-ast.h",
19851995
"src/regexp/regexp-bytecode-generator-inl.h",
@@ -2061,6 +2071,8 @@ filegroup(
20612071
"src/sandbox/sandbox.h",
20622072
"src/sandbox/sandboxed-pointer-inl.h",
20632073
"src/sandbox/sandboxed-pointer.h",
2074+
"src/sandbox/bounded-size-inl.h",
2075+
"src/sandbox/bounded-size.h",
20642076
"src/base/sanitizer/asan.h",
20652077
"src/base/sanitizer/lsan-page-allocator.cc",
20662078
"src/base/sanitizer/lsan-page-allocator.h",
@@ -2527,8 +2539,8 @@ filegroup(
25272539
"src/wasm/names-provider.cc",
25282540
"src/wasm/names-provider.h",
25292541
"src/wasm/object-access.h",
2530-
"src/wasm/signature-map.cc",
2531-
"src/wasm/signature-map.h",
2542+
"src/wasm/pgo.cc",
2543+
"src/wasm/pgo.h",
25322544
"src/wasm/simd-shuffle.cc",
25332545
"src/wasm/simd-shuffle.h",
25342546
"src/wasm/stacks.cc",
@@ -2606,6 +2618,9 @@ filegroup(
26062618
"src/objects/js-display-names.cc",
26072619
"src/objects/js-display-names.h",
26082620
"src/objects/js-display-names-inl.h",
2621+
"src/objects/js-duration-format.cc",
2622+
"src/objects/js-duration-format.h",
2623+
"src/objects/js-duration-format-inl.h",
26092624
"src/objects/js-list-format.cc",
26102625
"src/objects/js-list-format.h",
26112626
"src/objects/js-list-format-inl.h",
@@ -2872,13 +2887,20 @@ filegroup(
28722887
"src/compiler/turboshaft/graph.h",
28732888
"src/compiler/turboshaft/graph-visualizer.cc",
28742889
"src/compiler/turboshaft/graph-visualizer.h",
2890+
"src/compiler/turboshaft/machine-optimization-assembler.h",
28752891
"src/compiler/turboshaft/operations.cc",
28762892
"src/compiler/turboshaft/operations.h",
2893+
"src/compiler/turboshaft/operation-matching.h",
28772894
"src/compiler/turboshaft/optimization-phase.cc",
28782895
"src/compiler/turboshaft/optimization-phase.h",
28792896
"src/compiler/turboshaft/recreate-schedule.cc",
28802897
"src/compiler/turboshaft/recreate-schedule.h",
2898+
"src/compiler/turboshaft/representations.cc",
2899+
"src/compiler/turboshaft/representations.h",
28812900
"src/compiler/turboshaft/sidetable.h",
2901+
"src/compiler/turboshaft/simplify-tf-loops.cc",
2902+
"src/compiler/turboshaft/simplify-tf-loops.h",
2903+
"src/compiler/turboshaft/utils.cc",
28822904
"src/compiler/turboshaft/utils.h",
28832905
"src/compiler/turboshaft/value-numbering-assembler.h",
28842906
"src/compiler/type-cache.cc",
@@ -2891,6 +2913,7 @@ filegroup(
28912913
"src/compiler/typer.h",
28922914
"src/compiler/types.cc",
28932915
"src/compiler/types.h",
2916+
"src/compiler/use-info.h",
28942917
"src/compiler/value-numbering-reducer.cc",
28952918
"src/compiler/value-numbering-reducer.h",
28962919
"src/compiler/verifier.cc",
@@ -3101,6 +3124,7 @@ filegroup(
31013124
"src/heap/cppgc/stats-collector.h",
31023125
"src/heap/cppgc/sweeper.cc",
31033126
"src/heap/cppgc/sweeper.h",
3127+
"src/heap/cppgc/heap-config.h",
31043128
"src/heap/cppgc/task-handle.h",
31053129
"src/heap/cppgc/trace-event.h",
31063130
"src/heap/cppgc/trace-trait.cc",
@@ -3119,6 +3143,7 @@ filegroup(
31193143
srcs = [
31203144
"src/heap/base/active-system-pages.cc",
31213145
"src/heap/base/active-system-pages.h",
3146+
"src/heap/base/basic-slot-set.h",
31223147
"src/heap/base/stack.cc",
31233148
"src/heap/base/stack.h",
31243149
"src/heap/base/worklist.cc",

0 commit comments

Comments
 (0)