@@ -64,6 +64,10 @@ declare_args() {
64
64
# Enable fast mksnapshot runs.
65
65
v8_enable_fast_mksnapshot = false
66
66
67
+ # Enable embedded builtins.
68
+ # TODO(jgruber,v8:6666): Support ia32.
69
+ v8_enable_embedded_builtins = false
70
+
67
71
# Enable code-generation-time checking of types in the CodeStubAssembler.
68
72
v8_enable_verify_csa = false
69
73
@@ -319,6 +323,9 @@ config("features") {
319
323
if (v8_check_microtasks_scopes_consistency ) {
320
324
defines += [ " V8_CHECK_MICROTASKS_SCOPES_CONSISTENCY" ]
321
325
}
326
+ if (v8_enable_embedded_builtins ) {
327
+ defines += [ " V8_EMBEDDED_BUILTINS" ]
328
+ }
322
329
}
323
330
324
331
config (" toolchain" ) {
@@ -387,6 +394,9 @@ config("toolchain") {
387
394
" _MIPS_ARCH_MIPS32R6" ,
388
395
" FPU_MODE_FP64" ,
389
396
]
397
+ if (mips_use_msa ) {
398
+ defines += [ " _MIPS_MSA" ]
399
+ }
390
400
} else if (mips_arch_variant == " r2" ) {
391
401
defines += [ " _MIPS_ARCH_MIPS32R2" ]
392
402
if (mips_fpu_mode == " fp64" ) {
@@ -424,6 +434,9 @@ config("toolchain") {
424
434
}
425
435
if (mips_arch_variant == " r6" ) {
426
436
defines += [ " _MIPS_ARCH_MIPS64R6" ]
437
+ if (mips_use_msa ) {
438
+ defines += [ " _MIPS_MSA" ]
439
+ }
427
440
} else if (mips_arch_variant == " r2" ) {
428
441
defines += [ " _MIPS_ARCH_MIPS64R2" ]
429
442
}
@@ -514,8 +527,6 @@ config("toolchain") {
514
527
515
528
if (is_clang ) {
516
529
cflags += [
517
- " -Wsign-compare" ,
518
-
519
530
# TODO(hans ): Remove once http://crbug.com/428099 is resolved.
520
531
" -Winconsistent-missing-override" ,
521
532
]
@@ -883,6 +894,14 @@ action("v8_dump_build_config") {
883
894
" v8_target_cpu=\" $v8_target_cpu \" " ,
884
895
" v8_use_snapshot=$v8_use_snapshot " ,
885
896
]
897
+
898
+ if (v8_current_cpu == " mips" || v8_current_cpu == " mipsel" ||
899
+ v8_current_cpu == " mips64" || v8_current_cpu == " mips64el" ) {
900
+ args += [
901
+ " mips_arch_variant=\" $mips_arch_variant \" " ,
902
+ " mips_use_msa=$mips_use_msa " ,
903
+ ]
904
+ }
886
905
}
887
906
888
907
# ##############################################################################
@@ -1018,6 +1037,7 @@ v8_source_set("v8_initializers") {
1018
1037
" src/builtins/builtins-arguments-gen.cc" ,
1019
1038
" src/builtins/builtins-arguments-gen.h" ,
1020
1039
" src/builtins/builtins-array-gen.cc" ,
1040
+ " src/builtins/builtins-array-gen.h" ,
1021
1041
" src/builtins/builtins-async-function-gen.cc" ,
1022
1042
" src/builtins/builtins-async-gen.cc" ,
1023
1043
" src/builtins/builtins-async-gen.h" ,
@@ -1060,8 +1080,11 @@ v8_source_set("v8_initializers") {
1060
1080
" src/builtins/builtins-string-gen.h" ,
1061
1081
" src/builtins/builtins-symbol-gen.cc" ,
1062
1082
" src/builtins/builtins-typedarray-gen.cc" ,
1083
+ " src/builtins/builtins-typedarray-gen.h" ,
1063
1084
" src/builtins/builtins-utils-gen.h" ,
1064
1085
" src/builtins/builtins-wasm-gen.cc" ,
1086
+ " src/builtins/growable-fixed-array-gen.cc" ,
1087
+ " src/builtins/growable-fixed-array-gen.h" ,
1065
1088
" src/builtins/setup-builtins-internal.cc" ,
1066
1089
" src/heap/setup-heap-internal.cc" ,
1067
1090
" src/ic/accessor-assembler.cc" ,
@@ -1193,7 +1216,6 @@ v8_source_set("v8_base") {
1193
1216
" //base/trace_event/common/trace_event_common.h" ,
1194
1217
1195
1218
# ## gcmole(all) ###
1196
- " include/v8-debug.h" ,
1197
1219
" include/v8-inspector-protocol.h" ,
1198
1220
" include/v8-inspector.h" ,
1199
1221
" include/v8-platform.h" ,
@@ -1236,8 +1258,6 @@ v8_source_set("v8_base") {
1236
1258
" src/assert-scope.h" ,
1237
1259
" src/ast/ast-function-literal-id-reindexer.cc" ,
1238
1260
" src/ast/ast-function-literal-id-reindexer.h" ,
1239
- " src/ast/ast-numbering.cc" ,
1240
- " src/ast/ast-numbering.h" ,
1241
1261
" src/ast/ast-source-ranges.h" ,
1242
1262
" src/ast/ast-traversal-visitor.h" ,
1243
1263
" src/ast/ast-value-factory.cc" ,
@@ -1304,6 +1324,8 @@ v8_source_set("v8_base") {
1304
1324
" src/builtins/builtins-utils.h" ,
1305
1325
" src/builtins/builtins.cc" ,
1306
1326
" src/builtins/builtins.h" ,
1327
+ " src/builtins/constants-table-builder.cc" ,
1328
+ " src/builtins/constants-table-builder.h" ,
1307
1329
" src/cached-powers.cc" ,
1308
1330
" src/cached-powers.h" ,
1309
1331
" src/callable.h" ,
@@ -1396,6 +1418,7 @@ v8_source_set("v8_base") {
1396
1418
" src/compiler/frame-states.h" ,
1397
1419
" src/compiler/frame.cc" ,
1398
1420
" src/compiler/frame.h" ,
1421
+ " src/compiler/functional-list.h" ,
1399
1422
" src/compiler/gap-resolver.cc" ,
1400
1423
" src/compiler/gap-resolver.h" ,
1401
1424
" src/compiler/graph-assembler.cc" ,
@@ -1639,6 +1662,8 @@ v8_source_set("v8_base") {
1639
1662
" src/global-handles.cc" ,
1640
1663
" src/global-handles.h" ,
1641
1664
" src/globals.h" ,
1665
+ " src/handler-table.cc" ,
1666
+ " src/handler-table.h" ,
1642
1667
" src/handles-inl.h" ,
1643
1668
" src/handles.cc" ,
1644
1669
" src/handles.h" ,
@@ -1670,6 +1695,7 @@ v8_source_set("v8_base") {
1670
1695
" src/heap/invalidated-slots-inl.h" ,
1671
1696
" src/heap/invalidated-slots.cc" ,
1672
1697
" src/heap/invalidated-slots.h" ,
1698
+ " src/heap/item-parallel-job.cc" ,
1673
1699
" src/heap/item-parallel-job.h" ,
1674
1700
" src/heap/local-allocator.h" ,
1675
1701
" src/heap/mark-compact-inl.h" ,
@@ -1719,6 +1745,8 @@ v8_source_set("v8_base") {
1719
1745
" src/icu_util.h" ,
1720
1746
" src/identity-map.cc" ,
1721
1747
" src/identity-map.h" ,
1748
+ " src/instruction-stream.cc" ,
1749
+ " src/instruction-stream.h" ,
1722
1750
" src/interface-descriptors.cc" ,
1723
1751
" src/interface-descriptors.h" ,
1724
1752
" src/interpreter/block-coverage-builder.h" ,
@@ -1835,20 +1863,26 @@ v8_source_set("v8_base") {
1835
1863
" src/objects/js-array.h" ,
1836
1864
" src/objects/js-collection-inl.h" ,
1837
1865
" src/objects/js-collection.h" ,
1866
+ " src/objects/js-promise-inl.h" ,
1867
+ " src/objects/js-promise.h" ,
1838
1868
" src/objects/js-regexp-inl.h" ,
1839
1869
" src/objects/js-regexp.h" ,
1840
1870
" src/objects/literal-objects-inl.h" ,
1841
1871
" src/objects/literal-objects.cc" ,
1842
1872
" src/objects/literal-objects.h" ,
1843
1873
" src/objects/map-inl.h" ,
1844
1874
" src/objects/map.h" ,
1875
+ " src/objects/microtask-inl.h" ,
1876
+ " src/objects/microtask.h" ,
1845
1877
" src/objects/module-inl.h" ,
1846
1878
" src/objects/module.cc" ,
1847
1879
" src/objects/module.h" ,
1848
1880
" src/objects/name-inl.h" ,
1849
1881
" src/objects/name.h" ,
1850
1882
" src/objects/object-macros-undef.h" ,
1851
1883
" src/objects/object-macros.h" ,
1884
+ " src/objects/promise-inl.h" ,
1885
+ " src/objects/promise.h" ,
1852
1886
" src/objects/property-descriptor-object-inl.h" ,
1853
1887
" src/objects/property-descriptor-object.h" ,
1854
1888
" src/objects/regexp-match-info.h" ,
@@ -1865,8 +1899,6 @@ v8_source_set("v8_base") {
1865
1899
" src/objects/template-objects.h" ,
1866
1900
" src/ostreams.cc" ,
1867
1901
" src/ostreams.h" ,
1868
- " src/parsing/background-parsing-task.cc" ,
1869
- " src/parsing/background-parsing-task.h" ,
1870
1902
" src/parsing/duplicate-finder.h" ,
1871
1903
" src/parsing/expression-classifier.h" ,
1872
1904
" src/parsing/expression-scope-reparenter.cc" ,
@@ -2126,8 +2158,6 @@ v8_source_set("v8_base") {
2126
2158
" src/wasm/signature-map.h" ,
2127
2159
" src/wasm/streaming-decoder.cc" ,
2128
2160
" src/wasm/streaming-decoder.h" ,
2129
- " src/wasm/wasm-api.cc" ,
2130
- " src/wasm/wasm-api.h" ,
2131
2161
" src/wasm/wasm-code-manager.cc" ,
2132
2162
" src/wasm/wasm-code-manager.h" ,
2133
2163
" src/wasm/wasm-code-specialization.cc" ,
@@ -2570,11 +2600,15 @@ v8_component("v8_libbase") {
2570
2600
2571
2601
if (is_posix ) {
2572
2602
sources += [
2573
- " src/base/platform/platform-posix-time.cc" ,
2574
- " src/base/platform/platform-posix-time.h" ,
2575
2603
" src/base/platform/platform-posix.cc" ,
2576
2604
" src/base/platform/platform-posix.h" ,
2577
2605
]
2606
+ if (current_os != " aix" ) {
2607
+ sources += [
2608
+ " src/base/platform/platform-posix-time.cc" ,
2609
+ " src/base/platform/platform-posix-time.h" ,
2610
+ ]
2611
+ }
2578
2612
}
2579
2613
2580
2614
if (is_linux ) {
@@ -2824,7 +2858,7 @@ group("v8_clusterfuzz") {
2824
2858
2825
2859
if (v8_test_isolation_mode != " noop" ) {
2826
2860
deps += [
2827
- " tools:run-deopt-fuzzer_run " ,
2861
+ " test:d8_default_run " ,
2828
2862
" tools:run-num-fuzzer_run" ,
2829
2863
]
2830
2864
}
@@ -2842,9 +2876,9 @@ group("v8_fuzzers") {
2842
2876
" :v8_simple_json_fuzzer" ,
2843
2877
" :v8_simple_multi_return_fuzzer" ,
2844
2878
" :v8_simple_parser_fuzzer" ,
2879
+ " :v8_simple_regexp_builtins_fuzzer" ,
2845
2880
" :v8_simple_regexp_fuzzer" ,
2846
2881
" :v8_simple_wasm_async_fuzzer" ,
2847
- " :v8_simple_wasm_call_fuzzer" ,
2848
2882
" :v8_simple_wasm_code_fuzzer" ,
2849
2883
" :v8_simple_wasm_compile_fuzzer" ,
2850
2884
" :v8_simple_wasm_data_section_fuzzer" ,
@@ -2952,7 +2986,7 @@ v8_executable("d8") {
2952
2986
}
2953
2987
2954
2988
if (v8_correctness_fuzzer ) {
2955
- deps += [ " tools/foozzie :v8_correctness_fuzzer_resources" ]
2989
+ deps += [ " tools/clusterfuzz :v8_correctness_fuzzer_resources" ]
2956
2990
}
2957
2991
2958
2992
defines = []
@@ -3127,6 +3161,25 @@ v8_source_set("parser_fuzzer") {
3127
3161
v8_fuzzer (" parser_fuzzer" ) {
3128
3162
}
3129
3163
3164
+ v8_source_set (" regexp_builtins_fuzzer" ) {
3165
+ sources = [
3166
+ " test/fuzzer/regexp-builtins.cc" ,
3167
+ " test/fuzzer/regexp_builtins/mjsunit.js.h" ,
3168
+ ]
3169
+
3170
+ deps = [
3171
+ " :fuzzer_support" ,
3172
+ ]
3173
+
3174
+ configs = [
3175
+ " :external_config" ,
3176
+ " :internal_config_base" ,
3177
+ ]
3178
+ }
3179
+
3180
+ v8_fuzzer (" regexp_builtins_fuzzer" ) {
3181
+ }
3182
+
3130
3183
v8_source_set (" regexp_fuzzer" ) {
3131
3184
sources = [
3132
3185
" test/fuzzer/regexp.cc" ,
@@ -3218,27 +3271,6 @@ v8_source_set("wasm_code_fuzzer") {
3218
3271
v8_fuzzer (" wasm_code_fuzzer" ) {
3219
3272
}
3220
3273
3221
- v8_source_set (" wasm_call_fuzzer" ) {
3222
- sources = [
3223
- " test/common/wasm/test-signatures.h" ,
3224
- " test/fuzzer/wasm-call.cc" ,
3225
- ]
3226
-
3227
- deps = [
3228
- " :fuzzer_support" ,
3229
- " :lib_wasm_fuzzer_common" ,
3230
- " :wasm_module_runner" ,
3231
- ]
3232
-
3233
- configs = [
3234
- " :external_config" ,
3235
- " :internal_config_base" ,
3236
- ]
3237
- }
3238
-
3239
- v8_fuzzer (" wasm_call_fuzzer" ) {
3240
- }
3241
-
3242
3274
v8_source_set (" lib_wasm_fuzzer_common" ) {
3243
3275
sources = [
3244
3276
" test/fuzzer/wasm-fuzzer-common.cc" ,
0 commit comments