Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: BUILD.gn

Issue 1842043002: gn format the BUILD.gn file (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 defines += [ "V8_TARGET_ARCH_ARM64" ] 180 defines += [ "V8_TARGET_ARCH_ARM64" ]
181 } 181 }
182 if (v8_target_arch == "mipsel") { 182 if (v8_target_arch == "mipsel") {
183 defines += [ "V8_TARGET_ARCH_MIPS" ] 183 defines += [ "V8_TARGET_ARCH_MIPS" ]
184 } 184 }
185 if (v8_target_arch == "mips64el") { 185 if (v8_target_arch == "mips64el") {
186 defines += [ "V8_TARGET_ARCH_MIPS64" ] 186 defines += [ "V8_TARGET_ARCH_MIPS64" ]
187 } 187 }
188 if (v8_target_arch == "s390") { 188 if (v8_target_arch == "s390") {
189 defines += [ "V8_TARGET_ARCH_S390" ] 189 defines += [ "V8_TARGET_ARCH_S390" ]
190 } 190 }
191 if (v8_target_arch == "s390x") { 191 if (v8_target_arch == "s390x") {
192 defines += [ 192 defines += [
193 "V8_TARGET_ARCH_S390", 193 "V8_TARGET_ARCH_S390",
194 "V8_TARGET_ARCH_S390X", 194 "V8_TARGET_ARCH_S390X",
195 ] 195 ]
196 } 196 }
197 if (v8_target_arch == "x86") { 197 if (v8_target_arch == "x86") {
198 defines += [ "V8_TARGET_ARCH_IA32" ] 198 defines += [ "V8_TARGET_ARCH_IA32" ]
199 } 199 }
200 if (v8_target_arch == "x64") { 200 if (v8_target_arch == "x64") {
201 defines += [ "V8_TARGET_ARCH_X64" ] 201 defines += [ "V8_TARGET_ARCH_X64" ]
202 } 202 }
203 203
204 if (is_win) { 204 if (is_win) {
205 defines += [ "WIN32" ] 205 defines += [ "WIN32" ]
206 # TODO(jochen): Support v8_enable_prof. 206 # TODO(jochen): Support v8_enable_prof.
207 } 207 }
208 208
209 # TODO(jochen): Add support for compiling with simulators. 209 # TODO(jochen): Add support for compiling with simulators.
210 210
211 if (is_debug) { 211 if (is_debug) {
212 # TODO(jochen): Add support for different debug optimization levels. 212 # TODO(jochen): Add support for different debug optimization levels.
213 defines += [ 213 defines += [
(...skipping 11 matching lines...) Expand all
225 # Actions 225 # Actions
226 # 226 #
227 227
228 action("js2c") { 228 action("js2c") {
229 visibility = [ ":*" ] # Only targets in this file can depend on this. 229 visibility = [ ":*" ] # Only targets in this file can depend on this.
230 230
231 script = "tools/js2c.py" 231 script = "tools/js2c.py"
232 232
233 # The script depends on this other script, this rule causes a rebuild if it 233 # The script depends on this other script, this rule causes a rebuild if it
234 # changes. 234 # changes.
235 inputs = [ "tools/jsmin.py" ] 235 inputs = [
236 "tools/jsmin.py",
237 ]
236 238
239 # NOSORT
237 sources = [ 240 sources = [
238 "src/js/macros.py", 241 "src/js/macros.py",
239 "src/messages.h", 242 "src/messages.h",
240 "src/js/prologue.js", 243 "src/js/prologue.js",
241 "src/js/runtime.js", 244 "src/js/runtime.js",
242 "src/js/v8natives.js", 245 "src/js/v8natives.js",
243 "src/js/symbol.js", 246 "src/js/symbol.js",
244 "src/js/array.js", 247 "src/js/array.js",
245 "src/js/string.js", 248 "src/js/string.js",
246 "src/js/uri.js", 249 "src/js/uri.js",
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 } 293 }
291 } 294 }
292 295
293 action("js2c_experimental") { 296 action("js2c_experimental") {
294 visibility = [ ":*" ] # Only targets in this file can depend on this. 297 visibility = [ ":*" ] # Only targets in this file can depend on this.
295 298
296 script = "tools/js2c.py" 299 script = "tools/js2c.py"
297 300
298 # The script depends on this other script, this rule causes a rebuild if it 301 # The script depends on this other script, this rule causes a rebuild if it
299 # changes. 302 # changes.
300 inputs = [ "tools/jsmin.py" ] 303 inputs = [
304 "tools/jsmin.py",
305 ]
301 306
307 # NOSORT
302 sources = [ 308 sources = [
303 "src/js/macros.py", 309 "src/js/macros.py",
304 "src/messages.h", 310 "src/messages.h",
305 "src/js/generator.js", 311 "src/js/generator.js",
306 "src/js/harmony-atomics.js", 312 "src/js/harmony-atomics.js",
307 "src/js/harmony-regexp-exec.js", 313 "src/js/harmony-regexp-exec.js",
308 "src/js/harmony-object-observe.js", 314 "src/js/harmony-object-observe.js",
309 "src/js/harmony-sharedarraybuffer.js", 315 "src/js/harmony-sharedarraybuffer.js",
310 "src/js/harmony-simd.js", 316 "src/js/harmony-simd.js",
311 "src/js/harmony-species.js", 317 "src/js/harmony-species.js",
312 "src/js/harmony-unicode-regexps.js", 318 "src/js/harmony-unicode-regexps.js",
313 "src/js/harmony-string-padding.js", 319 "src/js/harmony-string-padding.js",
314 "src/js/promise-extra.js" 320 "src/js/promise-extra.js",
315 ] 321 ]
316 322
317 outputs = [ 323 outputs = [
318 "$target_gen_dir/experimental-libraries.cc", 324 "$target_gen_dir/experimental-libraries.cc",
319 ] 325 ]
320 326
321 args = [ 327 args = [
322 rebase_path("$target_gen_dir/experimental-libraries.cc", 328 rebase_path("$target_gen_dir/experimental-libraries.cc",
323 root_build_dir), 329 root_build_dir),
324 "EXPERIMENTAL", 330 "EXPERIMENTAL",
325 ] + rebase_path(sources, root_build_dir) 331 ] + rebase_path(sources, root_build_dir)
326 332
327 if (v8_use_external_startup_data) { 333 if (v8_use_external_startup_data) {
328 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] 334 outputs += [ "$target_gen_dir/libraries_experimental.bin" ]
329 args += [ 335 args += [
330 "--startup_blob", 336 "--startup_blob",
331 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir), 337 rebase_path("$target_gen_dir/libraries_experimental.bin", root_build_dir),
332 ] 338 ]
333 } 339 }
334 } 340 }
335 341
336 action("js2c_extras") { 342 action("js2c_extras") {
337 visibility = [ ":*" ] # Only targets in this file can depend on this. 343 visibility = [ ":*" ] # Only targets in this file can depend on this.
338 344
339 script = "tools/js2c.py" 345 script = "tools/js2c.py"
340 346
341 # The script depends on this other script, this rule causes a rebuild if it 347 # The script depends on this other script, this rule causes a rebuild if it
342 # changes. 348 # changes.
343 inputs = [ "tools/jsmin.py" ] 349 inputs = [
350 "tools/jsmin.py",
351 ]
344 352
345 sources = v8_extra_library_files 353 sources = v8_extra_library_files
346 354
347 outputs = [ 355 outputs = [
348 "$target_gen_dir/extras-libraries.cc", 356 "$target_gen_dir/extras-libraries.cc",
349 ] 357 ]
350 358
351 args = [ 359 args = [
352 rebase_path("$target_gen_dir/extras-libraries.cc", 360 rebase_path("$target_gen_dir/extras-libraries.cc", root_build_dir),
353 root_build_dir),
354 "EXTRAS", 361 "EXTRAS",
355 ] + rebase_path(sources, root_build_dir) 362 ] + rebase_path(sources, root_build_dir)
356 363
357 if (v8_use_external_startup_data) { 364 if (v8_use_external_startup_data) {
358 outputs += [ "$target_gen_dir/libraries_extras.bin" ] 365 outputs += [ "$target_gen_dir/libraries_extras.bin" ]
359 args += [ 366 args += [
360 "--startup_blob", 367 "--startup_blob",
361 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir), 368 rebase_path("$target_gen_dir/libraries_extras.bin", root_build_dir),
362 ] 369 ]
363 } 370 }
364 } 371 }
365 372
366 action("js2c_experimental_extras") { 373 action("js2c_experimental_extras") {
367 visibility = [ ":*" ] # Only targets in this file can depend on this. 374 visibility = [ ":*" ] # Only targets in this file can depend on this.
368 375
369 script = "tools/js2c.py" 376 script = "tools/js2c.py"
370 377
371 # The script depends on this other script, this rule causes a rebuild if it 378 # The script depends on this other script, this rule causes a rebuild if it
372 # changes. 379 # changes.
373 inputs = [ "tools/jsmin.py" ] 380 inputs = [
381 "tools/jsmin.py",
382 ]
374 383
375 sources = v8_experimental_extra_library_files 384 sources = v8_experimental_extra_library_files
376 385
377 outputs = [ 386 outputs = [
378 "$target_gen_dir/experimental-extras-libraries.cc", 387 "$target_gen_dir/experimental-extras-libraries.cc",
379 ] 388 ]
380 389
381 args = [ 390 args = [
382 rebase_path("$target_gen_dir/experimental-extras-libraries.cc", 391 rebase_path("$target_gen_dir/experimental-extras-libraries.cc",
383 root_build_dir), 392 root_build_dir),
384 "EXPERIMENTAL_EXTRAS", 393 "EXPERIMENTAL_EXTRAS",
385 ] + rebase_path(sources, root_build_dir) 394 ] + rebase_path(sources, root_build_dir)
386 395
387 if (v8_use_external_startup_data) { 396 if (v8_use_external_startup_data) {
388 outputs += [ "$target_gen_dir/libraries_experimental_extras.bin" ] 397 outputs += [ "$target_gen_dir/libraries_experimental_extras.bin" ]
389 args += [ 398 args += [
390 "--startup_blob", 399 "--startup_blob",
391 rebase_path("$target_gen_dir/libraries_experimental_extras.bin", root_buil d_dir), 400 rebase_path("$target_gen_dir/libraries_experimental_extras.bin",
401 root_build_dir),
392 ] 402 ]
393 } 403 }
394 } 404 }
395 405
396 action("d8_js2c") { 406 action("d8_js2c") {
397 visibility = [ ":*" ] # Only targets in this file can depend on this. 407 visibility = [ ":*" ] # Only targets in this file can depend on this.
398 408
399 script = "tools/js2c.py" 409 script = "tools/js2c.py"
400 410
411 # NOSORT
401 inputs = [ 412 inputs = [
402 "src/d8.js", 413 "src/d8.js",
403 "src/js/macros.py", 414 "src/js/macros.py",
404 ] 415 ]
405 416
406 outputs = [ 417 outputs = [
407 "$target_gen_dir/d8-js.cc", 418 "$target_gen_dir/d8-js.cc",
408 ] 419 ]
409 420
410 args = rebase_path(outputs, root_build_dir) + [ "D8" ] + 421 args = rebase_path(outputs, root_build_dir) + [ "D8" ] +
(...skipping 13 matching lines...) Expand all
424 } 435 }
425 } 436 }
426 437
427 if (v8_use_external_startup_data) { 438 if (v8_use_external_startup_data) {
428 action("natives_blob") { 439 action("natives_blob") {
429 visibility = [ ":*" ] # Only targets in this file can depend on this. 440 visibility = [ ":*" ] # Only targets in this file can depend on this.
430 441
431 deps = [ 442 deps = [
432 ":js2c", 443 ":js2c",
433 ":js2c_experimental", 444 ":js2c_experimental",
445 ":js2c_experimental_extras",
434 ":js2c_extras", 446 ":js2c_extras",
435 ":js2c_experimental_extras",
436 ] 447 ]
437 448
438 sources = [ 449 sources = [
439 "$target_gen_dir/libraries.bin", 450 "$target_gen_dir/libraries.bin",
440 "$target_gen_dir/libraries_experimental.bin", 451 "$target_gen_dir/libraries_experimental.bin",
452 "$target_gen_dir/libraries_experimental_extras.bin",
441 "$target_gen_dir/libraries_extras.bin", 453 "$target_gen_dir/libraries_extras.bin",
442 "$target_gen_dir/libraries_experimental_extras.bin",
443 ] 454 ]
444 455
445 outputs = [ 456 outputs = [
446 "$root_out_dir/natives_blob.bin", 457 "$root_out_dir/natives_blob.bin",
447 ] 458 ]
448 459
449 script = "tools/concatenate-files.py" 460 script = "tools/concatenate-files.py"
450 461
451 args = rebase_path(sources + outputs, root_build_dir) 462 args = rebase_path(sources + outputs, root_build_dir)
452 } 463 }
453 } 464 }
454 465
455 action("postmortem-metadata") { 466 action("postmortem-metadata") {
456 # Only targets in this file and the top-level visibility target can 467 # Only targets in this file and the top-level visibility target can
457 # depend on this. 468 # depend on this.
458 visibility = [ 469 visibility = [
459 ":*", 470 ":*",
460 "//:gn_visibility", 471 "//:gn_visibility",
461 ] 472 ]
462 473
463 script = "tools/gen-postmortem-metadata.py" 474 script = "tools/gen-postmortem-metadata.py"
464 475
465 sources = [ 476 sources = [
477 "src/objects-inl.h",
Yang 2016/03/31 10:49:13 Reordering arguments causes this script to fail.
466 "src/objects.h", 478 "src/objects.h",
467 "src/objects-inl.h",
468 ] 479 ]
469 480
470 outputs = [ 481 outputs = [
471 "$target_gen_dir/debug-support.cc", 482 "$target_gen_dir/debug-support.cc",
472 ] 483 ]
473 484
474 args = rebase_path(outputs, root_build_dir) + 485 args = rebase_path(outputs, root_build_dir) +
475 rebase_path(sources, root_build_dir) 486 rebase_path(sources, root_build_dir)
476 } 487 }
477 488
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 ############################################################################### 529 ###############################################################################
519 # Source Sets (aka static libraries) 530 # Source Sets (aka static libraries)
520 # 531 #
521 532
522 source_set("v8_nosnapshot") { 533 source_set("v8_nosnapshot") {
523 visibility = [ ":*" ] # Only targets in this file can depend on this. 534 visibility = [ ":*" ] # Only targets in this file can depend on this.
524 535
525 deps = [ 536 deps = [
526 ":js2c", 537 ":js2c",
527 ":js2c_experimental", 538 ":js2c_experimental",
539 ":js2c_experimental_extras",
528 ":js2c_extras", 540 ":js2c_extras",
529 ":js2c_experimental_extras",
530 ":v8_base", 541 ":v8_base",
531 ] 542 ]
532 543
533 sources = [ 544 sources = [
534 "$target_gen_dir/libraries.cc", 545 "$target_gen_dir/experimental-extras-libraries.cc",
535 "$target_gen_dir/experimental-libraries.cc", 546 "$target_gen_dir/experimental-libraries.cc",
536 "$target_gen_dir/extras-libraries.cc", 547 "$target_gen_dir/extras-libraries.cc",
537 "$target_gen_dir/experimental-extras-libraries.cc", 548 "$target_gen_dir/libraries.cc",
538 "src/snapshot/snapshot-empty.cc", 549 "src/snapshot/snapshot-empty.cc",
539 ] 550 ]
540 551
541 configs -= [ "//build/config/compiler:chromium_code" ] 552 configs -= [ "//build/config/compiler:chromium_code" ]
542 configs += [ "//build/config/compiler:no_chromium_code" ] 553 configs += [ "//build/config/compiler:no_chromium_code" ]
543 configs += [ 554 configs += [
544 ":internal_config", 555 ":internal_config",
545 ":features", 556 ":features",
546 ":toolchain", 557 ":toolchain",
547 ] 558 ]
548 } 559 }
549 560
550 source_set("v8_snapshot") { 561 source_set("v8_snapshot") {
551 # Only targets in this file and the top-level visibility target can 562 # Only targets in this file and the top-level visibility target can
552 # depend on this. 563 # depend on this.
553 visibility = [ 564 visibility = [
554 ":*", 565 ":*",
555 "//:gn_visibility", 566 "//:gn_visibility",
556 ] 567 ]
557 568
558 deps = [ 569 deps = [
559 ":js2c", 570 ":js2c",
560 ":js2c_experimental", 571 ":js2c_experimental",
572 ":js2c_experimental_extras",
561 ":js2c_extras", 573 ":js2c_extras",
562 ":js2c_experimental_extras",
563 ":v8_base", 574 ":v8_base",
564 ] 575 ]
565 public_deps = [ 576 public_deps = [
566 # This should be public so downstream targets can declare the snapshot 577 # This should be public so downstream targets can declare the snapshot
567 # output file as their inputs. 578 # output file as their inputs.
568 ":run_mksnapshot", 579 ":run_mksnapshot",
569 ] 580 ]
570 581
571 sources = [ 582 sources = [
572 "$target_gen_dir/libraries.cc", 583 "$target_gen_dir/experimental-extras-libraries.cc",
573 "$target_gen_dir/experimental-libraries.cc", 584 "$target_gen_dir/experimental-libraries.cc",
574 "$target_gen_dir/extras-libraries.cc", 585 "$target_gen_dir/extras-libraries.cc",
575 "$target_gen_dir/experimental-extras-libraries.cc", 586 "$target_gen_dir/libraries.cc",
576 "$target_gen_dir/snapshot.cc", 587 "$target_gen_dir/snapshot.cc",
577 ] 588 ]
578 589
579 configs -= [ "//build/config/compiler:chromium_code" ] 590 configs -= [ "//build/config/compiler:chromium_code" ]
580 configs += [ "//build/config/compiler:no_chromium_code" ] 591 configs += [ "//build/config/compiler:no_chromium_code" ]
581 configs += [ 592 configs += [
582 ":internal_config", 593 ":internal_config",
583 ":features", 594 ":features",
584 ":toolchain", 595 ":toolchain",
585 ] 596 ]
586 } 597 }
587 598
588 if (v8_use_external_startup_data) { 599 if (v8_use_external_startup_data) {
589 source_set("v8_external_snapshot") { 600 source_set("v8_external_snapshot") {
590 visibility = [ ":*" ] # Only targets in this file can depend on this. 601 visibility = [ ":*" ] # Only targets in this file can depend on this.
591 602
592 deps = [ 603 deps = [
593 ":js2c", 604 ":js2c",
594 ":js2c_experimental", 605 ":js2c_experimental",
606 ":js2c_experimental_extras",
595 ":js2c_extras", 607 ":js2c_extras",
596 ":js2c_experimental_extras",
597 ":v8_base", 608 ":v8_base",
598 ] 609 ]
599 public_deps = [ 610 public_deps = [
600 ":natives_blob", 611 ":natives_blob",
601 ":run_mksnapshot", 612 ":run_mksnapshot",
602 ] 613 ]
603 614
604 sources = [ 615 sources = [
605 "src/snapshot/natives-external.cc", 616 "src/snapshot/natives-external.cc",
606 "src/snapshot/snapshot-external.cc", 617 "src/snapshot/snapshot-external.cc",
(...skipping 21 matching lines...) Expand all
628 "include/v8-profiler.h", 639 "include/v8-profiler.h",
629 "include/v8-testing.h", 640 "include/v8-testing.h",
630 "include/v8-util.h", 641 "include/v8-util.h",
631 "include/v8-version.h", 642 "include/v8-version.h",
632 "include/v8.h", 643 "include/v8.h",
633 "include/v8config.h", 644 "include/v8config.h",
634 "src/accessors.cc", 645 "src/accessors.cc",
635 "src/accessors.h", 646 "src/accessors.h",
636 "src/address-map.cc", 647 "src/address-map.cc",
637 "src/address-map.h", 648 "src/address-map.h",
649 "src/allocation-site-scopes.cc",
650 "src/allocation-site-scopes.h",
638 "src/allocation.cc", 651 "src/allocation.cc",
639 "src/allocation.h", 652 "src/allocation.h",
640 "src/allocation-site-scopes.cc",
641 "src/allocation-site-scopes.h",
642 "src/api.cc",
643 "src/api.h",
644 "src/api-arguments.cc", 653 "src/api-arguments.cc",
645 "src/api-arguments.h", 654 "src/api-arguments.h",
646 "src/api-experimental.cc", 655 "src/api-experimental.cc",
647 "src/api-experimental.h", 656 "src/api-experimental.h",
648 "src/api-natives.cc", 657 "src/api-natives.cc",
649 "src/api-natives.h", 658 "src/api-natives.h",
659 "src/api.cc",
660 "src/api.h",
650 "src/arguments.cc", 661 "src/arguments.cc",
651 "src/arguments.h", 662 "src/arguments.h",
652 "src/assembler.cc", 663 "src/assembler.cc",
653 "src/assembler.h", 664 "src/assembler.h",
665 "src/assert-scope.cc",
654 "src/assert-scope.h", 666 "src/assert-scope.h",
655 "src/assert-scope.cc",
656 "src/ast/ast-expression-rewriter.cc", 667 "src/ast/ast-expression-rewriter.cc",
657 "src/ast/ast-expression-rewriter.h", 668 "src/ast/ast-expression-rewriter.h",
658 "src/ast/ast-expression-visitor.cc", 669 "src/ast/ast-expression-visitor.cc",
659 "src/ast/ast-expression-visitor.h", 670 "src/ast/ast-expression-visitor.h",
660 "src/ast/ast-literal-reindexer.cc", 671 "src/ast/ast-literal-reindexer.cc",
661 "src/ast/ast-literal-reindexer.h", 672 "src/ast/ast-literal-reindexer.h",
662 "src/ast/ast-numbering.cc", 673 "src/ast/ast-numbering.cc",
663 "src/ast/ast-numbering.h", 674 "src/ast/ast-numbering.h",
664 "src/ast/ast-value-factory.cc", 675 "src/ast/ast-value-factory.cc",
665 "src/ast/ast-value-factory.h", 676 "src/ast/ast-value-factory.h",
(...skipping 19 matching lines...) Expand all
685 "src/bignum-dtoa.cc", 696 "src/bignum-dtoa.cc",
686 "src/bignum-dtoa.h", 697 "src/bignum-dtoa.h",
687 "src/bignum.cc", 698 "src/bignum.cc",
688 "src/bignum.h", 699 "src/bignum.h",
689 "src/bit-vector.cc", 700 "src/bit-vector.cc",
690 "src/bit-vector.h", 701 "src/bit-vector.h",
691 "src/bootstrapper.cc", 702 "src/bootstrapper.cc",
692 "src/bootstrapper.h", 703 "src/bootstrapper.h",
693 "src/builtins.cc", 704 "src/builtins.cc",
694 "src/builtins.h", 705 "src/builtins.h",
706 "src/cached-powers.cc",
707 "src/cached-powers.h",
695 "src/cancelable-task.cc", 708 "src/cancelable-task.cc",
696 "src/cancelable-task.h", 709 "src/cancelable-task.h",
697 "src/cached-powers.cc", 710 "src/char-predicates-inl.h",
698 "src/cached-powers.h",
699 "src/char-predicates.cc", 711 "src/char-predicates.cc",
700 "src/char-predicates-inl.h",
701 "src/char-predicates.h", 712 "src/char-predicates.h",
702 "src/checks.h", 713 "src/checks.h",
703 "src/code-factory.cc", 714 "src/code-factory.cc",
704 "src/code-factory.h", 715 "src/code-factory.h",
716 "src/code-stubs-hydrogen.cc",
705 "src/code-stubs.cc", 717 "src/code-stubs.cc",
706 "src/code-stubs.h", 718 "src/code-stubs.h",
707 "src/code-stubs-hydrogen.cc",
708 "src/codegen.cc", 719 "src/codegen.cc",
709 "src/codegen.h", 720 "src/codegen.h",
710 "src/collector.h", 721 "src/collector.h",
711 "src/compilation-cache.cc", 722 "src/compilation-cache.cc",
712 "src/compilation-cache.h", 723 "src/compilation-cache.h",
713 "src/compilation-dependencies.cc", 724 "src/compilation-dependencies.cc",
714 "src/compilation-dependencies.h", 725 "src/compilation-dependencies.h",
715 "src/compilation-statistics.cc", 726 "src/compilation-statistics.cc",
716 "src/compilation-statistics.h", 727 "src/compilation-statistics.h",
728 "src/compiler.cc",
729 "src/compiler.h",
717 "src/compiler/access-builder.cc", 730 "src/compiler/access-builder.cc",
718 "src/compiler/access-builder.h", 731 "src/compiler/access-builder.h",
719 "src/compiler/access-info.cc", 732 "src/compiler/access-info.cc",
720 "src/compiler/access-info.h", 733 "src/compiler/access-info.h",
721 "src/compiler/all-nodes.cc", 734 "src/compiler/all-nodes.cc",
722 "src/compiler/all-nodes.h", 735 "src/compiler/all-nodes.h",
723 "src/compiler/ast-graph-builder.cc", 736 "src/compiler/ast-graph-builder.cc",
724 "src/compiler/ast-graph-builder.h", 737 "src/compiler/ast-graph-builder.h",
725 "src/compiler/ast-loop-assignment-analyzer.cc", 738 "src/compiler/ast-loop-assignment-analyzer.cc",
726 "src/compiler/ast-loop-assignment-analyzer.h", 739 "src/compiler/ast-loop-assignment-analyzer.h",
727 "src/compiler/basic-block-instrumentor.cc", 740 "src/compiler/basic-block-instrumentor.cc",
728 "src/compiler/basic-block-instrumentor.h", 741 "src/compiler/basic-block-instrumentor.h",
729 "src/compiler/branch-elimination.cc", 742 "src/compiler/branch-elimination.cc",
730 "src/compiler/branch-elimination.h", 743 "src/compiler/branch-elimination.h",
731 "src/compiler/bytecode-branch-analysis.cc", 744 "src/compiler/bytecode-branch-analysis.cc",
732 "src/compiler/bytecode-branch-analysis.h", 745 "src/compiler/bytecode-branch-analysis.h",
733 "src/compiler/bytecode-graph-builder.cc", 746 "src/compiler/bytecode-graph-builder.cc",
734 "src/compiler/bytecode-graph-builder.h", 747 "src/compiler/bytecode-graph-builder.h",
748 "src/compiler/c-linkage.cc",
735 "src/compiler/change-lowering.cc", 749 "src/compiler/change-lowering.cc",
736 "src/compiler/change-lowering.h", 750 "src/compiler/change-lowering.h",
737 "src/compiler/c-linkage.cc",
738 "src/compiler/coalesced-live-ranges.cc", 751 "src/compiler/coalesced-live-ranges.cc",
739 "src/compiler/coalesced-live-ranges.h", 752 "src/compiler/coalesced-live-ranges.h",
740 "src/compiler/code-generator-impl.h", 753 "src/compiler/code-generator-impl.h",
741 "src/compiler/code-generator.cc", 754 "src/compiler/code-generator.cc",
742 "src/compiler/code-generator.h", 755 "src/compiler/code-generator.h",
743 "src/compiler/code-stub-assembler.cc", 756 "src/compiler/code-stub-assembler.cc",
744 "src/compiler/code-stub-assembler.h", 757 "src/compiler/code-stub-assembler.h",
745 "src/compiler/common-node-cache.cc", 758 "src/compiler/common-node-cache.cc",
746 "src/compiler/common-node-cache.h", 759 "src/compiler/common-node-cache.h",
747 "src/compiler/common-operator-reducer.cc", 760 "src/compiler/common-operator-reducer.cc",
748 "src/compiler/common-operator-reducer.h", 761 "src/compiler/common-operator-reducer.h",
749 "src/compiler/common-operator.cc", 762 "src/compiler/common-operator.cc",
750 "src/compiler/common-operator.h", 763 "src/compiler/common-operator.h",
751 "src/compiler/control-builders.cc", 764 "src/compiler/control-builders.cc",
752 "src/compiler/control-builders.h", 765 "src/compiler/control-builders.h",
753 "src/compiler/control-equivalence.cc", 766 "src/compiler/control-equivalence.cc",
754 "src/compiler/control-equivalence.h", 767 "src/compiler/control-equivalence.h",
755 "src/compiler/control-flow-optimizer.cc", 768 "src/compiler/control-flow-optimizer.cc",
756 "src/compiler/control-flow-optimizer.h", 769 "src/compiler/control-flow-optimizer.h",
757 "src/compiler/dead-code-elimination.cc", 770 "src/compiler/dead-code-elimination.cc",
758 "src/compiler/dead-code-elimination.h", 771 "src/compiler/dead-code-elimination.h",
759 "src/compiler/diamond.h", 772 "src/compiler/diamond.h",
773 "src/compiler/escape-analysis-reducer.cc",
774 "src/compiler/escape-analysis-reducer.h",
760 "src/compiler/escape-analysis.cc", 775 "src/compiler/escape-analysis.cc",
761 "src/compiler/escape-analysis.h", 776 "src/compiler/escape-analysis.h",
762 "src/compiler/escape-analysis-reducer.cc",
763 "src/compiler/escape-analysis-reducer.h",
764 "src/compiler/frame.cc",
765 "src/compiler/frame.h",
766 "src/compiler/frame-elider.cc", 777 "src/compiler/frame-elider.cc",
767 "src/compiler/frame-elider.h", 778 "src/compiler/frame-elider.h",
768 "src/compiler/frame-states.cc", 779 "src/compiler/frame-states.cc",
769 "src/compiler/frame-states.h", 780 "src/compiler/frame-states.h",
781 "src/compiler/frame.cc",
782 "src/compiler/frame.h",
770 "src/compiler/gap-resolver.cc", 783 "src/compiler/gap-resolver.cc",
771 "src/compiler/gap-resolver.h", 784 "src/compiler/gap-resolver.h",
772 "src/compiler/graph-reducer.cc", 785 "src/compiler/graph-reducer.cc",
773 "src/compiler/graph-reducer.h", 786 "src/compiler/graph-reducer.h",
774 "src/compiler/graph-replay.cc", 787 "src/compiler/graph-replay.cc",
775 "src/compiler/graph-replay.h", 788 "src/compiler/graph-replay.h",
776 "src/compiler/graph-trimmer.cc", 789 "src/compiler/graph-trimmer.cc",
777 "src/compiler/graph-trimmer.h", 790 "src/compiler/graph-trimmer.h",
778 "src/compiler/graph-visualizer.cc", 791 "src/compiler/graph-visualizer.cc",
779 "src/compiler/graph-visualizer.h", 792 "src/compiler/graph-visualizer.h",
(...skipping 20 matching lines...) Expand all
800 "src/compiler/js-create-lowering.cc", 813 "src/compiler/js-create-lowering.cc",
801 "src/compiler/js-create-lowering.h", 814 "src/compiler/js-create-lowering.h",
802 "src/compiler/js-frame-specialization.cc", 815 "src/compiler/js-frame-specialization.cc",
803 "src/compiler/js-frame-specialization.h", 816 "src/compiler/js-frame-specialization.h",
804 "src/compiler/js-generic-lowering.cc", 817 "src/compiler/js-generic-lowering.cc",
805 "src/compiler/js-generic-lowering.h", 818 "src/compiler/js-generic-lowering.h",
806 "src/compiler/js-global-object-specialization.cc", 819 "src/compiler/js-global-object-specialization.cc",
807 "src/compiler/js-global-object-specialization.h", 820 "src/compiler/js-global-object-specialization.h",
808 "src/compiler/js-graph.cc", 821 "src/compiler/js-graph.cc",
809 "src/compiler/js-graph.h", 822 "src/compiler/js-graph.h",
823 "src/compiler/js-inlining-heuristic.cc",
824 "src/compiler/js-inlining-heuristic.h",
810 "src/compiler/js-inlining.cc", 825 "src/compiler/js-inlining.cc",
811 "src/compiler/js-inlining.h", 826 "src/compiler/js-inlining.h",
812 "src/compiler/js-inlining-heuristic.cc",
813 "src/compiler/js-inlining-heuristic.h",
814 "src/compiler/js-intrinsic-lowering.cc", 827 "src/compiler/js-intrinsic-lowering.cc",
815 "src/compiler/js-intrinsic-lowering.h", 828 "src/compiler/js-intrinsic-lowering.h",
816 "src/compiler/js-native-context-specialization.cc", 829 "src/compiler/js-native-context-specialization.cc",
817 "src/compiler/js-native-context-specialization.h", 830 "src/compiler/js-native-context-specialization.h",
818 "src/compiler/js-operator.cc", 831 "src/compiler/js-operator.cc",
819 "src/compiler/js-operator.h", 832 "src/compiler/js-operator.h",
820 "src/compiler/js-typed-lowering.cc", 833 "src/compiler/js-typed-lowering.cc",
821 "src/compiler/js-typed-lowering.h", 834 "src/compiler/js-typed-lowering.h",
822 "src/compiler/jump-threading.cc", 835 "src/compiler/jump-threading.cc",
823 "src/compiler/jump-threading.h", 836 "src/compiler/jump-threading.h",
824 "src/compiler/linkage.cc", 837 "src/compiler/linkage.cc",
825 "src/compiler/linkage.h", 838 "src/compiler/linkage.h",
826 "src/compiler/live-range-separator.cc", 839 "src/compiler/live-range-separator.cc",
827 "src/compiler/live-range-separator.h", 840 "src/compiler/live-range-separator.h",
828 "src/compiler/liveness-analyzer.cc", 841 "src/compiler/liveness-analyzer.cc",
829 "src/compiler/liveness-analyzer.h", 842 "src/compiler/liveness-analyzer.h",
830 "src/compiler/load-elimination.cc", 843 "src/compiler/load-elimination.cc",
831 "src/compiler/load-elimination.h", 844 "src/compiler/load-elimination.h",
832 "src/compiler/loop-peeling.cc",
833 "src/compiler/loop-analysis.cc", 845 "src/compiler/loop-analysis.cc",
834 "src/compiler/loop-analysis.h", 846 "src/compiler/loop-analysis.h",
847 "src/compiler/loop-peeling.cc",
835 "src/compiler/machine-operator-reducer.cc", 848 "src/compiler/machine-operator-reducer.cc",
836 "src/compiler/machine-operator-reducer.h", 849 "src/compiler/machine-operator-reducer.h",
837 "src/compiler/machine-operator.cc", 850 "src/compiler/machine-operator.cc",
838 "src/compiler/machine-operator.h", 851 "src/compiler/machine-operator.h",
839 "src/compiler/move-optimizer.cc", 852 "src/compiler/move-optimizer.cc",
840 "src/compiler/move-optimizer.h", 853 "src/compiler/move-optimizer.h",
841 "src/compiler/node-aux-data.h", 854 "src/compiler/node-aux-data.h",
842 "src/compiler/node-cache.cc", 855 "src/compiler/node-cache.cc",
843 "src/compiler/node-cache.h", 856 "src/compiler/node-cache.h",
844 "src/compiler/node-marker.cc", 857 "src/compiler/node-marker.cc",
845 "src/compiler/node-marker.h", 858 "src/compiler/node-marker.h",
846 "src/compiler/node-matchers.cc", 859 "src/compiler/node-matchers.cc",
847 "src/compiler/node-matchers.h", 860 "src/compiler/node-matchers.h",
848 "src/compiler/node-properties.cc", 861 "src/compiler/node-properties.cc",
849 "src/compiler/node-properties.h", 862 "src/compiler/node-properties.h",
850 "src/compiler/node.cc", 863 "src/compiler/node.cc",
851 "src/compiler/node.h", 864 "src/compiler/node.h",
852 "src/compiler/opcodes.cc", 865 "src/compiler/opcodes.cc",
853 "src/compiler/opcodes.h", 866 "src/compiler/opcodes.h",
854 "src/compiler/operator-properties.cc", 867 "src/compiler/operator-properties.cc",
855 "src/compiler/operator-properties.h", 868 "src/compiler/operator-properties.h",
856 "src/compiler/operator.cc", 869 "src/compiler/operator.cc",
857 "src/compiler/operator.h", 870 "src/compiler/operator.h",
858 "src/compiler/osr.cc", 871 "src/compiler/osr.cc",
859 "src/compiler/osr.h", 872 "src/compiler/osr.h",
873 "src/compiler/pipeline-statistics.cc",
874 "src/compiler/pipeline-statistics.h",
860 "src/compiler/pipeline.cc", 875 "src/compiler/pipeline.cc",
861 "src/compiler/pipeline.h", 876 "src/compiler/pipeline.h",
862 "src/compiler/pipeline-statistics.cc",
863 "src/compiler/pipeline-statistics.h",
864 "src/compiler/raw-machine-assembler.cc", 877 "src/compiler/raw-machine-assembler.cc",
865 "src/compiler/raw-machine-assembler.h", 878 "src/compiler/raw-machine-assembler.h",
879 "src/compiler/register-allocator-verifier.cc",
880 "src/compiler/register-allocator-verifier.h",
866 "src/compiler/register-allocator.cc", 881 "src/compiler/register-allocator.cc",
867 "src/compiler/register-allocator.h", 882 "src/compiler/register-allocator.h",
868 "src/compiler/register-allocator-verifier.cc",
869 "src/compiler/register-allocator-verifier.h",
870 "src/compiler/representation-change.cc", 883 "src/compiler/representation-change.cc",
871 "src/compiler/representation-change.h", 884 "src/compiler/representation-change.h",
872 "src/compiler/schedule.cc", 885 "src/compiler/schedule.cc",
873 "src/compiler/schedule.h", 886 "src/compiler/schedule.h",
874 "src/compiler/scheduler.cc", 887 "src/compiler/scheduler.cc",
875 "src/compiler/scheduler.h", 888 "src/compiler/scheduler.h",
876 "src/compiler/select-lowering.cc", 889 "src/compiler/select-lowering.cc",
877 "src/compiler/select-lowering.h", 890 "src/compiler/select-lowering.h",
878 "src/compiler/simplified-lowering.cc", 891 "src/compiler/simplified-lowering.cc",
879 "src/compiler/simplified-lowering.h", 892 "src/compiler/simplified-lowering.h",
(...skipping 15 matching lines...) Expand all
895 "src/compiler/typer.h", 908 "src/compiler/typer.h",
896 "src/compiler/value-numbering-reducer.cc", 909 "src/compiler/value-numbering-reducer.cc",
897 "src/compiler/value-numbering-reducer.h", 910 "src/compiler/value-numbering-reducer.h",
898 "src/compiler/verifier.cc", 911 "src/compiler/verifier.cc",
899 "src/compiler/verifier.h", 912 "src/compiler/verifier.h",
900 "src/compiler/wasm-compiler.cc", 913 "src/compiler/wasm-compiler.cc",
901 "src/compiler/wasm-compiler.h", 914 "src/compiler/wasm-compiler.h",
902 "src/compiler/wasm-linkage.cc", 915 "src/compiler/wasm-linkage.cc",
903 "src/compiler/zone-pool.cc", 916 "src/compiler/zone-pool.cc",
904 "src/compiler/zone-pool.h", 917 "src/compiler/zone-pool.h",
905 "src/compiler.cc",
906 "src/compiler.h",
907 "src/context-measure.cc", 918 "src/context-measure.cc",
908 "src/context-measure.h", 919 "src/context-measure.h",
909 "src/contexts-inl.h", 920 "src/contexts-inl.h",
910 "src/contexts.cc", 921 "src/contexts.cc",
911 "src/contexts.h", 922 "src/contexts.h",
912 "src/conversions-inl.h", 923 "src/conversions-inl.h",
913 "src/conversions.cc", 924 "src/conversions.cc",
914 "src/conversions.h", 925 "src/conversions.h",
915 "src/counters.cc", 926 "src/counters.cc",
916 "src/counters.h", 927 "src/counters.h",
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 "src/extensions/trigger-failure-extension.cc", 1030 "src/extensions/trigger-failure-extension.cc",
1020 "src/extensions/trigger-failure-extension.h", 1031 "src/extensions/trigger-failure-extension.h",
1021 "src/external-reference-table.cc", 1032 "src/external-reference-table.cc",
1022 "src/external-reference-table.h", 1033 "src/external-reference-table.h",
1023 "src/factory.cc", 1034 "src/factory.cc",
1024 "src/factory.h", 1035 "src/factory.h",
1025 "src/fast-accessor-assembler.cc", 1036 "src/fast-accessor-assembler.cc",
1026 "src/fast-accessor-assembler.h", 1037 "src/fast-accessor-assembler.h",
1027 "src/fast-dtoa.cc", 1038 "src/fast-dtoa.cc",
1028 "src/fast-dtoa.h", 1039 "src/fast-dtoa.h",
1040 "src/field-index-inl.h",
1029 "src/field-index.h", 1041 "src/field-index.h",
1030 "src/field-index-inl.h",
1031 "src/field-type.cc", 1042 "src/field-type.cc",
1032 "src/field-type.h", 1043 "src/field-type.h",
1033 "src/fixed-dtoa.cc", 1044 "src/fixed-dtoa.cc",
1034 "src/fixed-dtoa.h", 1045 "src/fixed-dtoa.h",
1035 "src/flag-definitions.h", 1046 "src/flag-definitions.h",
1036 "src/flags.cc", 1047 "src/flags.cc",
1037 "src/flags.h", 1048 "src/flags.h",
1038 "src/frames-inl.h", 1049 "src/frames-inl.h",
1039 "src/frames.cc", 1050 "src/frames.cc",
1040 "src/frames.h", 1051 "src/frames.h",
(...skipping 30 matching lines...) Expand all
1071 "src/heap/memory-reducer.cc", 1082 "src/heap/memory-reducer.cc",
1072 "src/heap/memory-reducer.h", 1083 "src/heap/memory-reducer.h",
1073 "src/heap/object-stats.cc", 1084 "src/heap/object-stats.cc",
1074 "src/heap/object-stats.h", 1085 "src/heap/object-stats.h",
1075 "src/heap/objects-visiting-inl.h", 1086 "src/heap/objects-visiting-inl.h",
1076 "src/heap/objects-visiting.cc", 1087 "src/heap/objects-visiting.cc",
1077 "src/heap/objects-visiting.h", 1088 "src/heap/objects-visiting.h",
1078 "src/heap/page-parallel-job.h", 1089 "src/heap/page-parallel-job.h",
1079 "src/heap/remembered-set.cc", 1090 "src/heap/remembered-set.cc",
1080 "src/heap/remembered-set.h", 1091 "src/heap/remembered-set.h",
1092 "src/heap/scavenge-job.cc",
1081 "src/heap/scavenge-job.h", 1093 "src/heap/scavenge-job.h",
1082 "src/heap/scavenge-job.cc",
1083 "src/heap/scavenger-inl.h", 1094 "src/heap/scavenger-inl.h",
1084 "src/heap/scavenger.cc", 1095 "src/heap/scavenger.cc",
1085 "src/heap/scavenger.h", 1096 "src/heap/scavenger.h",
1086 "src/heap/slot-set.h", 1097 "src/heap/slot-set.h",
1087 "src/heap/spaces-inl.h", 1098 "src/heap/spaces-inl.h",
1088 "src/heap/spaces.cc", 1099 "src/heap/spaces.cc",
1089 "src/heap/spaces.h", 1100 "src/heap/spaces.h",
1090 "src/heap/store-buffer-inl.h", 1101 "src/heap/store-buffer-inl.h",
1091 "src/heap/store-buffer.cc", 1102 "src/heap/store-buffer.cc",
1092 "src/heap/store-buffer.h", 1103 "src/heap/store-buffer.h",
1093 "src/i18n.cc", 1104 "src/i18n.cc",
1094 "src/i18n.h", 1105 "src/i18n.h",
1095 "src/icu_util.cc",
1096 "src/icu_util.h",
1097 "src/ic/access-compiler.cc", 1106 "src/ic/access-compiler.cc",
1098 "src/ic/access-compiler.h", 1107 "src/ic/access-compiler.h",
1099 "src/ic/call-optimization.cc", 1108 "src/ic/call-optimization.cc",
1100 "src/ic/call-optimization.h", 1109 "src/ic/call-optimization.h",
1101 "src/ic/handler-compiler.cc", 1110 "src/ic/handler-compiler.cc",
1102 "src/ic/handler-compiler.h", 1111 "src/ic/handler-compiler.h",
1112 "src/ic/ic-compiler.cc",
1113 "src/ic/ic-compiler.h",
1103 "src/ic/ic-inl.h", 1114 "src/ic/ic-inl.h",
1104 "src/ic/ic-state.cc", 1115 "src/ic/ic-state.cc",
1105 "src/ic/ic-state.h", 1116 "src/ic/ic-state.h",
1106 "src/ic/ic.cc", 1117 "src/ic/ic.cc",
1107 "src/ic/ic.h", 1118 "src/ic/ic.h",
1108 "src/ic/ic-compiler.cc",
1109 "src/ic/ic-compiler.h",
1110 "src/ic/stub-cache.cc", 1119 "src/ic/stub-cache.cc",
1111 "src/ic/stub-cache.h", 1120 "src/ic/stub-cache.h",
1121 "src/icu_util.cc",
1122 "src/icu_util.h",
1112 "src/identity-map.cc", 1123 "src/identity-map.cc",
1113 "src/identity-map.h", 1124 "src/identity-map.h",
1114 "src/interface-descriptors.cc", 1125 "src/interface-descriptors.cc",
1115 "src/interface-descriptors.h", 1126 "src/interface-descriptors.h",
1116 "src/interpreter/bytecodes.cc",
1117 "src/interpreter/bytecodes.h",
1118 "src/interpreter/bytecode-array-builder.cc", 1127 "src/interpreter/bytecode-array-builder.cc",
1119 "src/interpreter/bytecode-array-builder.h", 1128 "src/interpreter/bytecode-array-builder.h",
1120 "src/interpreter/bytecode-array-iterator.cc", 1129 "src/interpreter/bytecode-array-iterator.cc",
1121 "src/interpreter/bytecode-array-iterator.h", 1130 "src/interpreter/bytecode-array-iterator.h",
1122 "src/interpreter/bytecode-generator.cc", 1131 "src/interpreter/bytecode-generator.cc",
1123 "src/interpreter/bytecode-generator.h", 1132 "src/interpreter/bytecode-generator.h",
1124 "src/interpreter/bytecode-register-allocator.cc", 1133 "src/interpreter/bytecode-register-allocator.cc",
1125 "src/interpreter/bytecode-register-allocator.h", 1134 "src/interpreter/bytecode-register-allocator.h",
1126 "src/interpreter/bytecode-traits.h", 1135 "src/interpreter/bytecode-traits.h",
1136 "src/interpreter/bytecodes.cc",
1137 "src/interpreter/bytecodes.h",
1127 "src/interpreter/constant-array-builder.cc", 1138 "src/interpreter/constant-array-builder.cc",
1128 "src/interpreter/constant-array-builder.h", 1139 "src/interpreter/constant-array-builder.h",
1129 "src/interpreter/control-flow-builders.cc", 1140 "src/interpreter/control-flow-builders.cc",
1130 "src/interpreter/control-flow-builders.h", 1141 "src/interpreter/control-flow-builders.h",
1131 "src/interpreter/handler-table-builder.cc", 1142 "src/interpreter/handler-table-builder.cc",
1132 "src/interpreter/handler-table-builder.h", 1143 "src/interpreter/handler-table-builder.h",
1133 "src/interpreter/interpreter.cc",
1134 "src/interpreter/interpreter.h",
1135 "src/interpreter/interpreter-assembler.cc", 1144 "src/interpreter/interpreter-assembler.cc",
1136 "src/interpreter/interpreter-assembler.h", 1145 "src/interpreter/interpreter-assembler.h",
1137 "src/interpreter/interpreter-intrinsics.cc", 1146 "src/interpreter/interpreter-intrinsics.cc",
1138 "src/interpreter/interpreter-intrinsics.h", 1147 "src/interpreter/interpreter-intrinsics.h",
1148 "src/interpreter/interpreter.cc",
1149 "src/interpreter/interpreter.h",
1139 "src/interpreter/source-position-table.cc", 1150 "src/interpreter/source-position-table.cc",
1140 "src/interpreter/source-position-table.h", 1151 "src/interpreter/source-position-table.h",
1141 "src/isolate-inl.h", 1152 "src/isolate-inl.h",
1142 "src/isolate.cc", 1153 "src/isolate.cc",
1143 "src/isolate.h", 1154 "src/isolate.h",
1144 "src/json-parser.h", 1155 "src/json-parser.h",
1145 "src/json-stringifier.h", 1156 "src/json-stringifier.h",
1157 "src/keys.cc",
1146 "src/keys.h", 1158 "src/keys.h",
1147 "src/keys.cc",
1148 "src/layout-descriptor-inl.h", 1159 "src/layout-descriptor-inl.h",
1149 "src/layout-descriptor.cc", 1160 "src/layout-descriptor.cc",
1150 "src/layout-descriptor.h", 1161 "src/layout-descriptor.h",
1151 "src/list-inl.h", 1162 "src/list-inl.h",
1152 "src/list.h", 1163 "src/list.h",
1153 "src/log-inl.h", 1164 "src/log-inl.h",
1154 "src/log-utils.cc", 1165 "src/log-utils.cc",
1155 "src/log-utils.h", 1166 "src/log-utils.h",
1156 "src/log.cc", 1167 "src/log.cc",
1157 "src/log.h", 1168 "src/log.h",
1158 "src/lookup.cc", 1169 "src/lookup.cc",
1159 "src/lookup.h", 1170 "src/lookup.h",
1160 "src/macro-assembler.h",
1161 "src/machine-type.cc", 1171 "src/machine-type.cc",
1162 "src/machine-type.h", 1172 "src/machine-type.h",
1173 "src/macro-assembler.h",
1163 "src/messages.cc", 1174 "src/messages.cc",
1164 "src/messages.h", 1175 "src/messages.h",
1165 "src/msan.h", 1176 "src/msan.h",
1166 "src/objects-body-descriptors-inl.h", 1177 "src/objects-body-descriptors-inl.h",
1167 "src/objects-body-descriptors.h", 1178 "src/objects-body-descriptors.h",
1168 "src/objects-debug.cc", 1179 "src/objects-debug.cc",
1169 "src/objects-inl.h", 1180 "src/objects-inl.h",
1170 "src/objects-printer.cc", 1181 "src/objects-printer.cc",
1171 "src/objects.cc", 1182 "src/objects.cc",
1172 "src/objects.h", 1183 "src/objects.h",
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 "src/runtime/runtime.h", 1299 "src/runtime/runtime.h",
1289 "src/safepoint-table.cc", 1300 "src/safepoint-table.cc",
1290 "src/safepoint-table.h", 1301 "src/safepoint-table.h",
1291 "src/signature.h", 1302 "src/signature.h",
1292 "src/simulator.h", 1303 "src/simulator.h",
1293 "src/small-pointer-list.h", 1304 "src/small-pointer-list.h",
1294 "src/snapshot/code-serializer.cc", 1305 "src/snapshot/code-serializer.cc",
1295 "src/snapshot/code-serializer.h", 1306 "src/snapshot/code-serializer.h",
1296 "src/snapshot/deserializer.cc", 1307 "src/snapshot/deserializer.cc",
1297 "src/snapshot/deserializer.h", 1308 "src/snapshot/deserializer.h",
1309 "src/snapshot/natives-common.cc",
1298 "src/snapshot/natives.h", 1310 "src/snapshot/natives.h",
1299 "src/snapshot/natives-common.cc",
1300 "src/snapshot/partial-serializer.cc", 1311 "src/snapshot/partial-serializer.cc",
1301 "src/snapshot/partial-serializer.h", 1312 "src/snapshot/partial-serializer.h",
1313 "src/snapshot/serializer-common.cc",
1314 "src/snapshot/serializer-common.h",
1302 "src/snapshot/serializer.cc", 1315 "src/snapshot/serializer.cc",
1303 "src/snapshot/serializer.h", 1316 "src/snapshot/serializer.h",
1304 "src/snapshot/serializer-common.cc",
1305 "src/snapshot/serializer-common.h",
1306 "src/snapshot/snapshot-common.cc", 1317 "src/snapshot/snapshot-common.cc",
1307 "src/snapshot/snapshot-source-sink.cc", 1318 "src/snapshot/snapshot-source-sink.cc",
1308 "src/snapshot/snapshot-source-sink.h", 1319 "src/snapshot/snapshot-source-sink.h",
1320 "src/snapshot/snapshot.h",
1309 "src/snapshot/startup-serializer.cc", 1321 "src/snapshot/startup-serializer.cc",
1310 "src/snapshot/startup-serializer.h", 1322 "src/snapshot/startup-serializer.h",
1311 "src/source-position.h", 1323 "src/source-position.h",
1324 "src/splay-tree-inl.h",
1312 "src/splay-tree.h", 1325 "src/splay-tree.h",
1313 "src/splay-tree-inl.h", 1326 "src/startup-data-util.cc",
1314 "src/snapshot/snapshot.h",
1315 "src/startup-data-util.h", 1327 "src/startup-data-util.h",
1316 "src/startup-data-util.cc",
1317 "src/string-builder.cc", 1328 "src/string-builder.cc",
1318 "src/string-builder.h", 1329 "src/string-builder.h",
1319 "src/string-search.h", 1330 "src/string-search.h",
1320 "src/string-stream.cc", 1331 "src/string-stream.cc",
1321 "src/string-stream.h", 1332 "src/string-stream.h",
1322 "src/strtod.cc", 1333 "src/strtod.cc",
1323 "src/strtod.h", 1334 "src/strtod.h",
1335 "src/third_party/fdlibm/fdlibm.cc",
1336 "src/third_party/fdlibm/fdlibm.h",
1324 "src/tracing/trace-event.cc", 1337 "src/tracing/trace-event.cc",
1325 "src/tracing/trace-event.h", 1338 "src/tracing/trace-event.h",
1326 "src/transitions-inl.h", 1339 "src/transitions-inl.h",
1327 "src/transitions.cc", 1340 "src/transitions.cc",
1328 "src/transitions.h", 1341 "src/transitions.h",
1329 "src/type-cache.cc", 1342 "src/type-cache.cc",
1330 "src/type-cache.h", 1343 "src/type-cache.h",
1331 "src/type-feedback-vector-inl.h", 1344 "src/type-feedback-vector-inl.h",
1332 "src/type-feedback-vector.cc", 1345 "src/type-feedback-vector.cc",
1333 "src/type-feedback-vector.h", 1346 "src/type-feedback-vector.h",
1334 "src/type-info.cc", 1347 "src/type-info.cc",
1335 "src/type-info.h", 1348 "src/type-info.h",
1336 "src/types.cc", 1349 "src/types.cc",
1337 "src/types.h", 1350 "src/types.h",
1338 "src/typing-asm.cc", 1351 "src/typing-asm.cc",
1339 "src/typing-asm.h", 1352 "src/typing-asm.h",
1340 "src/typing-reset.cc", 1353 "src/typing-reset.cc",
1341 "src/typing-reset.h", 1354 "src/typing-reset.h",
1342 "src/unicode-inl.h",
1343 "src/unicode.cc",
1344 "src/unicode.h",
1345 "src/unicode-cache-inl.h", 1355 "src/unicode-cache-inl.h",
1346 "src/unicode-cache.h", 1356 "src/unicode-cache.h",
1347 "src/unicode-decoder.cc", 1357 "src/unicode-decoder.cc",
1348 "src/unicode-decoder.h", 1358 "src/unicode-decoder.h",
1359 "src/unicode-inl.h",
1360 "src/unicode.cc",
1361 "src/unicode.h",
1349 "src/utils-inl.h", 1362 "src/utils-inl.h",
1350 "src/utils.cc", 1363 "src/utils.cc",
1351 "src/utils.h", 1364 "src/utils.h",
1352 "src/v8.cc", 1365 "src/v8.cc",
1353 "src/v8.h", 1366 "src/v8.h",
1354 "src/v8memory.h", 1367 "src/v8memory.h",
1355 "src/v8threads.cc", 1368 "src/v8threads.cc",
1356 "src/v8threads.h", 1369 "src/v8threads.h",
1357 "src/version.cc", 1370 "src/version.cc",
1358 "src/version.h", 1371 "src/version.h",
(...skipping 11 matching lines...) Expand all
1370 "src/wasm/wasm-external-refs.h", 1383 "src/wasm/wasm-external-refs.h",
1371 "src/wasm/wasm-js.cc", 1384 "src/wasm/wasm-js.cc",
1372 "src/wasm/wasm-js.h", 1385 "src/wasm/wasm-js.h",
1373 "src/wasm/wasm-macro-gen.h", 1386 "src/wasm/wasm-macro-gen.h",
1374 "src/wasm/wasm-module.cc", 1387 "src/wasm/wasm-module.cc",
1375 "src/wasm/wasm-module.h", 1388 "src/wasm/wasm-module.h",
1376 "src/wasm/wasm-opcodes.cc", 1389 "src/wasm/wasm-opcodes.cc",
1377 "src/wasm/wasm-opcodes.h", 1390 "src/wasm/wasm-opcodes.h",
1378 "src/wasm/wasm-result.cc", 1391 "src/wasm/wasm-result.cc",
1379 "src/wasm/wasm-result.h", 1392 "src/wasm/wasm-result.h",
1393 "src/zone-allocator.h",
1394 "src/zone-containers.h",
1380 "src/zone.cc", 1395 "src/zone.cc",
1381 "src/zone.h", 1396 "src/zone.h",
1382 "src/zone-allocator.h",
1383 "src/zone-containers.h",
1384 "src/third_party/fdlibm/fdlibm.cc",
1385 "src/third_party/fdlibm/fdlibm.h",
1386 ] 1397 ]
1387 1398
1388 if (v8_target_arch == "x86") { 1399 if (v8_target_arch == "x86") {
1389 sources += [ 1400 sources += [
1401 "src/compiler/ia32/code-generator-ia32.cc",
1402 "src/compiler/ia32/instruction-codes-ia32.h",
1403 "src/compiler/ia32/instruction-scheduler-ia32.cc",
1404 "src/compiler/ia32/instruction-selector-ia32.cc",
1390 "src/crankshaft/ia32/lithium-codegen-ia32.cc", 1405 "src/crankshaft/ia32/lithium-codegen-ia32.cc",
1391 "src/crankshaft/ia32/lithium-codegen-ia32.h", 1406 "src/crankshaft/ia32/lithium-codegen-ia32.h",
1392 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc", 1407 "src/crankshaft/ia32/lithium-gap-resolver-ia32.cc",
1393 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h", 1408 "src/crankshaft/ia32/lithium-gap-resolver-ia32.h",
1394 "src/crankshaft/ia32/lithium-ia32.cc", 1409 "src/crankshaft/ia32/lithium-ia32.cc",
1395 "src/crankshaft/ia32/lithium-ia32.h", 1410 "src/crankshaft/ia32/lithium-ia32.h",
1396 "src/compiler/ia32/code-generator-ia32.cc",
1397 "src/compiler/ia32/instruction-codes-ia32.h",
1398 "src/compiler/ia32/instruction-scheduler-ia32.cc",
1399 "src/compiler/ia32/instruction-selector-ia32.cc",
1400 "src/debug/ia32/debug-ia32.cc", 1411 "src/debug/ia32/debug-ia32.cc",
1401 "src/full-codegen/ia32/full-codegen-ia32.cc", 1412 "src/full-codegen/ia32/full-codegen-ia32.cc",
1402 "src/ia32/assembler-ia32-inl.h", 1413 "src/ia32/assembler-ia32-inl.h",
1403 "src/ia32/assembler-ia32.cc", 1414 "src/ia32/assembler-ia32.cc",
1404 "src/ia32/assembler-ia32.h", 1415 "src/ia32/assembler-ia32.h",
1405 "src/ia32/builtins-ia32.cc", 1416 "src/ia32/builtins-ia32.cc",
1406 "src/ia32/code-stubs-ia32.cc", 1417 "src/ia32/code-stubs-ia32.cc",
1407 "src/ia32/code-stubs-ia32.h", 1418 "src/ia32/code-stubs-ia32.h",
1408 "src/ia32/codegen-ia32.cc", 1419 "src/ia32/codegen-ia32.cc",
1409 "src/ia32/codegen-ia32.h", 1420 "src/ia32/codegen-ia32.h",
1410 "src/ia32/cpu-ia32.cc", 1421 "src/ia32/cpu-ia32.cc",
1411 "src/ia32/deoptimizer-ia32.cc", 1422 "src/ia32/deoptimizer-ia32.cc",
1412 "src/ia32/disasm-ia32.cc", 1423 "src/ia32/disasm-ia32.cc",
1413 "src/ia32/frames-ia32.cc", 1424 "src/ia32/frames-ia32.cc",
1414 "src/ia32/frames-ia32.h", 1425 "src/ia32/frames-ia32.h",
1415 "src/ia32/interface-descriptors-ia32.cc", 1426 "src/ia32/interface-descriptors-ia32.cc",
1416 "src/ia32/macro-assembler-ia32.cc", 1427 "src/ia32/macro-assembler-ia32.cc",
1417 "src/ia32/macro-assembler-ia32.h", 1428 "src/ia32/macro-assembler-ia32.h",
1418 "src/ic/ia32/access-compiler-ia32.cc", 1429 "src/ic/ia32/access-compiler-ia32.cc",
1419 "src/ic/ia32/handler-compiler-ia32.cc", 1430 "src/ic/ia32/handler-compiler-ia32.cc",
1431 "src/ic/ia32/ic-compiler-ia32.cc",
1420 "src/ic/ia32/ic-ia32.cc", 1432 "src/ic/ia32/ic-ia32.cc",
1421 "src/ic/ia32/ic-compiler-ia32.cc",
1422 "src/ic/ia32/stub-cache-ia32.cc", 1433 "src/ic/ia32/stub-cache-ia32.cc",
1423 "src/regexp/ia32/regexp-macro-assembler-ia32.cc", 1434 "src/regexp/ia32/regexp-macro-assembler-ia32.cc",
1424 "src/regexp/ia32/regexp-macro-assembler-ia32.h", 1435 "src/regexp/ia32/regexp-macro-assembler-ia32.h",
1425 ] 1436 ]
1426 } else if (v8_target_arch == "x64") { 1437 } else if (v8_target_arch == "x64") {
1427 sources += [ 1438 sources += [
1428 "src/compiler/x64/code-generator-x64.cc", 1439 "src/compiler/x64/code-generator-x64.cc",
1429 "src/compiler/x64/instruction-codes-x64.h", 1440 "src/compiler/x64/instruction-codes-x64.h",
1430 "src/compiler/x64/instruction-scheduler-x64.cc", 1441 "src/compiler/x64/instruction-scheduler-x64.cc",
1431 "src/compiler/x64/instruction-selector-x64.cc", 1442 "src/compiler/x64/instruction-selector-x64.cc",
1432 "src/crankshaft/x64/lithium-codegen-x64.cc", 1443 "src/crankshaft/x64/lithium-codegen-x64.cc",
1433 "src/crankshaft/x64/lithium-codegen-x64.h", 1444 "src/crankshaft/x64/lithium-codegen-x64.h",
1434 "src/crankshaft/x64/lithium-gap-resolver-x64.cc", 1445 "src/crankshaft/x64/lithium-gap-resolver-x64.cc",
1435 "src/crankshaft/x64/lithium-gap-resolver-x64.h", 1446 "src/crankshaft/x64/lithium-gap-resolver-x64.h",
1436 "src/crankshaft/x64/lithium-x64.cc", 1447 "src/crankshaft/x64/lithium-x64.cc",
1437 "src/crankshaft/x64/lithium-x64.h", 1448 "src/crankshaft/x64/lithium-x64.h",
1438 "src/debug/x64/debug-x64.cc", 1449 "src/debug/x64/debug-x64.cc",
1439 "src/full-codegen/x64/full-codegen-x64.cc", 1450 "src/full-codegen/x64/full-codegen-x64.cc",
1440 "src/ic/x64/access-compiler-x64.cc", 1451 "src/ic/x64/access-compiler-x64.cc",
1441 "src/ic/x64/handler-compiler-x64.cc", 1452 "src/ic/x64/handler-compiler-x64.cc",
1453 "src/ic/x64/ic-compiler-x64.cc",
1442 "src/ic/x64/ic-x64.cc", 1454 "src/ic/x64/ic-x64.cc",
1443 "src/ic/x64/ic-compiler-x64.cc",
1444 "src/ic/x64/stub-cache-x64.cc", 1455 "src/ic/x64/stub-cache-x64.cc",
1445 "src/regexp/x64/regexp-macro-assembler-x64.cc", 1456 "src/regexp/x64/regexp-macro-assembler-x64.cc",
1446 "src/regexp/x64/regexp-macro-assembler-x64.h", 1457 "src/regexp/x64/regexp-macro-assembler-x64.h",
1447 "src/x64/assembler-x64-inl.h", 1458 "src/x64/assembler-x64-inl.h",
1448 "src/x64/assembler-x64.cc", 1459 "src/x64/assembler-x64.cc",
1449 "src/x64/assembler-x64.h", 1460 "src/x64/assembler-x64.h",
1450 "src/x64/builtins-x64.cc", 1461 "src/x64/builtins-x64.cc",
1451 "src/x64/code-stubs-x64.cc", 1462 "src/x64/code-stubs-x64.cc",
1452 "src/x64/code-stubs-x64.h", 1463 "src/x64/code-stubs-x64.h",
1453 "src/x64/codegen-x64.cc", 1464 "src/x64/codegen-x64.cc",
(...skipping 10 matching lines...) Expand all
1464 } else if (v8_target_arch == "arm") { 1475 } else if (v8_target_arch == "arm") {
1465 sources += [ 1476 sources += [
1466 "src/arm/assembler-arm-inl.h", 1477 "src/arm/assembler-arm-inl.h",
1467 "src/arm/assembler-arm.cc", 1478 "src/arm/assembler-arm.cc",
1468 "src/arm/assembler-arm.h", 1479 "src/arm/assembler-arm.h",
1469 "src/arm/builtins-arm.cc", 1480 "src/arm/builtins-arm.cc",
1470 "src/arm/code-stubs-arm.cc", 1481 "src/arm/code-stubs-arm.cc",
1471 "src/arm/code-stubs-arm.h", 1482 "src/arm/code-stubs-arm.h",
1472 "src/arm/codegen-arm.cc", 1483 "src/arm/codegen-arm.cc",
1473 "src/arm/codegen-arm.h", 1484 "src/arm/codegen-arm.h",
1485 "src/arm/constants-arm.cc",
1474 "src/arm/constants-arm.h", 1486 "src/arm/constants-arm.h",
1475 "src/arm/constants-arm.cc",
1476 "src/arm/cpu-arm.cc", 1487 "src/arm/cpu-arm.cc",
1477 "src/arm/deoptimizer-arm.cc", 1488 "src/arm/deoptimizer-arm.cc",
1478 "src/arm/disasm-arm.cc", 1489 "src/arm/disasm-arm.cc",
1479 "src/arm/frames-arm.cc", 1490 "src/arm/frames-arm.cc",
1480 "src/arm/frames-arm.h", 1491 "src/arm/frames-arm.h",
1481 "src/arm/interface-descriptors-arm.cc", 1492 "src/arm/interface-descriptors-arm.cc",
1482 "src/arm/interface-descriptors-arm.h", 1493 "src/arm/interface-descriptors-arm.h",
1483 "src/arm/macro-assembler-arm.cc", 1494 "src/arm/macro-assembler-arm.cc",
1484 "src/arm/macro-assembler-arm.h", 1495 "src/arm/macro-assembler-arm.h",
1485 "src/arm/simulator-arm.cc", 1496 "src/arm/simulator-arm.cc",
(...skipping 13 matching lines...) Expand all
1499 "src/ic/arm/access-compiler-arm.cc", 1510 "src/ic/arm/access-compiler-arm.cc",
1500 "src/ic/arm/handler-compiler-arm.cc", 1511 "src/ic/arm/handler-compiler-arm.cc",
1501 "src/ic/arm/ic-arm.cc", 1512 "src/ic/arm/ic-arm.cc",
1502 "src/ic/arm/ic-compiler-arm.cc", 1513 "src/ic/arm/ic-compiler-arm.cc",
1503 "src/ic/arm/stub-cache-arm.cc", 1514 "src/ic/arm/stub-cache-arm.cc",
1504 "src/regexp/arm/regexp-macro-assembler-arm.cc", 1515 "src/regexp/arm/regexp-macro-assembler-arm.cc",
1505 "src/regexp/arm/regexp-macro-assembler-arm.h", 1516 "src/regexp/arm/regexp-macro-assembler-arm.h",
1506 ] 1517 ]
1507 } else if (v8_target_arch == "arm64") { 1518 } else if (v8_target_arch == "arm64") {
1508 sources += [ 1519 sources += [
1520 "src/arm64/assembler-arm64-inl.h",
1509 "src/arm64/assembler-arm64.cc", 1521 "src/arm64/assembler-arm64.cc",
1510 "src/arm64/assembler-arm64.h", 1522 "src/arm64/assembler-arm64.h",
1511 "src/arm64/assembler-arm64-inl.h",
1512 "src/arm64/builtins-arm64.cc", 1523 "src/arm64/builtins-arm64.cc",
1524 "src/arm64/code-stubs-arm64.cc",
1525 "src/arm64/code-stubs-arm64.h",
1513 "src/arm64/codegen-arm64.cc", 1526 "src/arm64/codegen-arm64.cc",
1514 "src/arm64/codegen-arm64.h", 1527 "src/arm64/codegen-arm64.h",
1515 "src/arm64/code-stubs-arm64.cc",
1516 "src/arm64/code-stubs-arm64.h",
1517 "src/arm64/constants-arm64.h", 1528 "src/arm64/constants-arm64.h",
1518 "src/arm64/cpu-arm64.cc", 1529 "src/arm64/cpu-arm64.cc",
1530 "src/arm64/decoder-arm64-inl.h",
1519 "src/arm64/decoder-arm64.cc", 1531 "src/arm64/decoder-arm64.cc",
1520 "src/arm64/decoder-arm64.h", 1532 "src/arm64/decoder-arm64.h",
1521 "src/arm64/decoder-arm64-inl.h",
1522 "src/arm64/deoptimizer-arm64.cc", 1533 "src/arm64/deoptimizer-arm64.cc",
1523 "src/arm64/disasm-arm64.cc", 1534 "src/arm64/disasm-arm64.cc",
1524 "src/arm64/disasm-arm64.h", 1535 "src/arm64/disasm-arm64.h",
1525 "src/arm64/frames-arm64.cc", 1536 "src/arm64/frames-arm64.cc",
1526 "src/arm64/frames-arm64.h", 1537 "src/arm64/frames-arm64.h",
1527 "src/arm64/instructions-arm64.cc", 1538 "src/arm64/instructions-arm64.cc",
1528 "src/arm64/instructions-arm64.h", 1539 "src/arm64/instructions-arm64.h",
1529 "src/arm64/instrument-arm64.cc", 1540 "src/arm64/instrument-arm64.cc",
1530 "src/arm64/instrument-arm64.h", 1541 "src/arm64/instrument-arm64.h",
1531 "src/arm64/interface-descriptors-arm64.cc", 1542 "src/arm64/interface-descriptors-arm64.cc",
1532 "src/arm64/interface-descriptors-arm64.h", 1543 "src/arm64/interface-descriptors-arm64.h",
1544 "src/arm64/macro-assembler-arm64-inl.h",
1533 "src/arm64/macro-assembler-arm64.cc", 1545 "src/arm64/macro-assembler-arm64.cc",
1534 "src/arm64/macro-assembler-arm64.h", 1546 "src/arm64/macro-assembler-arm64.h",
1535 "src/arm64/macro-assembler-arm64-inl.h",
1536 "src/arm64/simulator-arm64.cc", 1547 "src/arm64/simulator-arm64.cc",
1537 "src/arm64/simulator-arm64.h", 1548 "src/arm64/simulator-arm64.h",
1538 "src/arm64/utils-arm64.cc", 1549 "src/arm64/utils-arm64.cc",
1539 "src/arm64/utils-arm64.h", 1550 "src/arm64/utils-arm64.h",
1540 "src/compiler/arm64/code-generator-arm64.cc", 1551 "src/compiler/arm64/code-generator-arm64.cc",
1541 "src/compiler/arm64/instruction-codes-arm64.h", 1552 "src/compiler/arm64/instruction-codes-arm64.h",
1542 "src/compiler/arm64/instruction-scheduler-arm64.cc", 1553 "src/compiler/arm64/instruction-scheduler-arm64.cc",
1543 "src/compiler/arm64/instruction-selector-arm64.cc", 1554 "src/compiler/arm64/instruction-selector-arm64.cc",
1555 "src/crankshaft/arm64/delayed-masm-arm64-inl.h",
1544 "src/crankshaft/arm64/delayed-masm-arm64.cc", 1556 "src/crankshaft/arm64/delayed-masm-arm64.cc",
1545 "src/crankshaft/arm64/delayed-masm-arm64.h", 1557 "src/crankshaft/arm64/delayed-masm-arm64.h",
1546 "src/crankshaft/arm64/delayed-masm-arm64-inl.h",
1547 "src/crankshaft/arm64/lithium-arm64.cc", 1558 "src/crankshaft/arm64/lithium-arm64.cc",
1548 "src/crankshaft/arm64/lithium-arm64.h", 1559 "src/crankshaft/arm64/lithium-arm64.h",
1549 "src/crankshaft/arm64/lithium-codegen-arm64.cc", 1560 "src/crankshaft/arm64/lithium-codegen-arm64.cc",
1550 "src/crankshaft/arm64/lithium-codegen-arm64.h", 1561 "src/crankshaft/arm64/lithium-codegen-arm64.h",
1551 "src/crankshaft/arm64/lithium-gap-resolver-arm64.cc", 1562 "src/crankshaft/arm64/lithium-gap-resolver-arm64.cc",
1552 "src/crankshaft/arm64/lithium-gap-resolver-arm64.h", 1563 "src/crankshaft/arm64/lithium-gap-resolver-arm64.h",
1553 "src/debug/arm64/debug-arm64.cc", 1564 "src/debug/arm64/debug-arm64.cc",
1554 "src/full-codegen/arm64/full-codegen-arm64.cc", 1565 "src/full-codegen/arm64/full-codegen-arm64.cc",
1555 "src/ic/arm64/access-compiler-arm64.cc", 1566 "src/ic/arm64/access-compiler-arm64.cc",
1556 "src/ic/arm64/handler-compiler-arm64.cc", 1567 "src/ic/arm64/handler-compiler-arm64.cc",
(...skipping 12 matching lines...) Expand all
1569 "src/crankshaft/mips/lithium-codegen-mips.cc", 1580 "src/crankshaft/mips/lithium-codegen-mips.cc",
1570 "src/crankshaft/mips/lithium-codegen-mips.h", 1581 "src/crankshaft/mips/lithium-codegen-mips.h",
1571 "src/crankshaft/mips/lithium-gap-resolver-mips.cc", 1582 "src/crankshaft/mips/lithium-gap-resolver-mips.cc",
1572 "src/crankshaft/mips/lithium-gap-resolver-mips.h", 1583 "src/crankshaft/mips/lithium-gap-resolver-mips.h",
1573 "src/crankshaft/mips/lithium-mips.cc", 1584 "src/crankshaft/mips/lithium-mips.cc",
1574 "src/crankshaft/mips/lithium-mips.h", 1585 "src/crankshaft/mips/lithium-mips.h",
1575 "src/debug/mips/debug-mips.cc", 1586 "src/debug/mips/debug-mips.cc",
1576 "src/full-codegen/mips/full-codegen-mips.cc", 1587 "src/full-codegen/mips/full-codegen-mips.cc",
1577 "src/ic/mips/access-compiler-mips.cc", 1588 "src/ic/mips/access-compiler-mips.cc",
1578 "src/ic/mips/handler-compiler-mips.cc", 1589 "src/ic/mips/handler-compiler-mips.cc",
1590 "src/ic/mips/ic-compiler-mips.cc",
1579 "src/ic/mips/ic-mips.cc", 1591 "src/ic/mips/ic-mips.cc",
1580 "src/ic/mips/ic-compiler-mips.cc",
1581 "src/ic/mips/stub-cache-mips.cc", 1592 "src/ic/mips/stub-cache-mips.cc",
1593 "src/mips/assembler-mips-inl.h",
1582 "src/mips/assembler-mips.cc", 1594 "src/mips/assembler-mips.cc",
1583 "src/mips/assembler-mips.h", 1595 "src/mips/assembler-mips.h",
1584 "src/mips/assembler-mips-inl.h",
1585 "src/mips/builtins-mips.cc", 1596 "src/mips/builtins-mips.cc",
1597 "src/mips/code-stubs-mips.cc",
1598 "src/mips/code-stubs-mips.h",
1586 "src/mips/codegen-mips.cc", 1599 "src/mips/codegen-mips.cc",
1587 "src/mips/codegen-mips.h", 1600 "src/mips/codegen-mips.h",
1588 "src/mips/code-stubs-mips.cc",
1589 "src/mips/code-stubs-mips.h",
1590 "src/mips/constants-mips.cc", 1601 "src/mips/constants-mips.cc",
1591 "src/mips/constants-mips.h", 1602 "src/mips/constants-mips.h",
1592 "src/mips/cpu-mips.cc", 1603 "src/mips/cpu-mips.cc",
1593 "src/mips/deoptimizer-mips.cc", 1604 "src/mips/deoptimizer-mips.cc",
1594 "src/mips/disasm-mips.cc", 1605 "src/mips/disasm-mips.cc",
1595 "src/mips/frames-mips.cc", 1606 "src/mips/frames-mips.cc",
1596 "src/mips/frames-mips.h", 1607 "src/mips/frames-mips.h",
1597 "src/mips/interface-descriptors-mips.cc", 1608 "src/mips/interface-descriptors-mips.cc",
1598 "src/mips/macro-assembler-mips.cc", 1609 "src/mips/macro-assembler-mips.cc",
1599 "src/mips/macro-assembler-mips.h", 1610 "src/mips/macro-assembler-mips.h",
(...skipping 11 matching lines...) Expand all
1611 "src/crankshaft/mips64/lithium-codegen-mips64.cc", 1622 "src/crankshaft/mips64/lithium-codegen-mips64.cc",
1612 "src/crankshaft/mips64/lithium-codegen-mips64.h", 1623 "src/crankshaft/mips64/lithium-codegen-mips64.h",
1613 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc", 1624 "src/crankshaft/mips64/lithium-gap-resolver-mips64.cc",
1614 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h", 1625 "src/crankshaft/mips64/lithium-gap-resolver-mips64.h",
1615 "src/crankshaft/mips64/lithium-mips64.cc", 1626 "src/crankshaft/mips64/lithium-mips64.cc",
1616 "src/crankshaft/mips64/lithium-mips64.h", 1627 "src/crankshaft/mips64/lithium-mips64.h",
1617 "src/debug/mips64/debug-mips64.cc", 1628 "src/debug/mips64/debug-mips64.cc",
1618 "src/full-codegen/mips64/full-codegen-mips64.cc", 1629 "src/full-codegen/mips64/full-codegen-mips64.cc",
1619 "src/ic/mips64/access-compiler-mips64.cc", 1630 "src/ic/mips64/access-compiler-mips64.cc",
1620 "src/ic/mips64/handler-compiler-mips64.cc", 1631 "src/ic/mips64/handler-compiler-mips64.cc",
1632 "src/ic/mips64/ic-compiler-mips64.cc",
1621 "src/ic/mips64/ic-mips64.cc", 1633 "src/ic/mips64/ic-mips64.cc",
1622 "src/ic/mips64/ic-compiler-mips64.cc",
1623 "src/ic/mips64/stub-cache-mips64.cc", 1634 "src/ic/mips64/stub-cache-mips64.cc",
1635 "src/mips64/assembler-mips64-inl.h",
1624 "src/mips64/assembler-mips64.cc", 1636 "src/mips64/assembler-mips64.cc",
1625 "src/mips64/assembler-mips64.h", 1637 "src/mips64/assembler-mips64.h",
1626 "src/mips64/assembler-mips64-inl.h",
1627 "src/mips64/builtins-mips64.cc", 1638 "src/mips64/builtins-mips64.cc",
1639 "src/mips64/code-stubs-mips64.cc",
1640 "src/mips64/code-stubs-mips64.h",
1628 "src/mips64/codegen-mips64.cc", 1641 "src/mips64/codegen-mips64.cc",
1629 "src/mips64/codegen-mips64.h", 1642 "src/mips64/codegen-mips64.h",
1630 "src/mips64/code-stubs-mips64.cc",
1631 "src/mips64/code-stubs-mips64.h",
1632 "src/mips64/constants-mips64.cc", 1643 "src/mips64/constants-mips64.cc",
1633 "src/mips64/constants-mips64.h", 1644 "src/mips64/constants-mips64.h",
1634 "src/mips64/cpu-mips64.cc", 1645 "src/mips64/cpu-mips64.cc",
1635 "src/mips64/deoptimizer-mips64.cc", 1646 "src/mips64/deoptimizer-mips64.cc",
1636 "src/mips64/disasm-mips64.cc", 1647 "src/mips64/disasm-mips64.cc",
1637 "src/mips64/frames-mips64.cc", 1648 "src/mips64/frames-mips64.cc",
1638 "src/mips64/frames-mips64.h", 1649 "src/mips64/frames-mips64.h",
1639 "src/mips64/interface-descriptors-mips64.cc", 1650 "src/mips64/interface-descriptors-mips64.cc",
1640 "src/mips64/macro-assembler-mips64.cc", 1651 "src/mips64/macro-assembler-mips64.cc",
1641 "src/mips64/macro-assembler-mips64.h", 1652 "src/mips64/macro-assembler-mips64.h",
(...skipping 16 matching lines...) Expand all
1658 "src/crankshaft/s390/lithium-s390.h", 1669 "src/crankshaft/s390/lithium-s390.h",
1659 "src/debug/s390/debug-s390.cc", 1670 "src/debug/s390/debug-s390.cc",
1660 "src/full-codegen/s390/full-codegen-s390.cc", 1671 "src/full-codegen/s390/full-codegen-s390.cc",
1661 "src/ic/s390/access-compiler-s390.cc", 1672 "src/ic/s390/access-compiler-s390.cc",
1662 "src/ic/s390/handler-compiler-s390.cc", 1673 "src/ic/s390/handler-compiler-s390.cc",
1663 "src/ic/s390/ic-compiler-s390.cc", 1674 "src/ic/s390/ic-compiler-s390.cc",
1664 "src/ic/s390/ic-s390.cc", 1675 "src/ic/s390/ic-s390.cc",
1665 "src/ic/s390/stub-cache-s390.cc", 1676 "src/ic/s390/stub-cache-s390.cc",
1666 "src/regexp/s390/regexp-macro-assembler-s390.cc", 1677 "src/regexp/s390/regexp-macro-assembler-s390.cc",
1667 "src/regexp/s390/regexp-macro-assembler-s390.h", 1678 "src/regexp/s390/regexp-macro-assembler-s390.h",
1679 "src/s390/assembler-s390-inl.h",
1668 "src/s390/assembler-s390.cc", 1680 "src/s390/assembler-s390.cc",
1669 "src/s390/assembler-s390.h", 1681 "src/s390/assembler-s390.h",
1670 "src/s390/assembler-s390-inl.h",
1671 "src/s390/builtins-s390.cc", 1682 "src/s390/builtins-s390.cc",
1683 "src/s390/code-stubs-s390.cc",
1684 "src/s390/code-stubs-s390.h",
1672 "src/s390/codegen-s390.cc", 1685 "src/s390/codegen-s390.cc",
1673 "src/s390/codegen-s390.h", 1686 "src/s390/codegen-s390.h",
1674 "src/s390/code-stubs-s390.cc",
1675 "src/s390/code-stubs-s390.h",
1676 "src/s390/constants-s390.cc", 1687 "src/s390/constants-s390.cc",
1677 "src/s390/constants-s390.h", 1688 "src/s390/constants-s390.h",
1678 "src/s390/cpu-s390.cc", 1689 "src/s390/cpu-s390.cc",
1679 "src/s390/deoptimizer-s390.cc", 1690 "src/s390/deoptimizer-s390.cc",
1680 "src/s390/disasm-s390.cc", 1691 "src/s390/disasm-s390.cc",
1681 "src/s390/frames-s390.cc", 1692 "src/s390/frames-s390.cc",
1682 "src/s390/frames-s390.h", 1693 "src/s390/frames-s390.h",
1683 "src/s390/interface-descriptors-s390.cc", 1694 "src/s390/interface-descriptors-s390.cc",
1684 "src/s390/macro-assembler-s390.cc", 1695 "src/s390/macro-assembler-s390.cc",
1685 "src/s390/macro-assembler-s390.h", 1696 "src/s390/macro-assembler-s390.h",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
1735 source_set("v8_libbase") { 1746 source_set("v8_libbase") {
1736 visibility = [ ":*" ] # Only targets in this file can depend on this. 1747 visibility = [ ":*" ] # Only targets in this file can depend on this.
1737 1748
1738 sources = [ 1749 sources = [
1739 "src/base/adapters.h", 1750 "src/base/adapters.h",
1740 "src/base/atomicops.h", 1751 "src/base/atomicops.h",
1741 "src/base/atomicops_internals_arm64_gcc.h", 1752 "src/base/atomicops_internals_arm64_gcc.h",
1742 "src/base/atomicops_internals_arm_gcc.h", 1753 "src/base/atomicops_internals_arm_gcc.h",
1743 "src/base/atomicops_internals_atomicword_compat.h", 1754 "src/base/atomicops_internals_atomicword_compat.h",
1744 "src/base/atomicops_internals_mac.h", 1755 "src/base/atomicops_internals_mac.h",
1756 "src/base/atomicops_internals_mips64_gcc.h",
1745 "src/base/atomicops_internals_mips_gcc.h", 1757 "src/base/atomicops_internals_mips_gcc.h",
1746 "src/base/atomicops_internals_mips64_gcc.h",
1747 "src/base/atomicops_internals_portable.h", 1758 "src/base/atomicops_internals_portable.h",
1748 "src/base/atomicops_internals_s390_gcc.h", 1759 "src/base/atomicops_internals_s390_gcc.h",
1749 "src/base/atomicops_internals_tsan.h", 1760 "src/base/atomicops_internals_tsan.h",
1750 "src/base/atomicops_internals_x86_gcc.cc", 1761 "src/base/atomicops_internals_x86_gcc.cc",
1751 "src/base/atomicops_internals_x86_gcc.h", 1762 "src/base/atomicops_internals_x86_gcc.h",
1752 "src/base/atomicops_internals_x86_msvc.h", 1763 "src/base/atomicops_internals_x86_msvc.h",
1753 "src/base/bits.cc", 1764 "src/base/bits.cc",
1754 "src/base/bits.h", 1765 "src/base/bits.h",
1755 "src/base/build_config.h", 1766 "src/base/build_config.h",
1756 "src/base/cpu.cc", 1767 "src/base/cpu.cc",
1757 "src/base/cpu.h", 1768 "src/base/cpu.h",
1758 "src/base/division-by-constant.cc", 1769 "src/base/division-by-constant.cc",
1759 "src/base/division-by-constant.h", 1770 "src/base/division-by-constant.h",
1760 "src/base/flags.h", 1771 "src/base/flags.h",
1761 "src/base/functional.cc", 1772 "src/base/functional.cc",
1762 "src/base/functional.h", 1773 "src/base/functional.h",
1763 "src/base/iterator.h", 1774 "src/base/iterator.h",
1764 "src/base/lazy-instance.h", 1775 "src/base/lazy-instance.h",
1765 "src/base/logging.cc", 1776 "src/base/logging.cc",
1766 "src/base/logging.h", 1777 "src/base/logging.h",
1767 "src/base/macros.h", 1778 "src/base/macros.h",
1768 "src/base/once.cc", 1779 "src/base/once.cc",
1769 "src/base/once.h", 1780 "src/base/once.h",
1770 "src/base/platform/elapsed-timer.h",
1771 "src/base/platform/time.cc",
1772 "src/base/platform/time.h",
1773 "src/base/platform/condition-variable.cc", 1781 "src/base/platform/condition-variable.cc",
1774 "src/base/platform/condition-variable.h", 1782 "src/base/platform/condition-variable.h",
1783 "src/base/platform/elapsed-timer.h",
1775 "src/base/platform/mutex.cc", 1784 "src/base/platform/mutex.cc",
1776 "src/base/platform/mutex.h", 1785 "src/base/platform/mutex.h",
1777 "src/base/platform/platform.h", 1786 "src/base/platform/platform.h",
1778 "src/base/platform/semaphore.cc", 1787 "src/base/platform/semaphore.cc",
1779 "src/base/platform/semaphore.h", 1788 "src/base/platform/semaphore.h",
1789 "src/base/platform/time.cc",
1790 "src/base/platform/time.h",
1780 "src/base/safe_conversions.h", 1791 "src/base/safe_conversions.h",
1781 "src/base/safe_conversions_impl.h", 1792 "src/base/safe_conversions_impl.h",
1782 "src/base/safe_math.h", 1793 "src/base/safe_math.h",
1783 "src/base/safe_math_impl.h", 1794 "src/base/safe_math_impl.h",
1784 "src/base/smart-pointers.h", 1795 "src/base/smart-pointers.h",
1785 "src/base/sys-info.cc", 1796 "src/base/sys-info.cc",
1786 "src/base/sys-info.h", 1797 "src/base/sys-info.h",
1787 "src/base/utils/random-number-generator.cc", 1798 "src/base/utils/random-number-generator.cc",
1788 "src/base/utils/random-number-generator.h", 1799 "src/base/utils/random-number-generator.h",
1789 ] 1800 ]
(...skipping 13 matching lines...) Expand all
1803 1814
1804 defines = [] 1815 defines = []
1805 1816
1806 if (is_posix) { 1817 if (is_posix) {
1807 sources += [ "src/base/platform/platform-posix.cc" ] 1818 sources += [ "src/base/platform/platform-posix.cc" ]
1808 } 1819 }
1809 1820
1810 if (is_linux) { 1821 if (is_linux) {
1811 sources += [ "src/base/platform/platform-linux.cc" ] 1822 sources += [ "src/base/platform/platform-linux.cc" ]
1812 1823
1813 libs = [ "dl", "rt" ] 1824 libs = [
1825 "dl",
1826 "rt",
1827 ]
1814 } else if (is_android) { 1828 } else if (is_android) {
1815 if (current_toolchain == host_toolchain) { 1829 if (current_toolchain == host_toolchain) {
1816 libs = [ "dl", "rt" ] 1830 libs = [
1831 "dl",
1832 "rt",
1833 ]
1817 if (host_os == "mac") { 1834 if (host_os == "mac") {
1818 sources += [ "src/base/platform/platform-macos.cc" ] 1835 sources += [ "src/base/platform/platform-macos.cc" ]
1819 } else { 1836 } else {
1820 sources += [ "src/base/platform/platform-linux.cc" ] 1837 sources += [ "src/base/platform/platform-linux.cc" ]
1821 } 1838 }
1822 } else { 1839 } else {
1823 sources += [ "src/base/platform/platform-linux.cc" ] 1840 sources += [ "src/base/platform/platform-linux.cc" ]
1824 } 1841 }
1825 } else if (is_mac) { 1842 } else if (is_mac) {
1826 sources += [ "src/base/platform/platform-macos.cc" ] 1843 sources += [ "src/base/platform/platform-macos.cc" ]
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1993 2010
1994 # TODO(jochen): Add support for vtunejit. 2011 # TODO(jochen): Add support for vtunejit.
1995 2012
1996 if (is_posix) { 2013 if (is_posix) {
1997 sources += [ "src/d8-posix.cc" ] 2014 sources += [ "src/d8-posix.cc" ]
1998 } else if (is_win) { 2015 } else if (is_win) {
1999 sources += [ "src/d8-windows.cc" ] 2016 sources += [ "src/d8-windows.cc" ]
2000 } 2017 }
2001 2018
2002 if (!is_component_build) { 2019 if (!is_component_build) {
2003 sources += [ 2020 sources += [ "$target_gen_dir/d8-js.cc" ]
2004 "$target_gen_dir/d8-js.cc",
2005 ]
2006 } 2021 }
2007 if (v8_enable_i18n_support) { 2022 if (v8_enable_i18n_support) {
2008 deps += [ "//third_party/icu" ] 2023 deps += [ "//third_party/icu" ]
2009 } 2024 }
2010 } 2025 }
2011 } 2026 }
2012 2027
2013 source_set("json_fuzzer") { 2028 source_set("json_fuzzer") {
2014 sources = [ 2029 sources = [
2015 "test/fuzzer/json.cc", 2030 "test/fuzzer/json.cc",
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
2097 2112
2098 configs -= [ "//build/config/compiler:chromium_code" ] 2113 configs -= [ "//build/config/compiler:chromium_code" ]
2099 configs += [ "//build/config/compiler:no_chromium_code" ] 2114 configs += [ "//build/config/compiler:no_chromium_code" ]
2100 configs += [ 2115 configs += [
2101 ":internal_config", 2116 ":internal_config",
2102 ":libplatform_config", 2117 ":libplatform_config",
2103 ":features", 2118 ":features",
2104 ":toolchain", 2119 ":toolchain",
2105 ] 2120 ]
2106 } 2121 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698