Skip to content

Commit 0b2a344

Browse files
targosnodejs-ci
authored andcommitted
deps: update V8 gypfiles
until f0d703bce77ec6b943314c24b9d480a55608c5a8
1 parent 7bc3ce4 commit 0b2a344

File tree

3 files changed

+27
-15
lines changed

3 files changed

+27
-15
lines changed

deps/v8/gypfiles/features.gypi

+11-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151

5252
'v8_enable_gdbjit%': 0,
5353

54+
# Build-time flag for enabling nojit mode.
55+
# TODO(v8:7777): Remove the build-time flag once the --jitless runtime flag
56+
# does everything we need.
57+
'v8_enable_jitless_mode%': 0,
58+
59+
# Enable code-generation-time checking of types in the CodeStubAssembler.
5460
'v8_enable_verify_csa%': 0,
5561

5662
'v8_object_print%': 0,
@@ -127,8 +133,8 @@
127133

128134
'conditions': [
129135
# V8's predicate inverted since we default to 'true' and set 'false' for unsupported cases.
130-
# v8_use_snapshot && !is_aix && ( !is_win || is_clang)
131-
['not (v8_use_snapshot=="true" and OS!="aix" and (OS!="win" or clang==1))', {
136+
# !is_aix
137+
['not (OS!="aix")', {
132138
'variables': {
133139
'v8_enable_embedded_builtins': 'false',
134140
}
@@ -212,6 +218,9 @@
212218
'V8_EMBEDDED_BYTECODE_HANDLERS',
213219
],
214220
}],
221+
['v8_enable_jitless_mode==1', {
222+
'defines': ['V8_JITLESS_MODE',],
223+
}],
215224
], # conditions
216225
'defines': [
217226
'V8_GYP_BUILD',

deps/v8/gypfiles/inspector.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
],
9898
'action': [
9999
'python',
100-
'<(protocol_path)/CheckProtocolCompatibility.py',
100+
'<(protocol_path)/check_protocol_compatibility.py',
101101
'--stamp', '<@(_outputs)',
102102
'<(inspector_path)/js_protocol.json',
103103
],

deps/v8/gypfiles/v8.gyp

+15-12
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"../src/builtins/array-slice.tq",
2626
"../src/builtins/array-splice.tq",
2727
"../src/builtins/array-unshift.tq",
28+
"../src/builtins/collections.tq",
2829
"../src/builtins/typed-array.tq",
2930
"../src/builtins/data-view.tq",
3031
"../src/builtins/iterator.tq",
@@ -34,23 +35,26 @@
3435
'torque_namespaces': [
3536
"base",
3637
"array",
38+
"collections",
3739
"iterator",
3840
"typed-array",
3941
"data-view",
4042
"test",
4143
],
4244
# Since there is no foreach in GYP we manualy unroll the following:
43-
# foreach(module, torque_namespaces) {
45+
# foreach(namespace, torque_namespaces) {
4446
# outputs += [
45-
# "$target_gen_dir/torque-generated/builtins-$module-from-dsl-gen.cc",
46-
# "$target_gen_dir/torque-generated/builtins-$module-from-dsl-gen.h",
47+
# "$target_gen_dir/torque-generated/builtins-$namespace-from-dsl-gen.cc",
48+
# "$target_gen_dir/torque-generated/builtins-$namespace-from-dsl-gen.h",
4749
# ]
4850
# }
4951
'torque_outputs': [
5052
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-base-from-dsl-gen.cc',
5153
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-base-from-dsl-gen.h',
5254
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-array-from-dsl-gen.cc',
5355
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-array-from-dsl-gen.h',
56+
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-collections-from-dsl-gen.cc',
57+
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-collections-from-dsl-gen.h',
5458
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-iterator-from-dsl-gen.cc',
5559
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-iterator-from-dsl-gen.h',
5660
'<(SHARED_INTERMEDIATE_DIR)/torque-generated/builtins-typed-array-from-dsl-gen.cc',
@@ -142,6 +146,7 @@
142146
'v8_target_cpu=<(v8_target_arch)',
143147
'v8_use_snapshot=<(v8_use_snapshot)',
144148
'v8_enable_embedded_builtins=<(v8_enable_embedded_builtins)',
149+
'v8_enable_jitless_mode=<(v8_enable_jitless_mode)',
145150
'v8_enable_verify_csa=<(v8_enable_verify_csa)',
146151
'v8_enable_lite_mode=<(v8_enable_lite_mode)',
147152
]
@@ -444,11 +449,11 @@
444449
'conditions': [
445450
['v8_enable_embedded_builtins == "true"', {
446451
# In this case we use `embedded_variant "Default"`
447-
# and `suffix = ''` for the template `embedded${suffix}.cc`.
448-
'outputs': [ '<(INTERMEDIATE_DIR)/embedded.cc' ],
452+
# and `suffix = ''` for the template `embedded${suffix}.S`.
453+
'outputs': [ '<(INTERMEDIATE_DIR)/embedded.S' ],
449454
'variables': {
450455
'mksnapshot_flags': [
451-
'--embedded_src', '<(INTERMEDIATE_DIR)/embedded.cc',
456+
'--embedded_src', '<(INTERMEDIATE_DIR)/embedded.S',
452457
'--embedded_variant', 'Default',
453458
],
454459
},
@@ -619,13 +624,10 @@
619624
'../src/ast/ast-value-factory.h',
620625
'../src/ast/ast.cc',
621626
'../src/ast/ast.h',
622-
'../src/ast/context-slot-cache.cc',
623-
'../src/ast/context-slot-cache.h',
624627
'../src/ast/modules.cc',
625628
'../src/ast/modules.h',
626629
'../src/ast/prettyprinter.cc',
627630
'../src/ast/prettyprinter.h',
628-
'../src/ast/scopes-inl.h',
629631
'../src/ast/scopes.cc',
630632
'../src/ast/scopes.h',
631633
'../src/ast/variables.cc',
@@ -1124,8 +1126,6 @@
11241126
'../src/icu_util.h',
11251127
'../src/identity-map.cc',
11261128
'../src/identity-map.h',
1127-
'../src/instruction-stream.cc',
1128-
'../src/instruction-stream.h',
11291129
'../src/interface-descriptors.cc',
11301130
'../src/interface-descriptors.h',
11311131
'../src/interpreter/block-coverage-builder.h',
@@ -1500,7 +1500,8 @@
15001500
'../src/snapshot/deserializer-allocator.h',
15011501
'../src/snapshot/deserializer.cc',
15021502
'../src/snapshot/deserializer.h',
1503-
'../src/snapshot/macros.h',
1503+
'../src/snapshot/embedded-data.cc',
1504+
'../src/snapshot/embedded-data.h',
15041505
'../src/snapshot/natives-common.cc',
15051506
'../src/snapshot/natives.h',
15061507
'../src/snapshot/object-deserializer.cc',
@@ -2839,6 +2840,8 @@
28392840
'<(DEPTH)',
28402841
],
28412842
'sources': [
2843+
'../src/snapshot/embedded-file-writer.cc',
2844+
'../src/snapshot/embedded-file-writer.h',
28422845
'../src/snapshot/mksnapshot.cc',
28432846
],
28442847
'conditions': [

0 commit comments

Comments
 (0)