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

Side by Side Diff: src/v8.gyp

Issue 1920793002: [build] Prepare moving v8.gyp to src/ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Better base files. Created 4 years, 7 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 | « src/third_party/vtune/v8vtune.gyp ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 19 matching lines...) Expand all
30 'icu_use_data_file_flag%': 0, 30 'icu_use_data_file_flag%': 0,
31 'v8_code': 1, 31 'v8_code': 1,
32 'v8_random_seed%': 314159265, 32 'v8_random_seed%': 314159265,
33 'v8_vector_stores%': 0, 33 'v8_vector_stores%': 0,
34 'embed_script%': "", 34 'embed_script%': "",
35 'warmup_script%': "", 35 'warmup_script%': "",
36 'v8_extra_library_files%': [], 36 'v8_extra_library_files%': [],
37 'v8_experimental_extra_library_files%': [], 37 'v8_experimental_extra_library_files%': [],
38 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABL E_SUFFIX)', 38 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABL E_SUFFIX)',
39 }, 39 },
40 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], 40 'includes': ['../build/toolchain.gypi', '../build/features.gypi'],
41 'targets': [ 41 'targets': [
42 { 42 {
43 'target_name': 'v8', 43 'target_name': 'v8',
44 'dependencies_traverse': 1, 44 'dependencies_traverse': 1,
45 'dependencies': ['v8_maybe_snapshot'], 45 'dependencies': ['v8_maybe_snapshot'],
46 'conditions': [ 46 'conditions': [
47 ['want_separate_host_toolset==1', { 47 ['want_separate_host_toolset==1', {
48 'toolsets': ['host', 'target'], 48 'toolsets': ['host', 'target'],
49 }, { 49 }, {
50 'toolsets': ['target'], 50 'toolsets': ['target'],
51 }], 51 }],
52 ['component=="shared_library"', { 52 ['component=="shared_library"', {
53 'type': '<(component)', 53 'type': '<(component)',
54 'sources': [ 54 'sources': [
55 # Note: on non-Windows we still build this file so that gyp 55 # Note: on non-Windows we still build this file so that gyp
56 # has some sources to link into the component. 56 # has some sources to link into the component.
57 '../../src/v8dll-main.cc', 57 'v8dll-main.cc',
58 ], 58 ],
59 'include_dirs': [ 59 'include_dirs': [
60 '../..', 60 '..',
61 ], 61 ],
62 'defines': [ 62 'defines': [
63 'V8_SHARED', 63 'V8_SHARED',
64 'BUILDING_V8_SHARED', 64 'BUILDING_V8_SHARED',
65 ], 65 ],
66 'direct_dependent_settings': { 66 'direct_dependent_settings': {
67 'defines': [ 67 'defines': [
68 'V8_SHARED', 68 'V8_SHARED',
69 'USING_V8_SHARED', 69 'USING_V8_SHARED',
70 ], 70 ],
(...skipping 18 matching lines...) Expand all
89 'product_extension': 'so.<(soname_version)', 89 'product_extension': 'so.<(soname_version)',
90 }], 90 }],
91 ], 91 ],
92 }, 92 },
93 { 93 {
94 'type': 'none', 94 'type': 'none',
95 }], 95 }],
96 ], 96 ],
97 'direct_dependent_settings': { 97 'direct_dependent_settings': {
98 'include_dirs': [ 98 'include_dirs': [
99 '../../include', 99 '../include',
100 ], 100 ],
101 }, 101 },
102 }, 102 },
103 { 103 {
104 # This rule delegates to either v8_snapshot, v8_nosnapshot, or 104 # This rule delegates to either v8_snapshot, v8_nosnapshot, or
105 # v8_external_snapshot, depending on the current variables. 105 # v8_external_snapshot, depending on the current variables.
106 # The intention is to make the 'calling' rules a bit simpler. 106 # The intention is to make the 'calling' rules a bit simpler.
107 'target_name': 'v8_maybe_snapshot', 107 'target_name': 'v8_maybe_snapshot',
108 'type': 'none', 108 'type': 'none',
109 'conditions': [ 109 'conditions': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 'V8_SHARED', 171 'V8_SHARED',
172 'USING_V8_SHARED', 172 'USING_V8_SHARED',
173 ], 173 ],
174 }, 174 },
175 }], 175 }],
176 ], 176 ],
177 'dependencies': [ 177 'dependencies': [
178 'v8_base', 178 'v8_base',
179 ], 179 ],
180 'include_dirs+': [ 180 'include_dirs+': [
181 '../..', 181 '..',
182 ], 182 ],
183 'sources': [ 183 'sources': [
184 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 184 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
185 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 185 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
186 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 186 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
187 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 187 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
188 '<(INTERMEDIATE_DIR)/snapshot.cc', 188 '<(INTERMEDIATE_DIR)/snapshot.cc',
189 ], 189 ],
190 'actions': [ 190 'actions': [
191 { 191 {
(...skipping 27 matching lines...) Expand all
219 }, 219 },
220 ], 220 ],
221 }, 221 },
222 { 222 {
223 'target_name': 'v8_nosnapshot', 223 'target_name': 'v8_nosnapshot',
224 'type': 'static_library', 224 'type': 'static_library',
225 'dependencies': [ 225 'dependencies': [
226 'v8_base', 226 'v8_base',
227 ], 227 ],
228 'include_dirs+': [ 228 'include_dirs+': [
229 '../..', 229 '..',
230 ], 230 ],
231 'sources': [ 231 'sources': [
232 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 232 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
233 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 233 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
234 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 234 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
235 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 235 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
236 '../../src/snapshot/snapshot-empty.cc', 236 'snapshot/snapshot-empty.cc',
237 ], 237 ],
238 'conditions': [ 238 'conditions': [
239 ['want_separate_host_toolset==1', { 239 ['want_separate_host_toolset==1', {
240 'toolsets': ['host', 'target'], 240 'toolsets': ['host', 'target'],
241 'dependencies': ['js2c#host'], 241 'dependencies': ['js2c#host'],
242 }, { 242 }, {
243 'toolsets': ['target'], 243 'toolsets': ['target'],
244 'dependencies': ['js2c'], 244 'dependencies': ['js2c'],
245 }], 245 }],
246 ['component=="shared_library"', { 246 ['component=="shared_library"', {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 'V8_SHARED', 281 'V8_SHARED',
282 'USING_V8_SHARED', 282 'USING_V8_SHARED',
283 ], 283 ],
284 }, 284 },
285 }], 285 }],
286 ], 286 ],
287 'dependencies': [ 287 'dependencies': [
288 'v8_base', 288 'v8_base',
289 ], 289 ],
290 'include_dirs+': [ 290 'include_dirs+': [
291 '../..', 291 '..',
292 ], 292 ],
293 'sources': [ 293 'sources': [
294 '../../src/snapshot/natives-external.cc', 294 'snapshot/natives-external.cc',
295 '../../src/snapshot/snapshot-external.cc', 295 'snapshot/snapshot-external.cc',
296 ], 296 ],
297 'actions': [ 297 'actions': [
298 { 298 {
299 'action_name': 'run_mksnapshot (external)', 299 'action_name': 'run_mksnapshot (external)',
300 'inputs': [ 300 'inputs': [
301 '<(mksnapshot_exec)', 301 '<(mksnapshot_exec)',
302 '<(embed_script)', 302 '<(embed_script)',
303 '<(warmup_script)', 303 '<(warmup_script)',
304 ], 304 ],
305 'variables': { 305 'variables': {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 { 361 {
362 'target_name': 'v8_base', 362 'target_name': 'v8_base',
363 'type': 'static_library', 363 'type': 'static_library',
364 'dependencies': [ 364 'dependencies': [
365 'v8_libbase', 365 'v8_libbase',
366 ], 366 ],
367 'variables': { 367 'variables': {
368 'optimize': 'max', 368 'optimize': 'max',
369 }, 369 },
370 'include_dirs+': [ 370 'include_dirs+': [
371 '..',
372 # To be able to find base/trace_event/common/trace_event_common.h
371 '../..', 373 '../..',
372 # To be able to find base/trace_event/common/trace_event_common.h
373 '../../..',
374 ], 374 ],
375 'defines': [ 375 'defines': [
376 # TODO(jochen): Remove again after this is globally turned on. 376 # TODO(jochen): Remove again after this is globally turned on.
377 'V8_IMMINENT_DEPRECATION_WARNINGS', 377 'V8_IMMINENT_DEPRECATION_WARNINGS',
378 ], 378 ],
379 'sources': [ ### gcmole(all) ### 379 'sources': [ ### gcmole(all) ###
380 '../../include/v8-debug.h', 380 '../include/v8-debug.h',
381 '../../include/v8-experimental.h', 381 '../include/v8-experimental.h',
382 '../../include/v8-platform.h', 382 '../include/v8-platform.h',
383 '../../include/v8-profiler.h', 383 '../include/v8-profiler.h',
384 '../../include/v8-testing.h', 384 '../include/v8-testing.h',
385 '../../include/v8-util.h', 385 '../include/v8-util.h',
386 '../../include/v8-version.h', 386 '../include/v8-version.h',
387 '../../include/v8.h', 387 '../include/v8.h',
388 '../../include/v8config.h', 388 '../include/v8config.h',
389 '../../src/accessors.cc', 389 'accessors.cc',
390 '../../src/accessors.h', 390 'accessors.h',
391 '../../src/address-map.cc', 391 'address-map.cc',
392 '../../src/address-map.h', 392 'address-map.h',
393 '../../src/allocation.cc', 393 'allocation.cc',
394 '../../src/allocation.h', 394 'allocation.h',
395 '../../src/allocation-site-scopes.cc', 395 'allocation-site-scopes.cc',
396 '../../src/allocation-site-scopes.h', 396 'allocation-site-scopes.h',
397 '../../src/api-experimental.cc', 397 'api-experimental.cc',
398 '../../src/api-experimental.h', 398 'api-experimental.h',
399 '../../src/api.cc', 399 'api.cc',
400 '../../src/api.h', 400 'api.h',
401 '../../src/api-arguments.cc', 401 'api-arguments.cc',
402 '../../src/api-arguments.h', 402 'api-arguments.h',
403 '../../src/api-natives.cc', 403 'api-natives.cc',
404 '../../src/api-natives.h', 404 'api-natives.h',
405 '../../src/arguments.cc', 405 'arguments.cc',
406 '../../src/arguments.h', 406 'arguments.h',
407 '../../src/assembler.cc', 407 'assembler.cc',
408 '../../src/assembler.h', 408 'assembler.h',
409 '../../src/assert-scope.h', 409 'assert-scope.h',
410 '../../src/assert-scope.cc', 410 'assert-scope.cc',
411 '../../src/ast/ast-expression-rewriter.cc', 411 'ast/ast-expression-rewriter.cc',
412 '../../src/ast/ast-expression-rewriter.h', 412 'ast/ast-expression-rewriter.h',
413 '../../src/ast/ast-expression-visitor.cc', 413 'ast/ast-expression-visitor.cc',
414 '../../src/ast/ast-expression-visitor.h', 414 'ast/ast-expression-visitor.h',
415 '../../src/ast/ast-literal-reindexer.cc', 415 'ast/ast-literal-reindexer.cc',
416 '../../src/ast/ast-literal-reindexer.h', 416 'ast/ast-literal-reindexer.h',
417 '../../src/ast/ast-numbering.cc', 417 'ast/ast-numbering.cc',
418 '../../src/ast/ast-numbering.h', 418 'ast/ast-numbering.h',
419 '../../src/ast/ast-value-factory.cc', 419 'ast/ast-value-factory.cc',
420 '../../src/ast/ast-value-factory.h', 420 'ast/ast-value-factory.h',
421 '../../src/ast/ast.cc', 421 'ast/ast.cc',
422 '../../src/ast/ast.h', 422 'ast/ast.h',
423 '../../src/ast/modules.cc', 423 'ast/modules.cc',
424 '../../src/ast/modules.h', 424 'ast/modules.h',
425 '../../src/ast/prettyprinter.cc', 425 'ast/prettyprinter.cc',
426 '../../src/ast/prettyprinter.h', 426 'ast/prettyprinter.h',
427 '../../src/ast/scopeinfo.cc', 427 'ast/scopeinfo.cc',
428 '../../src/ast/scopeinfo.h', 428 'ast/scopeinfo.h',
429 '../../src/ast/scopes.cc', 429 'ast/scopes.cc',
430 '../../src/ast/scopes.h', 430 'ast/scopes.h',
431 '../../src/ast/variables.cc', 431 'ast/variables.cc',
432 '../../src/ast/variables.h', 432 'ast/variables.h',
433 '../../src/atomic-utils.h', 433 'atomic-utils.h',
434 '../../src/background-parsing-task.cc', 434 'background-parsing-task.cc',
435 '../../src/background-parsing-task.h', 435 'background-parsing-task.h',
436 '../../src/bailout-reason.cc', 436 'bailout-reason.cc',
437 '../../src/bailout-reason.h', 437 'bailout-reason.h',
438 '../../src/basic-block-profiler.cc', 438 'basic-block-profiler.cc',
439 '../../src/basic-block-profiler.h', 439 'basic-block-profiler.h',
440 '../../src/bignum-dtoa.cc', 440 'bignum-dtoa.cc',
441 '../../src/bignum-dtoa.h', 441 'bignum-dtoa.h',
442 '../../src/bignum.cc', 442 'bignum.cc',
443 '../../src/bignum.h', 443 'bignum.h',
444 '../../src/bit-vector.cc', 444 'bit-vector.cc',
445 '../../src/bit-vector.h', 445 'bit-vector.h',
446 '../../src/bootstrapper.cc', 446 'bootstrapper.cc',
447 '../../src/bootstrapper.h', 447 'bootstrapper.h',
448 '../../src/builtins.cc', 448 'builtins.cc',
449 '../../src/builtins.h', 449 'builtins.h',
450 '../../src/cached-powers.cc', 450 'cached-powers.cc',
451 '../../src/cached-powers.h', 451 'cached-powers.h',
452 '../../src/cancelable-task.cc', 452 'cancelable-task.cc',
453 '../../src/cancelable-task.h', 453 'cancelable-task.h',
454 '../../src/char-predicates.cc', 454 'char-predicates.cc',
455 '../../src/char-predicates-inl.h', 455 'char-predicates-inl.h',
456 '../../src/char-predicates.h', 456 'char-predicates.h',
457 '../../src/checks.h', 457 'checks.h',
458 '../../src/code-factory.cc', 458 'code-factory.cc',
459 '../../src/code-factory.h', 459 'code-factory.h',
460 '../../src/code-stub-assembler.cc', 460 'code-stub-assembler.cc',
461 '../../src/code-stub-assembler.h', 461 'code-stub-assembler.h',
462 '../../src/code-stubs.cc', 462 'code-stubs.cc',
463 '../../src/code-stubs.h', 463 'code-stubs.h',
464 '../../src/code-stubs-hydrogen.cc', 464 'code-stubs-hydrogen.cc',
465 '../../src/codegen.cc', 465 'codegen.cc',
466 '../../src/codegen.h', 466 'codegen.h',
467 '../../src/collector.h', 467 'collector.h',
468 '../../src/compilation-cache.cc', 468 'compilation-cache.cc',
469 '../../src/compilation-cache.h', 469 'compilation-cache.h',
470 '../../src/compilation-dependencies.cc', 470 'compilation-dependencies.cc',
471 '../../src/compilation-dependencies.h', 471 'compilation-dependencies.h',
472 '../../src/compilation-statistics.cc', 472 'compilation-statistics.cc',
473 '../../src/compilation-statistics.h', 473 'compilation-statistics.h',
474 '../../src/compiler/access-builder.cc', 474 'compiler/access-builder.cc',
475 '../../src/compiler/access-builder.h', 475 'compiler/access-builder.h',
476 '../../src/compiler/access-info.cc', 476 'compiler/access-info.cc',
477 '../../src/compiler/access-info.h', 477 'compiler/access-info.h',
478 '../../src/compiler/all-nodes.cc', 478 'compiler/all-nodes.cc',
479 '../../src/compiler/all-nodes.h', 479 'compiler/all-nodes.h',
480 '../../src/compiler/ast-graph-builder.cc', 480 'compiler/ast-graph-builder.cc',
481 '../../src/compiler/ast-graph-builder.h', 481 'compiler/ast-graph-builder.h',
482 '../../src/compiler/ast-loop-assignment-analyzer.cc', 482 'compiler/ast-loop-assignment-analyzer.cc',
483 '../../src/compiler/ast-loop-assignment-analyzer.h', 483 'compiler/ast-loop-assignment-analyzer.h',
484 '../../src/compiler/basic-block-instrumentor.cc', 484 'compiler/basic-block-instrumentor.cc',
485 '../../src/compiler/basic-block-instrumentor.h', 485 'compiler/basic-block-instrumentor.h',
486 '../../src/compiler/branch-elimination.cc', 486 'compiler/branch-elimination.cc',
487 '../../src/compiler/branch-elimination.h', 487 'compiler/branch-elimination.h',
488 '../../src/compiler/bytecode-branch-analysis.cc', 488 'compiler/bytecode-branch-analysis.cc',
489 '../../src/compiler/bytecode-branch-analysis.h', 489 'compiler/bytecode-branch-analysis.h',
490 '../../src/compiler/bytecode-graph-builder.cc', 490 'compiler/bytecode-graph-builder.cc',
491 '../../src/compiler/bytecode-graph-builder.h', 491 'compiler/bytecode-graph-builder.h',
492 '../../src/compiler/change-lowering.cc', 492 'compiler/change-lowering.cc',
493 '../../src/compiler/change-lowering.h', 493 'compiler/change-lowering.h',
494 '../../src/compiler/c-linkage.cc', 494 'compiler/c-linkage.cc',
495 '../../src/compiler/coalesced-live-ranges.cc', 495 'compiler/coalesced-live-ranges.cc',
496 '../../src/compiler/coalesced-live-ranges.h', 496 'compiler/coalesced-live-ranges.h',
497 '../../src/compiler/code-generator-impl.h', 497 'compiler/code-generator-impl.h',
498 '../../src/compiler/code-generator.cc', 498 'compiler/code-generator.cc',
499 '../../src/compiler/code-generator.h', 499 'compiler/code-generator.h',
500 '../../src/compiler/code-assembler.cc', 500 'compiler/code-assembler.cc',
501 '../../src/compiler/code-assembler.h', 501 'compiler/code-assembler.h',
502 '../../src/compiler/common-node-cache.cc', 502 'compiler/common-node-cache.cc',
503 '../../src/compiler/common-node-cache.h', 503 'compiler/common-node-cache.h',
504 '../../src/compiler/common-operator-reducer.cc', 504 'compiler/common-operator-reducer.cc',
505 '../../src/compiler/common-operator-reducer.h', 505 'compiler/common-operator-reducer.h',
506 '../../src/compiler/common-operator.cc', 506 'compiler/common-operator.cc',
507 '../../src/compiler/common-operator.h', 507 'compiler/common-operator.h',
508 '../../src/compiler/control-builders.cc', 508 'compiler/control-builders.cc',
509 '../../src/compiler/control-builders.h', 509 'compiler/control-builders.h',
510 '../../src/compiler/control-equivalence.cc', 510 'compiler/control-equivalence.cc',
511 '../../src/compiler/control-equivalence.h', 511 'compiler/control-equivalence.h',
512 '../../src/compiler/control-flow-optimizer.cc', 512 'compiler/control-flow-optimizer.cc',
513 '../../src/compiler/control-flow-optimizer.h', 513 'compiler/control-flow-optimizer.h',
514 '../../src/compiler/dead-code-elimination.cc', 514 'compiler/dead-code-elimination.cc',
515 '../../src/compiler/dead-code-elimination.h', 515 'compiler/dead-code-elimination.h',
516 '../../src/compiler/diamond.h', 516 'compiler/diamond.h',
517 '../../src/compiler/effect-control-linearizer.cc', 517 'compiler/effect-control-linearizer.cc',
518 '../../src/compiler/effect-control-linearizer.h', 518 'compiler/effect-control-linearizer.h',
519 '../../src/compiler/escape-analysis.cc', 519 'compiler/escape-analysis.cc',
520 '../../src/compiler/escape-analysis.h', 520 'compiler/escape-analysis.h',
521 "../../src/compiler/escape-analysis-reducer.cc", 521 "compiler/escape-analysis-reducer.cc",
522 "../../src/compiler/escape-analysis-reducer.h", 522 "compiler/escape-analysis-reducer.h",
523 '../../src/compiler/frame.cc', 523 'compiler/frame.cc',
524 '../../src/compiler/frame.h', 524 'compiler/frame.h',
525 '../../src/compiler/frame-elider.cc', 525 'compiler/frame-elider.cc',
526 '../../src/compiler/frame-elider.h', 526 'compiler/frame-elider.h',
527 "../../src/compiler/frame-states.cc", 527 "compiler/frame-states.cc",
528 "../../src/compiler/frame-states.h", 528 "compiler/frame-states.h",
529 '../../src/compiler/gap-resolver.cc', 529 'compiler/gap-resolver.cc',
530 '../../src/compiler/gap-resolver.h', 530 'compiler/gap-resolver.h',
531 '../../src/compiler/graph-reducer.cc', 531 'compiler/graph-reducer.cc',
532 '../../src/compiler/graph-reducer.h', 532 'compiler/graph-reducer.h',
533 '../../src/compiler/graph-replay.cc', 533 'compiler/graph-replay.cc',
534 '../../src/compiler/graph-replay.h', 534 'compiler/graph-replay.h',
535 '../../src/compiler/graph-trimmer.cc', 535 'compiler/graph-trimmer.cc',
536 '../../src/compiler/graph-trimmer.h', 536 'compiler/graph-trimmer.h',
537 '../../src/compiler/graph-visualizer.cc', 537 'compiler/graph-visualizer.cc',
538 '../../src/compiler/graph-visualizer.h', 538 'compiler/graph-visualizer.h',
539 '../../src/compiler/graph.cc', 539 'compiler/graph.cc',
540 '../../src/compiler/graph.h', 540 'compiler/graph.h',
541 '../../src/compiler/greedy-allocator.cc', 541 'compiler/greedy-allocator.cc',
542 '../../src/compiler/greedy-allocator.h', 542 'compiler/greedy-allocator.h',
543 '../../src/compiler/instruction-codes.h', 543 'compiler/instruction-codes.h',
544 '../../src/compiler/instruction-selector-impl.h', 544 'compiler/instruction-selector-impl.h',
545 '../../src/compiler/instruction-selector.cc', 545 'compiler/instruction-selector.cc',
546 '../../src/compiler/instruction-selector.h', 546 'compiler/instruction-selector.h',
547 '../../src/compiler/instruction-scheduler.cc', 547 'compiler/instruction-scheduler.cc',
548 '../../src/compiler/instruction-scheduler.h', 548 'compiler/instruction-scheduler.h',
549 '../../src/compiler/instruction.cc', 549 'compiler/instruction.cc',
550 '../../src/compiler/instruction.h', 550 'compiler/instruction.h',
551 '../../src/compiler/int64-lowering.cc', 551 'compiler/int64-lowering.cc',
552 '../../src/compiler/int64-lowering.h', 552 'compiler/int64-lowering.h',
553 '../../src/compiler/js-builtin-reducer.cc', 553 'compiler/js-builtin-reducer.cc',
554 '../../src/compiler/js-builtin-reducer.h', 554 'compiler/js-builtin-reducer.h',
555 '../../src/compiler/js-call-reducer.cc', 555 'compiler/js-call-reducer.cc',
556 '../../src/compiler/js-call-reducer.h', 556 'compiler/js-call-reducer.h',
557 '../../src/compiler/js-context-specialization.cc', 557 'compiler/js-context-specialization.cc',
558 '../../src/compiler/js-context-specialization.h', 558 'compiler/js-context-specialization.h',
559 '../../src/compiler/js-create-lowering.cc', 559 'compiler/js-create-lowering.cc',
560 '../../src/compiler/js-create-lowering.h', 560 'compiler/js-create-lowering.h',
561 '../../src/compiler/js-frame-specialization.cc', 561 'compiler/js-frame-specialization.cc',
562 '../../src/compiler/js-frame-specialization.h', 562 'compiler/js-frame-specialization.h',
563 '../../src/compiler/js-generic-lowering.cc', 563 'compiler/js-generic-lowering.cc',
564 '../../src/compiler/js-generic-lowering.h', 564 'compiler/js-generic-lowering.h',
565 '../../src/compiler/js-global-object-specialization.cc', 565 'compiler/js-global-object-specialization.cc',
566 '../../src/compiler/js-global-object-specialization.h', 566 'compiler/js-global-object-specialization.h',
567 '../../src/compiler/js-graph.cc', 567 'compiler/js-graph.cc',
568 '../../src/compiler/js-graph.h', 568 'compiler/js-graph.h',
569 '../../src/compiler/js-inlining.cc', 569 'compiler/js-inlining.cc',
570 '../../src/compiler/js-inlining.h', 570 'compiler/js-inlining.h',
571 '../../src/compiler/js-inlining-heuristic.cc', 571 'compiler/js-inlining-heuristic.cc',
572 '../../src/compiler/js-inlining-heuristic.h', 572 'compiler/js-inlining-heuristic.h',
573 '../../src/compiler/js-intrinsic-lowering.cc', 573 'compiler/js-intrinsic-lowering.cc',
574 '../../src/compiler/js-intrinsic-lowering.h', 574 'compiler/js-intrinsic-lowering.h',
575 '../../src/compiler/js-native-context-specialization.cc', 575 'compiler/js-native-context-specialization.cc',
576 '../../src/compiler/js-native-context-specialization.h', 576 'compiler/js-native-context-specialization.h',
577 '../../src/compiler/js-operator.cc', 577 'compiler/js-operator.cc',
578 '../../src/compiler/js-operator.h', 578 'compiler/js-operator.h',
579 '../../src/compiler/js-typed-lowering.cc', 579 'compiler/js-typed-lowering.cc',
580 '../../src/compiler/js-typed-lowering.h', 580 'compiler/js-typed-lowering.h',
581 '../../src/compiler/jump-threading.cc', 581 'compiler/jump-threading.cc',
582 '../../src/compiler/jump-threading.h', 582 'compiler/jump-threading.h',
583 '../../src/compiler/linkage.cc', 583 'compiler/linkage.cc',
584 '../../src/compiler/linkage.h', 584 'compiler/linkage.h',
585 '../../src/compiler/liveness-analyzer.cc', 585 'compiler/liveness-analyzer.cc',
586 '../../src/compiler/liveness-analyzer.h', 586 'compiler/liveness-analyzer.h',
587 '../../src/compiler/live-range-separator.cc', 587 'compiler/live-range-separator.cc',
588 '../../src/compiler/live-range-separator.h', 588 'compiler/live-range-separator.h',
589 '../../src/compiler/load-elimination.cc', 589 'compiler/load-elimination.cc',
590 '../../src/compiler/load-elimination.h', 590 'compiler/load-elimination.h',
591 '../../src/compiler/loop-analysis.cc', 591 'compiler/loop-analysis.cc',
592 '../../src/compiler/loop-analysis.h', 592 'compiler/loop-analysis.h',
593 '../../src/compiler/loop-peeling.cc', 593 'compiler/loop-peeling.cc',
594 '../../src/compiler/loop-peeling.h', 594 'compiler/loop-peeling.h',
595 '../../src/compiler/machine-operator-reducer.cc', 595 'compiler/machine-operator-reducer.cc',
596 '../../src/compiler/machine-operator-reducer.h', 596 'compiler/machine-operator-reducer.h',
597 '../../src/compiler/machine-operator.cc', 597 'compiler/machine-operator.cc',
598 '../../src/compiler/machine-operator.h', 598 'compiler/machine-operator.h',
599 '../../src/compiler/move-optimizer.cc', 599 'compiler/move-optimizer.cc',
600 '../../src/compiler/move-optimizer.h', 600 'compiler/move-optimizer.h',
601 '../../src/compiler/node-aux-data.h', 601 'compiler/node-aux-data.h',
602 '../../src/compiler/node-cache.cc', 602 'compiler/node-cache.cc',
603 '../../src/compiler/node-cache.h', 603 'compiler/node-cache.h',
604 '../../src/compiler/node-marker.cc', 604 'compiler/node-marker.cc',
605 '../../src/compiler/node-marker.h', 605 'compiler/node-marker.h',
606 '../../src/compiler/node-matchers.cc', 606 'compiler/node-matchers.cc',
607 '../../src/compiler/node-matchers.h', 607 'compiler/node-matchers.h',
608 '../../src/compiler/node-properties.cc', 608 'compiler/node-properties.cc',
609 '../../src/compiler/node-properties.h', 609 'compiler/node-properties.h',
610 '../../src/compiler/node.cc', 610 'compiler/node.cc',
611 '../../src/compiler/node.h', 611 'compiler/node.h',
612 '../../src/compiler/opcodes.cc', 612 'compiler/opcodes.cc',
613 '../../src/compiler/opcodes.h', 613 'compiler/opcodes.h',
614 '../../src/compiler/operator-properties.cc', 614 'compiler/operator-properties.cc',
615 '../../src/compiler/operator-properties.h', 615 'compiler/operator-properties.h',
616 '../../src/compiler/operator.cc', 616 'compiler/operator.cc',
617 '../../src/compiler/operator.h', 617 'compiler/operator.h',
618 '../../src/compiler/osr.cc', 618 'compiler/osr.cc',
619 '../../src/compiler/osr.h', 619 'compiler/osr.h',
620 '../../src/compiler/pipeline.cc', 620 'compiler/pipeline.cc',
621 '../../src/compiler/pipeline.h', 621 'compiler/pipeline.h',
622 '../../src/compiler/pipeline-statistics.cc', 622 'compiler/pipeline-statistics.cc',
623 '../../src/compiler/pipeline-statistics.h', 623 'compiler/pipeline-statistics.h',
624 '../../src/compiler/raw-machine-assembler.cc', 624 'compiler/raw-machine-assembler.cc',
625 '../../src/compiler/raw-machine-assembler.h', 625 'compiler/raw-machine-assembler.h',
626 '../../src/compiler/register-allocator.cc', 626 'compiler/register-allocator.cc',
627 '../../src/compiler/register-allocator.h', 627 'compiler/register-allocator.h',
628 '../../src/compiler/register-allocator-verifier.cc', 628 'compiler/register-allocator-verifier.cc',
629 '../../src/compiler/register-allocator-verifier.h', 629 'compiler/register-allocator-verifier.h',
630 '../../src/compiler/representation-change.cc', 630 'compiler/representation-change.cc',
631 '../../src/compiler/representation-change.h', 631 'compiler/representation-change.h',
632 '../../src/compiler/schedule.cc', 632 'compiler/schedule.cc',
633 '../../src/compiler/schedule.h', 633 'compiler/schedule.h',
634 '../../src/compiler/scheduler.cc', 634 'compiler/scheduler.cc',
635 '../../src/compiler/scheduler.h', 635 'compiler/scheduler.h',
636 '../../src/compiler/select-lowering.cc', 636 'compiler/select-lowering.cc',
637 '../../src/compiler/select-lowering.h', 637 'compiler/select-lowering.h',
638 '../../src/compiler/simplified-lowering.cc', 638 'compiler/simplified-lowering.cc',
639 '../../src/compiler/simplified-lowering.h', 639 'compiler/simplified-lowering.h',
640 '../../src/compiler/simplified-operator-reducer.cc', 640 'compiler/simplified-operator-reducer.cc',
641 '../../src/compiler/simplified-operator-reducer.h', 641 'compiler/simplified-operator-reducer.h',
642 '../../src/compiler/simplified-operator.cc', 642 'compiler/simplified-operator.cc',
643 '../../src/compiler/simplified-operator.h', 643 'compiler/simplified-operator.h',
644 '../../src/compiler/source-position.cc', 644 'compiler/source-position.cc',
645 '../../src/compiler/source-position.h', 645 'compiler/source-position.h',
646 '../../src/compiler/state-values-utils.cc', 646 'compiler/state-values-utils.cc',
647 '../../src/compiler/state-values-utils.h', 647 'compiler/state-values-utils.h',
648 '../../src/compiler/tail-call-optimization.cc', 648 'compiler/tail-call-optimization.cc',
649 '../../src/compiler/tail-call-optimization.h', 649 'compiler/tail-call-optimization.h',
650 '../../src/compiler/type-hint-analyzer.cc', 650 'compiler/type-hint-analyzer.cc',
651 '../../src/compiler/type-hint-analyzer.h', 651 'compiler/type-hint-analyzer.h',
652 '../../src/compiler/type-hints.cc', 652 'compiler/type-hints.cc',
653 '../../src/compiler/type-hints.h', 653 'compiler/type-hints.h',
654 '../../src/compiler/typer.cc', 654 'compiler/typer.cc',
655 '../../src/compiler/typer.h', 655 'compiler/typer.h',
656 '../../src/compiler/value-numbering-reducer.cc', 656 'compiler/value-numbering-reducer.cc',
657 '../../src/compiler/value-numbering-reducer.h', 657 'compiler/value-numbering-reducer.h',
658 '../../src/compiler/verifier.cc', 658 'compiler/verifier.cc',
659 '../../src/compiler/verifier.h', 659 'compiler/verifier.h',
660 '../../src/compiler/wasm-compiler.cc', 660 'compiler/wasm-compiler.cc',
661 '../../src/compiler/wasm-compiler.h', 661 'compiler/wasm-compiler.h',
662 '../../src/compiler/wasm-linkage.cc', 662 'compiler/wasm-linkage.cc',
663 '../../src/compiler/zone-pool.cc', 663 'compiler/zone-pool.cc',
664 '../../src/compiler/zone-pool.h', 664 'compiler/zone-pool.h',
665 '../../src/compiler.cc', 665 'compiler.cc',
666 '../../src/compiler.h', 666 'compiler.h',
667 '../../src/context-measure.cc', 667 'context-measure.cc',
668 '../../src/context-measure.h', 668 'context-measure.h',
669 '../../src/contexts-inl.h', 669 'contexts-inl.h',
670 '../../src/contexts.cc', 670 'contexts.cc',
671 '../../src/contexts.h', 671 'contexts.h',
672 '../../src/conversions-inl.h', 672 'conversions-inl.h',
673 '../../src/conversions.cc', 673 'conversions.cc',
674 '../../src/conversions.h', 674 'conversions.h',
675 '../../src/counters.cc', 675 'counters.cc',
676 '../../src/counters.h', 676 'counters.h',
677 '../../src/crankshaft/compilation-phase.cc', 677 'crankshaft/compilation-phase.cc',
678 '../../src/crankshaft/compilation-phase.h', 678 'crankshaft/compilation-phase.h',
679 '../../src/crankshaft/hydrogen-alias-analysis.h', 679 'crankshaft/hydrogen-alias-analysis.h',
680 '../../src/crankshaft/hydrogen-bce.cc', 680 'crankshaft/hydrogen-bce.cc',
681 '../../src/crankshaft/hydrogen-bce.h', 681 'crankshaft/hydrogen-bce.h',
682 '../../src/crankshaft/hydrogen-canonicalize.cc', 682 'crankshaft/hydrogen-canonicalize.cc',
683 '../../src/crankshaft/hydrogen-canonicalize.h', 683 'crankshaft/hydrogen-canonicalize.h',
684 '../../src/crankshaft/hydrogen-check-elimination.cc', 684 'crankshaft/hydrogen-check-elimination.cc',
685 '../../src/crankshaft/hydrogen-check-elimination.h', 685 'crankshaft/hydrogen-check-elimination.h',
686 '../../src/crankshaft/hydrogen-dce.cc', 686 'crankshaft/hydrogen-dce.cc',
687 '../../src/crankshaft/hydrogen-dce.h', 687 'crankshaft/hydrogen-dce.h',
688 '../../src/crankshaft/hydrogen-dehoist.cc', 688 'crankshaft/hydrogen-dehoist.cc',
689 '../../src/crankshaft/hydrogen-dehoist.h', 689 'crankshaft/hydrogen-dehoist.h',
690 '../../src/crankshaft/hydrogen-environment-liveness.cc', 690 'crankshaft/hydrogen-environment-liveness.cc',
691 '../../src/crankshaft/hydrogen-environment-liveness.h', 691 'crankshaft/hydrogen-environment-liveness.h',
692 '../../src/crankshaft/hydrogen-escape-analysis.cc', 692 'crankshaft/hydrogen-escape-analysis.cc',
693 '../../src/crankshaft/hydrogen-escape-analysis.h', 693 'crankshaft/hydrogen-escape-analysis.h',
694 '../../src/crankshaft/hydrogen-flow-engine.h', 694 'crankshaft/hydrogen-flow-engine.h',
695 '../../src/crankshaft/hydrogen-gvn.cc', 695 'crankshaft/hydrogen-gvn.cc',
696 '../../src/crankshaft/hydrogen-gvn.h', 696 'crankshaft/hydrogen-gvn.h',
697 '../../src/crankshaft/hydrogen-infer-representation.cc', 697 'crankshaft/hydrogen-infer-representation.cc',
698 '../../src/crankshaft/hydrogen-infer-representation.h', 698 'crankshaft/hydrogen-infer-representation.h',
699 '../../src/crankshaft/hydrogen-infer-types.cc', 699 'crankshaft/hydrogen-infer-types.cc',
700 '../../src/crankshaft/hydrogen-infer-types.h', 700 'crankshaft/hydrogen-infer-types.h',
701 '../../src/crankshaft/hydrogen-instructions.cc', 701 'crankshaft/hydrogen-instructions.cc',
702 '../../src/crankshaft/hydrogen-instructions.h', 702 'crankshaft/hydrogen-instructions.h',
703 '../../src/crankshaft/hydrogen-load-elimination.cc', 703 'crankshaft/hydrogen-load-elimination.cc',
704 '../../src/crankshaft/hydrogen-load-elimination.h', 704 'crankshaft/hydrogen-load-elimination.h',
705 '../../src/crankshaft/hydrogen-mark-deoptimize.cc', 705 'crankshaft/hydrogen-mark-deoptimize.cc',
706 '../../src/crankshaft/hydrogen-mark-deoptimize.h', 706 'crankshaft/hydrogen-mark-deoptimize.h',
707 '../../src/crankshaft/hydrogen-mark-unreachable.cc', 707 'crankshaft/hydrogen-mark-unreachable.cc',
708 '../../src/crankshaft/hydrogen-mark-unreachable.h', 708 'crankshaft/hydrogen-mark-unreachable.h',
709 '../../src/crankshaft/hydrogen-osr.cc', 709 'crankshaft/hydrogen-osr.cc',
710 '../../src/crankshaft/hydrogen-osr.h', 710 'crankshaft/hydrogen-osr.h',
711 '../../src/crankshaft/hydrogen-range-analysis.cc', 711 'crankshaft/hydrogen-range-analysis.cc',
712 '../../src/crankshaft/hydrogen-range-analysis.h', 712 'crankshaft/hydrogen-range-analysis.h',
713 '../../src/crankshaft/hydrogen-redundant-phi.cc', 713 'crankshaft/hydrogen-redundant-phi.cc',
714 '../../src/crankshaft/hydrogen-redundant-phi.h', 714 'crankshaft/hydrogen-redundant-phi.h',
715 '../../src/crankshaft/hydrogen-removable-simulates.cc', 715 'crankshaft/hydrogen-removable-simulates.cc',
716 '../../src/crankshaft/hydrogen-removable-simulates.h', 716 'crankshaft/hydrogen-removable-simulates.h',
717 '../../src/crankshaft/hydrogen-representation-changes.cc', 717 'crankshaft/hydrogen-representation-changes.cc',
718 '../../src/crankshaft/hydrogen-representation-changes.h', 718 'crankshaft/hydrogen-representation-changes.h',
719 '../../src/crankshaft/hydrogen-sce.cc', 719 'crankshaft/hydrogen-sce.cc',
720 '../../src/crankshaft/hydrogen-sce.h', 720 'crankshaft/hydrogen-sce.h',
721 '../../src/crankshaft/hydrogen-store-elimination.cc', 721 'crankshaft/hydrogen-store-elimination.cc',
722 '../../src/crankshaft/hydrogen-store-elimination.h', 722 'crankshaft/hydrogen-store-elimination.h',
723 '../../src/crankshaft/hydrogen-types.cc', 723 'crankshaft/hydrogen-types.cc',
724 '../../src/crankshaft/hydrogen-types.h', 724 'crankshaft/hydrogen-types.h',
725 '../../src/crankshaft/hydrogen-uint32-analysis.cc', 725 'crankshaft/hydrogen-uint32-analysis.cc',
726 '../../src/crankshaft/hydrogen-uint32-analysis.h', 726 'crankshaft/hydrogen-uint32-analysis.h',
727 '../../src/crankshaft/hydrogen.cc', 727 'crankshaft/hydrogen.cc',
728 '../../src/crankshaft/hydrogen.h', 728 'crankshaft/hydrogen.h',
729 '../../src/crankshaft/lithium-allocator-inl.h', 729 'crankshaft/lithium-allocator-inl.h',
730 '../../src/crankshaft/lithium-allocator.cc', 730 'crankshaft/lithium-allocator.cc',
731 '../../src/crankshaft/lithium-allocator.h', 731 'crankshaft/lithium-allocator.h',
732 '../../src/crankshaft/lithium-codegen.cc', 732 'crankshaft/lithium-codegen.cc',
733 '../../src/crankshaft/lithium-codegen.h', 733 'crankshaft/lithium-codegen.h',
734 '../../src/crankshaft/lithium.cc', 734 'crankshaft/lithium.cc',
735 '../../src/crankshaft/lithium.h', 735 'crankshaft/lithium.h',
736 '../../src/crankshaft/lithium-inl.h', 736 'crankshaft/lithium-inl.h',
737 '../../src/crankshaft/typing.cc', 737 'crankshaft/typing.cc',
738 '../../src/crankshaft/typing.h', 738 'crankshaft/typing.h',
739 '../../src/crankshaft/unique.h', 739 'crankshaft/unique.h',
740 '../../src/date.cc', 740 'date.cc',
741 '../../src/date.h', 741 'date.h',
742 '../../src/dateparser-inl.h', 742 'dateparser-inl.h',
743 '../../src/dateparser.cc', 743 'dateparser.cc',
744 '../../src/dateparser.h', 744 'dateparser.h',
745 '../../src/debug/debug-evaluate.cc', 745 'debug/debug-evaluate.cc',
746 '../../src/debug/debug-evaluate.h', 746 'debug/debug-evaluate.h',
747 '../../src/debug/debug-frames.cc', 747 'debug/debug-frames.cc',
748 '../../src/debug/debug-frames.h', 748 'debug/debug-frames.h',
749 '../../src/debug/debug-scopes.cc', 749 'debug/debug-scopes.cc',
750 '../../src/debug/debug-scopes.h', 750 'debug/debug-scopes.h',
751 '../../src/debug/debug.cc', 751 'debug/debug.cc',
752 '../../src/debug/debug.h', 752 'debug/debug.h',
753 '../../src/debug/liveedit.cc', 753 'debug/liveedit.cc',
754 '../../src/debug/liveedit.h', 754 'debug/liveedit.h',
755 '../../src/deoptimizer.cc', 755 'deoptimizer.cc',
756 '../../src/deoptimizer.h', 756 'deoptimizer.h',
757 '../../src/disasm.h', 757 'disasm.h',
758 '../../src/disassembler.cc', 758 'disassembler.cc',
759 '../../src/disassembler.h', 759 'disassembler.h',
760 '../../src/diy-fp.cc', 760 'diy-fp.cc',
761 '../../src/diy-fp.h', 761 'diy-fp.h',
762 '../../src/double.h', 762 'double.h',
763 '../../src/dtoa.cc', 763 'dtoa.cc',
764 '../../src/dtoa.h', 764 'dtoa.h',
765 '../../src/effects.h', 765 'effects.h',
766 '../../src/elements-kind.cc', 766 'elements-kind.cc',
767 '../../src/elements-kind.h', 767 'elements-kind.h',
768 '../../src/elements.cc', 768 'elements.cc',
769 '../../src/elements.h', 769 'elements.h',
770 '../../src/execution.cc', 770 'execution.cc',
771 '../../src/execution.h', 771 'execution.h',
772 '../../src/extensions/externalize-string-extension.cc', 772 'extensions/externalize-string-extension.cc',
773 '../../src/extensions/externalize-string-extension.h', 773 'extensions/externalize-string-extension.h',
774 '../../src/extensions/free-buffer-extension.cc', 774 'extensions/free-buffer-extension.cc',
775 '../../src/extensions/free-buffer-extension.h', 775 'extensions/free-buffer-extension.h',
776 '../../src/extensions/gc-extension.cc', 776 'extensions/gc-extension.cc',
777 '../../src/extensions/gc-extension.h', 777 'extensions/gc-extension.h',
778 '../../src/extensions/statistics-extension.cc', 778 'extensions/statistics-extension.cc',
779 '../../src/extensions/statistics-extension.h', 779 'extensions/statistics-extension.h',
780 '../../src/extensions/trigger-failure-extension.cc', 780 'extensions/trigger-failure-extension.cc',
781 '../../src/extensions/trigger-failure-extension.h', 781 'extensions/trigger-failure-extension.h',
782 '../../src/external-reference-table.cc', 782 'external-reference-table.cc',
783 '../../src/external-reference-table.h', 783 'external-reference-table.h',
784 '../../src/factory.cc', 784 'factory.cc',
785 '../../src/factory.h', 785 'factory.h',
786 '../../src/fast-accessor-assembler.cc', 786 'fast-accessor-assembler.cc',
787 '../../src/fast-accessor-assembler.h', 787 'fast-accessor-assembler.h',
788 '../../src/fast-dtoa.cc', 788 'fast-dtoa.cc',
789 '../../src/fast-dtoa.h', 789 'fast-dtoa.h',
790 '../../src/field-index.h', 790 'field-index.h',
791 '../../src/field-index-inl.h', 791 'field-index-inl.h',
792 '../../src/field-type.cc', 792 'field-type.cc',
793 '../../src/field-type.h', 793 'field-type.h',
794 '../../src/fixed-dtoa.cc', 794 'fixed-dtoa.cc',
795 '../../src/fixed-dtoa.h', 795 'fixed-dtoa.h',
796 '../../src/flag-definitions.h', 796 'flag-definitions.h',
797 '../../src/flags.cc', 797 'flags.cc',
798 '../../src/flags.h', 798 'flags.h',
799 '../../src/frames-inl.h', 799 'frames-inl.h',
800 '../../src/frames.cc', 800 'frames.cc',
801 '../../src/frames.h', 801 'frames.h',
802 '../../src/full-codegen/full-codegen.cc', 802 'full-codegen/full-codegen.cc',
803 '../../src/full-codegen/full-codegen.h', 803 'full-codegen/full-codegen.h',
804 '../../src/futex-emulation.cc', 804 'futex-emulation.cc',
805 '../../src/futex-emulation.h', 805 'futex-emulation.h',
806 '../../src/gdb-jit.cc', 806 'gdb-jit.cc',
807 '../../src/gdb-jit.h', 807 'gdb-jit.h',
808 '../../src/global-handles.cc', 808 'global-handles.cc',
809 '../../src/global-handles.h', 809 'global-handles.h',
810 '../../src/globals.h', 810 'globals.h',
811 '../../src/handles-inl.h', 811 'handles-inl.h',
812 '../../src/handles.cc', 812 'handles.cc',
813 '../../src/handles.h', 813 'handles.h',
814 '../../src/hashmap.h', 814 'hashmap.h',
815 '../../src/heap-symbols.h', 815 'heap-symbols.h',
816 '../../src/heap/array-buffer-tracker.cc', 816 'heap/array-buffer-tracker.cc',
817 '../../src/heap/array-buffer-tracker.h', 817 'heap/array-buffer-tracker.h',
818 '../../src/heap/memory-reducer.cc', 818 'heap/memory-reducer.cc',
819 '../../src/heap/memory-reducer.h', 819 'heap/memory-reducer.h',
820 '../../src/heap/gc-idle-time-handler.cc', 820 'heap/gc-idle-time-handler.cc',
821 '../../src/heap/gc-idle-time-handler.h', 821 'heap/gc-idle-time-handler.h',
822 '../../src/heap/gc-tracer.cc', 822 'heap/gc-tracer.cc',
823 '../../src/heap/gc-tracer.h', 823 'heap/gc-tracer.h',
824 '../../src/heap/heap-inl.h', 824 'heap/heap-inl.h',
825 '../../src/heap/heap.cc', 825 'heap/heap.cc',
826 '../../src/heap/heap.h', 826 'heap/heap.h',
827 '../../src/heap/incremental-marking-inl.h', 827 'heap/incremental-marking-inl.h',
828 '../../src/heap/incremental-marking-job.cc', 828 'heap/incremental-marking-job.cc',
829 '../../src/heap/incremental-marking-job.h', 829 'heap/incremental-marking-job.h',
830 '../../src/heap/incremental-marking.cc', 830 'heap/incremental-marking.cc',
831 '../../src/heap/incremental-marking.h', 831 'heap/incremental-marking.h',
832 '../../src/heap/mark-compact-inl.h', 832 'heap/mark-compact-inl.h',
833 '../../src/heap/mark-compact.cc', 833 'heap/mark-compact.cc',
834 '../../src/heap/mark-compact.h', 834 'heap/mark-compact.h',
835 '../../src/heap/object-stats.cc', 835 'heap/object-stats.cc',
836 '../../src/heap/object-stats.h', 836 'heap/object-stats.h',
837 '../../src/heap/objects-visiting-inl.h', 837 'heap/objects-visiting-inl.h',
838 '../../src/heap/objects-visiting.cc', 838 'heap/objects-visiting.cc',
839 '../../src/heap/objects-visiting.h', 839 'heap/objects-visiting.h',
840 '../../src/heap/page-parallel-job.h', 840 'heap/page-parallel-job.h',
841 '../../src/heap/remembered-set.cc', 841 'heap/remembered-set.cc',
842 '../../src/heap/remembered-set.h', 842 'heap/remembered-set.h',
843 '../../src/heap/scavenge-job.h', 843 'heap/scavenge-job.h',
844 '../../src/heap/scavenge-job.cc', 844 'heap/scavenge-job.cc',
845 '../../src/heap/scavenger-inl.h', 845 'heap/scavenger-inl.h',
846 '../../src/heap/scavenger.cc', 846 'heap/scavenger.cc',
847 '../../src/heap/scavenger.h', 847 'heap/scavenger.h',
848 '../../src/heap/slot-set.h', 848 'heap/slot-set.h',
849 '../../src/heap/spaces-inl.h', 849 'heap/spaces-inl.h',
850 '../../src/heap/spaces.cc', 850 'heap/spaces.cc',
851 '../../src/heap/spaces.h', 851 'heap/spaces.h',
852 '../../src/heap/store-buffer.cc', 852 'heap/store-buffer.cc',
853 '../../src/heap/store-buffer.h', 853 'heap/store-buffer.h',
854 '../../src/i18n.cc', 854 'i18n.cc',
855 '../../src/i18n.h', 855 'i18n.h',
856 '../../src/icu_util.cc', 856 'icu_util.cc',
857 '../../src/icu_util.h', 857 'icu_util.h',
858 '../../src/ic/access-compiler.cc', 858 'ic/access-compiler.cc',
859 '../../src/ic/access-compiler.h', 859 'ic/access-compiler.h',
860 '../../src/ic/call-optimization.cc', 860 'ic/call-optimization.cc',
861 '../../src/ic/call-optimization.h', 861 'ic/call-optimization.h',
862 '../../src/ic/handler-compiler.cc', 862 'ic/handler-compiler.cc',
863 '../../src/ic/handler-compiler.h', 863 'ic/handler-compiler.h',
864 '../../src/ic/ic-inl.h', 864 'ic/ic-inl.h',
865 '../../src/ic/ic-state.cc', 865 'ic/ic-state.cc',
866 '../../src/ic/ic-state.h', 866 'ic/ic-state.h',
867 '../../src/ic/ic.cc', 867 'ic/ic.cc',
868 '../../src/ic/ic.h', 868 'ic/ic.h',
869 '../../src/ic/ic-compiler.cc', 869 'ic/ic-compiler.cc',
870 '../../src/ic/ic-compiler.h', 870 'ic/ic-compiler.h',
871 '../../src/identity-map.cc', 871 'identity-map.cc',
872 '../../src/identity-map.h', 872 'identity-map.h',
873 '../../src/interface-descriptors.cc', 873 'interface-descriptors.cc',
874 '../../src/interface-descriptors.h', 874 'interface-descriptors.h',
875 '../../src/interpreter/bytecodes.cc', 875 'interpreter/bytecodes.cc',
876 '../../src/interpreter/bytecodes.h', 876 'interpreter/bytecodes.h',
877 '../../src/interpreter/bytecode-array-builder.cc', 877 'interpreter/bytecode-array-builder.cc',
878 '../../src/interpreter/bytecode-array-builder.h', 878 'interpreter/bytecode-array-builder.h',
879 '../../src/interpreter/bytecode-array-iterator.cc', 879 'interpreter/bytecode-array-iterator.cc',
880 '../../src/interpreter/bytecode-array-iterator.h', 880 'interpreter/bytecode-array-iterator.h',
881 '../../src/interpreter/bytecode-register-allocator.cc', 881 'interpreter/bytecode-register-allocator.cc',
882 '../../src/interpreter/bytecode-register-allocator.h', 882 'interpreter/bytecode-register-allocator.h',
883 '../../src/interpreter/bytecode-generator.cc', 883 'interpreter/bytecode-generator.cc',
884 '../../src/interpreter/bytecode-generator.h', 884 'interpreter/bytecode-generator.h',
885 '../../src/interpreter/bytecode-traits.h', 885 'interpreter/bytecode-traits.h',
886 '../../src/interpreter/constant-array-builder.cc', 886 'interpreter/constant-array-builder.cc',
887 '../../src/interpreter/constant-array-builder.h', 887 'interpreter/constant-array-builder.h',
888 '../../src/interpreter/control-flow-builders.cc', 888 'interpreter/control-flow-builders.cc',
889 '../../src/interpreter/control-flow-builders.h', 889 'interpreter/control-flow-builders.h',
890 '../../src/interpreter/handler-table-builder.cc', 890 'interpreter/handler-table-builder.cc',
891 '../../src/interpreter/handler-table-builder.h', 891 'interpreter/handler-table-builder.h',
892 '../../src/interpreter/interpreter.cc', 892 'interpreter/interpreter.cc',
893 '../../src/interpreter/interpreter.h', 893 'interpreter/interpreter.h',
894 '../../src/interpreter/interpreter-assembler.cc', 894 'interpreter/interpreter-assembler.cc',
895 '../../src/interpreter/interpreter-assembler.h', 895 'interpreter/interpreter-assembler.h',
896 '../../src/interpreter/interpreter-intrinsics.cc', 896 'interpreter/interpreter-intrinsics.cc',
897 '../../src/interpreter/interpreter-intrinsics.h', 897 'interpreter/interpreter-intrinsics.h',
898 '../../src/interpreter/source-position-table.cc', 898 'interpreter/source-position-table.cc',
899 '../../src/interpreter/source-position-table.h', 899 'interpreter/source-position-table.h',
900 '../../src/isolate-inl.h', 900 'isolate-inl.h',
901 '../../src/isolate.cc', 901 'isolate.cc',
902 '../../src/isolate.h', 902 'isolate.h',
903 '../../src/json-parser.h', 903 'json-parser.h',
904 '../../src/json-stringifier.h', 904 'json-stringifier.h',
905 '../../src/keys.h', 905 'keys.h',
906 '../../src/keys.cc', 906 'keys.cc',
907 '../../src/layout-descriptor-inl.h', 907 'layout-descriptor-inl.h',
908 '../../src/layout-descriptor.cc', 908 'layout-descriptor.cc',
909 '../../src/layout-descriptor.h', 909 'layout-descriptor.h',
910 '../../src/list-inl.h', 910 'list-inl.h',
911 '../../src/list.h', 911 'list.h',
912 '../../src/locked-queue-inl.h', 912 'locked-queue-inl.h',
913 '../../src/locked-queue.h', 913 'locked-queue.h',
914 '../../src/log-inl.h', 914 'log-inl.h',
915 '../../src/log-utils.cc', 915 'log-utils.cc',
916 '../../src/log-utils.h', 916 'log-utils.h',
917 '../../src/log.cc', 917 'log.cc',
918 '../../src/log.h', 918 'log.h',
919 '../../src/lookup.cc', 919 'lookup.cc',
920 '../../src/lookup.h', 920 'lookup.h',
921 '../../src/macro-assembler.h', 921 'macro-assembler.h',
922 '../../src/machine-type.cc', 922 'machine-type.cc',
923 '../../src/machine-type.h', 923 'machine-type.h',
924 '../../src/messages.cc', 924 'messages.cc',
925 '../../src/messages.h', 925 'messages.h',
926 '../../src/msan.h', 926 'msan.h',
927 '../../src/objects-body-descriptors-inl.h', 927 'objects-body-descriptors-inl.h',
928 '../../src/objects-body-descriptors.h', 928 'objects-body-descriptors.h',
929 '../../src/objects-debug.cc', 929 'objects-debug.cc',
930 '../../src/objects-inl.h', 930 'objects-inl.h',
931 '../../src/objects-printer.cc', 931 'objects-printer.cc',
932 '../../src/objects.cc', 932 'objects.cc',
933 '../../src/objects.h', 933 'objects.h',
934 '../../src/optimizing-compile-dispatcher.cc', 934 'optimizing-compile-dispatcher.cc',
935 '../../src/optimizing-compile-dispatcher.h', 935 'optimizing-compile-dispatcher.h',
936 '../../src/ostreams.cc', 936 'ostreams.cc',
937 '../../src/ostreams.h', 937 'ostreams.h',
938 '../../src/parsing/expression-classifier.h', 938 'parsing/expression-classifier.h',
939 '../../src/parsing/func-name-inferrer.cc', 939 'parsing/func-name-inferrer.cc',
940 '../../src/parsing/func-name-inferrer.h', 940 'parsing/func-name-inferrer.h',
941 '../../src/parsing/parameter-initializer-rewriter.cc', 941 'parsing/parameter-initializer-rewriter.cc',
942 '../../src/parsing/parameter-initializer-rewriter.h', 942 'parsing/parameter-initializer-rewriter.h',
943 '../../src/parsing/parser-base.h', 943 'parsing/parser-base.h',
944 '../../src/parsing/parser.cc', 944 'parsing/parser.cc',
945 '../../src/parsing/parser.h', 945 'parsing/parser.h',
946 '../../src/parsing/pattern-rewriter.cc', 946 'parsing/pattern-rewriter.cc',
947 '../../src/parsing/preparse-data-format.h', 947 'parsing/preparse-data-format.h',
948 '../../src/parsing/preparse-data.cc', 948 'parsing/preparse-data.cc',
949 '../../src/parsing/preparse-data.h', 949 'parsing/preparse-data.h',
950 '../../src/parsing/preparser.cc', 950 'parsing/preparser.cc',
951 '../../src/parsing/preparser.h', 951 'parsing/preparser.h',
952 '../../src/parsing/rewriter.cc', 952 'parsing/rewriter.cc',
953 '../../src/parsing/rewriter.h', 953 'parsing/rewriter.h',
954 '../../src/parsing/scanner-character-streams.cc', 954 'parsing/scanner-character-streams.cc',
955 '../../src/parsing/scanner-character-streams.h', 955 'parsing/scanner-character-streams.h',
956 '../../src/parsing/scanner.cc', 956 'parsing/scanner.cc',
957 '../../src/parsing/scanner.h', 957 'parsing/scanner.h',
958 '../../src/parsing/token.cc', 958 'parsing/token.cc',
959 '../../src/parsing/token.h', 959 'parsing/token.h',
960 '../../src/pending-compilation-error-handler.cc', 960 'pending-compilation-error-handler.cc',
961 '../../src/pending-compilation-error-handler.h', 961 'pending-compilation-error-handler.h',
962 '../../src/perf-jit.cc', 962 'perf-jit.cc',
963 '../../src/perf-jit.h', 963 'perf-jit.h',
964 '../../src/profiler/allocation-tracker.cc', 964 'profiler/allocation-tracker.cc',
965 '../../src/profiler/allocation-tracker.h', 965 'profiler/allocation-tracker.h',
966 '../../src/profiler/circular-queue-inl.h', 966 'profiler/circular-queue-inl.h',
967 '../../src/profiler/circular-queue.h', 967 'profiler/circular-queue.h',
968 '../../src/profiler/cpu-profiler-inl.h', 968 'profiler/cpu-profiler-inl.h',
969 '../../src/profiler/cpu-profiler.cc', 969 'profiler/cpu-profiler.cc',
970 '../../src/profiler/cpu-profiler.h', 970 'profiler/cpu-profiler.h',
971 '../../src/profiler/heap-profiler.cc', 971 'profiler/heap-profiler.cc',
972 '../../src/profiler/heap-profiler.h', 972 'profiler/heap-profiler.h',
973 '../../src/profiler/heap-snapshot-generator-inl.h', 973 'profiler/heap-snapshot-generator-inl.h',
974 '../../src/profiler/heap-snapshot-generator.cc', 974 'profiler/heap-snapshot-generator.cc',
975 '../../src/profiler/heap-snapshot-generator.h', 975 'profiler/heap-snapshot-generator.h',
976 '../../src/profiler/profile-generator-inl.h', 976 'profiler/profile-generator-inl.h',
977 '../../src/profiler/profile-generator.cc', 977 'profiler/profile-generator.cc',
978 '../../src/profiler/profile-generator.h', 978 'profiler/profile-generator.h',
979 '../../src/profiler/sampler.cc', 979 'profiler/sampler.cc',
980 '../../src/profiler/sampler.h', 980 'profiler/sampler.h',
981 '../../src/profiler/sampling-heap-profiler.cc', 981 'profiler/sampling-heap-profiler.cc',
982 '../../src/profiler/sampling-heap-profiler.h', 982 'profiler/sampling-heap-profiler.h',
983 '../../src/profiler/strings-storage.cc', 983 'profiler/strings-storage.cc',
984 '../../src/profiler/strings-storage.h', 984 'profiler/strings-storage.h',
985 '../../src/profiler/unbound-queue-inl.h', 985 'profiler/unbound-queue-inl.h',
986 '../../src/profiler/unbound-queue.h', 986 'profiler/unbound-queue.h',
987 '../../src/property-descriptor.cc', 987 'property-descriptor.cc',
988 '../../src/property-descriptor.h', 988 'property-descriptor.h',
989 '../../src/property-details.h', 989 'property-details.h',
990 '../../src/property.cc', 990 'property.cc',
991 '../../src/property.h', 991 'property.h',
992 '../../src/prototype.h', 992 'prototype.h',
993 '../../src/regexp/bytecodes-irregexp.h', 993 'regexp/bytecodes-irregexp.h',
994 '../../src/regexp/interpreter-irregexp.cc', 994 'regexp/interpreter-irregexp.cc',
995 '../../src/regexp/interpreter-irregexp.h', 995 'regexp/interpreter-irregexp.h',
996 '../../src/regexp/jsregexp-inl.h', 996 'regexp/jsregexp-inl.h',
997 '../../src/regexp/jsregexp.cc', 997 'regexp/jsregexp.cc',
998 '../../src/regexp/jsregexp.h', 998 'regexp/jsregexp.h',
999 '../../src/regexp/regexp-ast.cc', 999 'regexp/regexp-ast.cc',
1000 '../../src/regexp/regexp-ast.h', 1000 'regexp/regexp-ast.h',
1001 '../../src/regexp/regexp-macro-assembler-irregexp-inl.h', 1001 'regexp/regexp-macro-assembler-irregexp-inl.h',
1002 '../../src/regexp/regexp-macro-assembler-irregexp.cc', 1002 'regexp/regexp-macro-assembler-irregexp.cc',
1003 '../../src/regexp/regexp-macro-assembler-irregexp.h', 1003 'regexp/regexp-macro-assembler-irregexp.h',
1004 '../../src/regexp/regexp-macro-assembler-tracer.cc', 1004 'regexp/regexp-macro-assembler-tracer.cc',
1005 '../../src/regexp/regexp-macro-assembler-tracer.h', 1005 'regexp/regexp-macro-assembler-tracer.h',
1006 '../../src/regexp/regexp-macro-assembler.cc', 1006 'regexp/regexp-macro-assembler.cc',
1007 '../../src/regexp/regexp-macro-assembler.h', 1007 'regexp/regexp-macro-assembler.h',
1008 '../../src/regexp/regexp-parser.cc', 1008 'regexp/regexp-parser.cc',
1009 '../../src/regexp/regexp-parser.h', 1009 'regexp/regexp-parser.h',
1010 '../../src/regexp/regexp-stack.cc', 1010 'regexp/regexp-stack.cc',
1011 '../../src/regexp/regexp-stack.h', 1011 'regexp/regexp-stack.h',
1012 '../../src/register-configuration.cc', 1012 'register-configuration.cc',
1013 '../../src/register-configuration.h', 1013 'register-configuration.h',
1014 '../../src/runtime-profiler.cc', 1014 'runtime-profiler.cc',
1015 '../../src/runtime-profiler.h', 1015 'runtime-profiler.h',
1016 '../../src/runtime/runtime-array.cc', 1016 'runtime/runtime-array.cc',
1017 '../../src/runtime/runtime-atomics.cc', 1017 'runtime/runtime-atomics.cc',
1018 '../../src/runtime/runtime-classes.cc', 1018 'runtime/runtime-classes.cc',
1019 '../../src/runtime/runtime-collections.cc', 1019 'runtime/runtime-collections.cc',
1020 '../../src/runtime/runtime-compiler.cc', 1020 'runtime/runtime-compiler.cc',
1021 '../../src/runtime/runtime-date.cc', 1021 'runtime/runtime-date.cc',
1022 '../../src/runtime/runtime-debug.cc', 1022 'runtime/runtime-debug.cc',
1023 '../../src/runtime/runtime-forin.cc', 1023 'runtime/runtime-forin.cc',
1024 '../../src/runtime/runtime-function.cc', 1024 'runtime/runtime-function.cc',
1025 '../../src/runtime/runtime-futex.cc', 1025 'runtime/runtime-futex.cc',
1026 '../../src/runtime/runtime-generator.cc', 1026 'runtime/runtime-generator.cc',
1027 '../../src/runtime/runtime-i18n.cc', 1027 'runtime/runtime-i18n.cc',
1028 '../../src/runtime/runtime-internal.cc', 1028 'runtime/runtime-internal.cc',
1029 '../../src/runtime/runtime-interpreter.cc', 1029 'runtime/runtime-interpreter.cc',
1030 '../../src/runtime/runtime-json.cc', 1030 'runtime/runtime-json.cc',
1031 '../../src/runtime/runtime-literals.cc', 1031 'runtime/runtime-literals.cc',
1032 '../../src/runtime/runtime-liveedit.cc', 1032 'runtime/runtime-liveedit.cc',
1033 '../../src/runtime/runtime-maths.cc', 1033 'runtime/runtime-maths.cc',
1034 '../../src/runtime/runtime-numbers.cc', 1034 'runtime/runtime-numbers.cc',
1035 '../../src/runtime/runtime-object.cc', 1035 'runtime/runtime-object.cc',
1036 '../../src/runtime/runtime-operators.cc', 1036 'runtime/runtime-operators.cc',
1037 '../../src/runtime/runtime-proxy.cc', 1037 'runtime/runtime-proxy.cc',
1038 '../../src/runtime/runtime-regexp.cc', 1038 'runtime/runtime-regexp.cc',
1039 '../../src/runtime/runtime-scopes.cc', 1039 'runtime/runtime-scopes.cc',
1040 '../../src/runtime/runtime-simd.cc', 1040 'runtime/runtime-simd.cc',
1041 '../../src/runtime/runtime-strings.cc', 1041 'runtime/runtime-strings.cc',
1042 '../../src/runtime/runtime-symbol.cc', 1042 'runtime/runtime-symbol.cc',
1043 '../../src/runtime/runtime-test.cc', 1043 'runtime/runtime-test.cc',
1044 '../../src/runtime/runtime-typedarray.cc', 1044 'runtime/runtime-typedarray.cc',
1045 '../../src/runtime/runtime-uri.cc', 1045 'runtime/runtime-uri.cc',
1046 '../../src/runtime/runtime-utils.h', 1046 'runtime/runtime-utils.h',
1047 '../../src/runtime/runtime.cc', 1047 'runtime/runtime.cc',
1048 '../../src/runtime/runtime.h', 1048 'runtime/runtime.h',
1049 '../../src/safepoint-table.cc', 1049 'safepoint-table.cc',
1050 '../../src/safepoint-table.h', 1050 'safepoint-table.h',
1051 '../../src/signature.h', 1051 'signature.h',
1052 '../../src/simulator.h', 1052 'simulator.h',
1053 '../../src/small-pointer-list.h', 1053 'small-pointer-list.h',
1054 '../../src/snapshot/code-serializer.cc', 1054 'snapshot/code-serializer.cc',
1055 '../../src/snapshot/code-serializer.h', 1055 'snapshot/code-serializer.h',
1056 '../../src/snapshot/deserializer.cc', 1056 'snapshot/deserializer.cc',
1057 '../../src/snapshot/deserializer.h', 1057 'snapshot/deserializer.h',
1058 '../../src/snapshot/natives.h', 1058 'snapshot/natives.h',
1059 '../../src/snapshot/natives-common.cc', 1059 'snapshot/natives-common.cc',
1060 '../../src/snapshot/partial-serializer.cc', 1060 'snapshot/partial-serializer.cc',
1061 '../../src/snapshot/partial-serializer.h', 1061 'snapshot/partial-serializer.h',
1062 '../../src/snapshot/serializer.cc', 1062 'snapshot/serializer.cc',
1063 '../../src/snapshot/serializer.h', 1063 'snapshot/serializer.h',
1064 '../../src/snapshot/serializer-common.cc', 1064 'snapshot/serializer-common.cc',
1065 '../../src/snapshot/serializer-common.h', 1065 'snapshot/serializer-common.h',
1066 '../../src/snapshot/snapshot.h', 1066 'snapshot/snapshot.h',
1067 '../../src/snapshot/snapshot-common.cc', 1067 'snapshot/snapshot-common.cc',
1068 '../../src/snapshot/snapshot-source-sink.cc', 1068 'snapshot/snapshot-source-sink.cc',
1069 '../../src/snapshot/snapshot-source-sink.h', 1069 'snapshot/snapshot-source-sink.h',
1070 '../../src/snapshot/startup-serializer.cc', 1070 'snapshot/startup-serializer.cc',
1071 '../../src/snapshot/startup-serializer.h', 1071 'snapshot/startup-serializer.h',
1072 '../../src/source-position.h', 1072 'source-position.h',
1073 '../../src/splay-tree.h', 1073 'splay-tree.h',
1074 '../../src/splay-tree-inl.h', 1074 'splay-tree-inl.h',
1075 '../../src/startup-data-util.cc', 1075 'startup-data-util.cc',
1076 '../../src/startup-data-util.h', 1076 'startup-data-util.h',
1077 '../../src/string-builder.cc', 1077 'string-builder.cc',
1078 '../../src/string-builder.h', 1078 'string-builder.h',
1079 '../../src/string-search.h', 1079 'string-search.h',
1080 '../../src/string-stream.cc', 1080 'string-stream.cc',
1081 '../../src/string-stream.h', 1081 'string-stream.h',
1082 '../../src/strtod.cc', 1082 'strtod.cc',
1083 '../../src/strtod.h', 1083 'strtod.h',
1084 '../../src/ic/stub-cache.cc', 1084 'ic/stub-cache.cc',
1085 '../../src/ic/stub-cache.h', 1085 'ic/stub-cache.h',
1086 '../../src/tracing/trace-event.cc', 1086 'tracing/trace-event.cc',
1087 '../../src/tracing/trace-event.h', 1087 'tracing/trace-event.h',
1088 '../../src/transitions-inl.h', 1088 'transitions-inl.h',
1089 '../../src/transitions.cc', 1089 'transitions.cc',
1090 '../../src/transitions.h', 1090 'transitions.h',
1091 '../../src/type-cache.cc', 1091 'type-cache.cc',
1092 '../../src/type-cache.h', 1092 'type-cache.h',
1093 '../../src/type-feedback-vector-inl.h', 1093 'type-feedback-vector-inl.h',
1094 '../../src/type-feedback-vector.cc', 1094 'type-feedback-vector.cc',
1095 '../../src/type-feedback-vector.h', 1095 'type-feedback-vector.h',
1096 '../../src/type-info.cc', 1096 'type-info.cc',
1097 '../../src/type-info.h', 1097 'type-info.h',
1098 '../../src/types.cc', 1098 'types.cc',
1099 '../../src/types.h', 1099 'types.h',
1100 '../../src/typing-asm.cc', 1100 'typing-asm.cc',
1101 '../../src/typing-asm.h', 1101 'typing-asm.h',
1102 '../../src/typing-reset.cc', 1102 'typing-reset.cc',
1103 '../../src/typing-reset.h', 1103 'typing-reset.h',
1104 '../../src/unicode-inl.h', 1104 'unicode-inl.h',
1105 '../../src/unicode.cc', 1105 'unicode.cc',
1106 '../../src/unicode.h', 1106 'unicode.h',
1107 '../../src/unicode-cache-inl.h', 1107 'unicode-cache-inl.h',
1108 '../../src/unicode-cache.h', 1108 'unicode-cache.h',
1109 '../../src/unicode-decoder.cc', 1109 'unicode-decoder.cc',
1110 '../../src/unicode-decoder.h', 1110 'unicode-decoder.h',
1111 '../../src/utils-inl.h', 1111 'utils-inl.h',
1112 '../../src/utils.cc', 1112 'utils.cc',
1113 '../../src/utils.h', 1113 'utils.h',
1114 '../../src/v8.cc', 1114 'v8.cc',
1115 '../../src/v8.h', 1115 'v8.h',
1116 '../../src/v8memory.h', 1116 'v8memory.h',
1117 '../../src/v8threads.cc', 1117 'v8threads.cc',
1118 '../../src/v8threads.h', 1118 'v8threads.h',
1119 '../../src/vector.h', 1119 'vector.h',
1120 '../../src/version.cc', 1120 'version.cc',
1121 '../../src/version.h', 1121 'version.h',
1122 '../../src/vm-state-inl.h', 1122 'vm-state-inl.h',
1123 '../../src/vm-state.h', 1123 'vm-state.h',
1124 '../../src/wasm/switch-logic.h', 1124 'wasm/switch-logic.h',
1125 '../../src/wasm/switch-logic.cc', 1125 'wasm/switch-logic.cc',
1126 '../../src/wasm/asm-wasm-builder.cc', 1126 'wasm/asm-wasm-builder.cc',
1127 '../../src/wasm/asm-wasm-builder.h', 1127 'wasm/asm-wasm-builder.h',
1128 '../../src/wasm/ast-decoder.cc', 1128 'wasm/ast-decoder.cc',
1129 '../../src/wasm/ast-decoder.h', 1129 'wasm/ast-decoder.h',
1130 '../../src/wasm/decoder.h', 1130 'wasm/decoder.h',
1131 '../../src/wasm/encoder.cc', 1131 'wasm/encoder.cc',
1132 '../../src/wasm/encoder.h', 1132 'wasm/encoder.h',
1133 '../../src/wasm/wasm-external-refs.cc', 1133 'wasm/wasm-external-refs.cc',
1134 '../../src/wasm/wasm-external-refs.h', 1134 'wasm/wasm-external-refs.h',
1135 '../../src/wasm/leb-helper.h', 1135 'wasm/leb-helper.h',
1136 '../../src/wasm/module-decoder.cc', 1136 'wasm/module-decoder.cc',
1137 '../../src/wasm/module-decoder.h', 1137 'wasm/module-decoder.h',
1138 '../../src/wasm/wasm-js.cc', 1138 'wasm/wasm-js.cc',
1139 '../../src/wasm/wasm-js.h', 1139 'wasm/wasm-js.h',
1140 '../../src/wasm/wasm-macro-gen.h', 1140 'wasm/wasm-macro-gen.h',
1141 '../../src/wasm/wasm-module.cc', 1141 'wasm/wasm-module.cc',
1142 '../../src/wasm/wasm-module.h', 1142 'wasm/wasm-module.h',
1143 '../../src/wasm/wasm-opcodes.cc', 1143 'wasm/wasm-opcodes.cc',
1144 '../../src/wasm/wasm-opcodes.h', 1144 'wasm/wasm-opcodes.h',
1145 '../../src/wasm/wasm-result.cc', 1145 'wasm/wasm-result.cc',
1146 '../../src/wasm/wasm-result.h', 1146 'wasm/wasm-result.h',
1147 '../../src/zone.cc', 1147 'zone.cc',
1148 '../../src/zone.h', 1148 'zone.h',
1149 '../../src/zone-allocator.h', 1149 'zone-allocator.h',
1150 '../../src/zone-containers.h', 1150 'zone-containers.h',
1151 '../../src/third_party/fdlibm/fdlibm.cc', 1151 'third_party/fdlibm/fdlibm.cc',
1152 '../../src/third_party/fdlibm/fdlibm.h', 1152 'third_party/fdlibm/fdlibm.h',
1153 ], 1153 ],
1154 'conditions': [ 1154 'conditions': [
1155 ['want_separate_host_toolset==1', { 1155 ['want_separate_host_toolset==1', {
1156 'toolsets': ['host', 'target'], 1156 'toolsets': ['host', 'target'],
1157 }, { 1157 }, {
1158 'toolsets': ['target'], 1158 'toolsets': ['target'],
1159 }], 1159 }],
1160 ['v8_target_arch=="arm"', { 1160 ['v8_target_arch=="arm"', {
1161 'sources': [ ### gcmole(arch:arm) ### 1161 'sources': [ ### gcmole(arch:arm) ###
1162 '../../src/arm/assembler-arm-inl.h', 1162 'arm/assembler-arm-inl.h',
1163 '../../src/arm/assembler-arm.cc', 1163 'arm/assembler-arm.cc',
1164 '../../src/arm/assembler-arm.h', 1164 'arm/assembler-arm.h',
1165 '../../src/arm/builtins-arm.cc', 1165 'arm/builtins-arm.cc',
1166 '../../src/arm/code-stubs-arm.cc', 1166 'arm/code-stubs-arm.cc',
1167 '../../src/arm/code-stubs-arm.h', 1167 'arm/code-stubs-arm.h',
1168 '../../src/arm/codegen-arm.cc', 1168 'arm/codegen-arm.cc',
1169 '../../src/arm/codegen-arm.h', 1169 'arm/codegen-arm.h',
1170 '../../src/arm/constants-arm.h', 1170 'arm/constants-arm.h',
1171 '../../src/arm/constants-arm.cc', 1171 'arm/constants-arm.cc',
1172 '../../src/arm/cpu-arm.cc', 1172 'arm/cpu-arm.cc',
1173 '../../src/arm/deoptimizer-arm.cc', 1173 'arm/deoptimizer-arm.cc',
1174 '../../src/arm/disasm-arm.cc', 1174 'arm/disasm-arm.cc',
1175 '../../src/arm/frames-arm.cc', 1175 'arm/frames-arm.cc',
1176 '../../src/arm/frames-arm.h', 1176 'arm/frames-arm.h',
1177 '../../src/arm/interface-descriptors-arm.cc', 1177 'arm/interface-descriptors-arm.cc',
1178 '../../src/arm/interface-descriptors-arm.h', 1178 'arm/interface-descriptors-arm.h',
1179 '../../src/arm/macro-assembler-arm.cc', 1179 'arm/macro-assembler-arm.cc',
1180 '../../src/arm/macro-assembler-arm.h', 1180 'arm/macro-assembler-arm.h',
1181 '../../src/arm/simulator-arm.cc', 1181 'arm/simulator-arm.cc',
1182 '../../src/arm/simulator-arm.h', 1182 'arm/simulator-arm.h',
1183 '../../src/compiler/arm/code-generator-arm.cc', 1183 'compiler/arm/code-generator-arm.cc',
1184 '../../src/compiler/arm/instruction-codes-arm.h', 1184 'compiler/arm/instruction-codes-arm.h',
1185 '../../src/compiler/arm/instruction-scheduler-arm.cc', 1185 'compiler/arm/instruction-scheduler-arm.cc',
1186 '../../src/compiler/arm/instruction-selector-arm.cc', 1186 'compiler/arm/instruction-selector-arm.cc',
1187 '../../src/crankshaft/arm/lithium-arm.cc', 1187 'crankshaft/arm/lithium-arm.cc',
1188 '../../src/crankshaft/arm/lithium-arm.h', 1188 'crankshaft/arm/lithium-arm.h',
1189 '../../src/crankshaft/arm/lithium-codegen-arm.cc', 1189 'crankshaft/arm/lithium-codegen-arm.cc',
1190 '../../src/crankshaft/arm/lithium-codegen-arm.h', 1190 'crankshaft/arm/lithium-codegen-arm.h',
1191 '../../src/crankshaft/arm/lithium-gap-resolver-arm.cc', 1191 'crankshaft/arm/lithium-gap-resolver-arm.cc',
1192 '../../src/crankshaft/arm/lithium-gap-resolver-arm.h', 1192 'crankshaft/arm/lithium-gap-resolver-arm.h',
1193 '../../src/debug/arm/debug-arm.cc', 1193 'debug/arm/debug-arm.cc',
1194 '../../src/full-codegen/arm/full-codegen-arm.cc', 1194 'full-codegen/arm/full-codegen-arm.cc',
1195 '../../src/ic/arm/access-compiler-arm.cc', 1195 'ic/arm/access-compiler-arm.cc',
1196 '../../src/ic/arm/handler-compiler-arm.cc', 1196 'ic/arm/handler-compiler-arm.cc',
1197 '../../src/ic/arm/ic-arm.cc', 1197 'ic/arm/ic-arm.cc',
1198 '../../src/ic/arm/ic-compiler-arm.cc', 1198 'ic/arm/ic-compiler-arm.cc',
1199 '../../src/ic/arm/stub-cache-arm.cc', 1199 'ic/arm/stub-cache-arm.cc',
1200 '../../src/regexp/arm/regexp-macro-assembler-arm.cc', 1200 'regexp/arm/regexp-macro-assembler-arm.cc',
1201 '../../src/regexp/arm/regexp-macro-assembler-arm.h', 1201 'regexp/arm/regexp-macro-assembler-arm.h',
1202 ], 1202 ],
1203 }], 1203 }],
1204 ['v8_target_arch=="arm64"', { 1204 ['v8_target_arch=="arm64"', {
1205 'sources': [ ### gcmole(arch:arm64) ### 1205 'sources': [ ### gcmole(arch:arm64) ###
1206 '../../src/arm64/assembler-arm64.cc', 1206 'arm64/assembler-arm64.cc',
1207 '../../src/arm64/assembler-arm64.h', 1207 'arm64/assembler-arm64.h',
1208 '../../src/arm64/assembler-arm64-inl.h', 1208 'arm64/assembler-arm64-inl.h',
1209 '../../src/arm64/builtins-arm64.cc', 1209 'arm64/builtins-arm64.cc',
1210 '../../src/arm64/codegen-arm64.cc', 1210 'arm64/codegen-arm64.cc',
1211 '../../src/arm64/codegen-arm64.h', 1211 'arm64/codegen-arm64.h',
1212 '../../src/arm64/code-stubs-arm64.cc', 1212 'arm64/code-stubs-arm64.cc',
1213 '../../src/arm64/code-stubs-arm64.h', 1213 'arm64/code-stubs-arm64.h',
1214 '../../src/arm64/constants-arm64.h', 1214 'arm64/constants-arm64.h',
1215 '../../src/arm64/cpu-arm64.cc', 1215 'arm64/cpu-arm64.cc',
1216 '../../src/arm64/decoder-arm64.cc', 1216 'arm64/decoder-arm64.cc',
1217 '../../src/arm64/decoder-arm64.h', 1217 'arm64/decoder-arm64.h',
1218 '../../src/arm64/decoder-arm64-inl.h', 1218 'arm64/decoder-arm64-inl.h',
1219 '../../src/arm64/deoptimizer-arm64.cc', 1219 'arm64/deoptimizer-arm64.cc',
1220 '../../src/arm64/disasm-arm64.cc', 1220 'arm64/disasm-arm64.cc',
1221 '../../src/arm64/disasm-arm64.h', 1221 'arm64/disasm-arm64.h',
1222 '../../src/arm64/frames-arm64.cc', 1222 'arm64/frames-arm64.cc',
1223 '../../src/arm64/frames-arm64.h', 1223 'arm64/frames-arm64.h',
1224 '../../src/arm64/instructions-arm64.cc', 1224 'arm64/instructions-arm64.cc',
1225 '../../src/arm64/instructions-arm64.h', 1225 'arm64/instructions-arm64.h',
1226 '../../src/arm64/instrument-arm64.cc', 1226 'arm64/instrument-arm64.cc',
1227 '../../src/arm64/instrument-arm64.h', 1227 'arm64/instrument-arm64.h',
1228 '../../src/arm64/interface-descriptors-arm64.cc', 1228 'arm64/interface-descriptors-arm64.cc',
1229 '../../src/arm64/interface-descriptors-arm64.h', 1229 'arm64/interface-descriptors-arm64.h',
1230 '../../src/arm64/macro-assembler-arm64.cc', 1230 'arm64/macro-assembler-arm64.cc',
1231 '../../src/arm64/macro-assembler-arm64.h', 1231 'arm64/macro-assembler-arm64.h',
1232 '../../src/arm64/macro-assembler-arm64-inl.h', 1232 'arm64/macro-assembler-arm64-inl.h',
1233 '../../src/arm64/simulator-arm64.cc', 1233 'arm64/simulator-arm64.cc',
1234 '../../src/arm64/simulator-arm64.h', 1234 'arm64/simulator-arm64.h',
1235 '../../src/arm64/utils-arm64.cc', 1235 'arm64/utils-arm64.cc',
1236 '../../src/arm64/utils-arm64.h', 1236 'arm64/utils-arm64.h',
1237 '../../src/compiler/arm64/code-generator-arm64.cc', 1237 'compiler/arm64/code-generator-arm64.cc',
1238 '../../src/compiler/arm64/instruction-codes-arm64.h', 1238 'compiler/arm64/instruction-codes-arm64.h',
1239 '../../src/compiler/arm64/instruction-scheduler-arm64.cc', 1239 'compiler/arm64/instruction-scheduler-arm64.cc',
1240 '../../src/compiler/arm64/instruction-selector-arm64.cc', 1240 'compiler/arm64/instruction-selector-arm64.cc',
1241 '../../src/crankshaft/arm64/delayed-masm-arm64.cc', 1241 'crankshaft/arm64/delayed-masm-arm64.cc',
1242 '../../src/crankshaft/arm64/delayed-masm-arm64.h', 1242 'crankshaft/arm64/delayed-masm-arm64.h',
1243 '../../src/crankshaft/arm64/delayed-masm-arm64-inl.h', 1243 'crankshaft/arm64/delayed-masm-arm64-inl.h',
1244 '../../src/crankshaft/arm64/lithium-arm64.cc', 1244 'crankshaft/arm64/lithium-arm64.cc',
1245 '../../src/crankshaft/arm64/lithium-arm64.h', 1245 'crankshaft/arm64/lithium-arm64.h',
1246 '../../src/crankshaft/arm64/lithium-codegen-arm64.cc', 1246 'crankshaft/arm64/lithium-codegen-arm64.cc',
1247 '../../src/crankshaft/arm64/lithium-codegen-arm64.h', 1247 'crankshaft/arm64/lithium-codegen-arm64.h',
1248 '../../src/crankshaft/arm64/lithium-gap-resolver-arm64.cc', 1248 'crankshaft/arm64/lithium-gap-resolver-arm64.cc',
1249 '../../src/crankshaft/arm64/lithium-gap-resolver-arm64.h', 1249 'crankshaft/arm64/lithium-gap-resolver-arm64.h',
1250 '../../src/debug/arm64/debug-arm64.cc', 1250 'debug/arm64/debug-arm64.cc',
1251 '../../src/full-codegen/arm64/full-codegen-arm64.cc', 1251 'full-codegen/arm64/full-codegen-arm64.cc',
1252 '../../src/ic/arm64/access-compiler-arm64.cc', 1252 'ic/arm64/access-compiler-arm64.cc',
1253 '../../src/ic/arm64/handler-compiler-arm64.cc', 1253 'ic/arm64/handler-compiler-arm64.cc',
1254 '../../src/ic/arm64/ic-arm64.cc', 1254 'ic/arm64/ic-arm64.cc',
1255 '../../src/ic/arm64/ic-compiler-arm64.cc', 1255 'ic/arm64/ic-compiler-arm64.cc',
1256 '../../src/ic/arm64/stub-cache-arm64.cc', 1256 'ic/arm64/stub-cache-arm64.cc',
1257 '../../src/regexp/arm64/regexp-macro-assembler-arm64.cc', 1257 'regexp/arm64/regexp-macro-assembler-arm64.cc',
1258 '../../src/regexp/arm64/regexp-macro-assembler-arm64.h', 1258 'regexp/arm64/regexp-macro-assembler-arm64.h',
1259 ], 1259 ],
1260 }], 1260 }],
1261 ['v8_target_arch=="ia32"', { 1261 ['v8_target_arch=="ia32"', {
1262 'sources': [ ### gcmole(arch:ia32) ### 1262 'sources': [ ### gcmole(arch:ia32) ###
1263 '../../src/ia32/assembler-ia32-inl.h', 1263 'ia32/assembler-ia32-inl.h',
1264 '../../src/ia32/assembler-ia32.cc', 1264 'ia32/assembler-ia32.cc',
1265 '../../src/ia32/assembler-ia32.h', 1265 'ia32/assembler-ia32.h',
1266 '../../src/ia32/builtins-ia32.cc', 1266 'ia32/builtins-ia32.cc',
1267 '../../src/ia32/code-stubs-ia32.cc', 1267 'ia32/code-stubs-ia32.cc',
1268 '../../src/ia32/code-stubs-ia32.h', 1268 'ia32/code-stubs-ia32.h',
1269 '../../src/ia32/codegen-ia32.cc', 1269 'ia32/codegen-ia32.cc',
1270 '../../src/ia32/codegen-ia32.h', 1270 'ia32/codegen-ia32.h',
1271 '../../src/ia32/cpu-ia32.cc', 1271 'ia32/cpu-ia32.cc',
1272 '../../src/ia32/deoptimizer-ia32.cc', 1272 'ia32/deoptimizer-ia32.cc',
1273 '../../src/ia32/disasm-ia32.cc', 1273 'ia32/disasm-ia32.cc',
1274 '../../src/ia32/frames-ia32.cc', 1274 'ia32/frames-ia32.cc',
1275 '../../src/ia32/frames-ia32.h', 1275 'ia32/frames-ia32.h',
1276 '../../src/ia32/interface-descriptors-ia32.cc', 1276 'ia32/interface-descriptors-ia32.cc',
1277 '../../src/ia32/macro-assembler-ia32.cc', 1277 'ia32/macro-assembler-ia32.cc',
1278 '../../src/ia32/macro-assembler-ia32.h', 1278 'ia32/macro-assembler-ia32.h',
1279 '../../src/compiler/ia32/code-generator-ia32.cc', 1279 'compiler/ia32/code-generator-ia32.cc',
1280 '../../src/compiler/ia32/instruction-codes-ia32.h', 1280 'compiler/ia32/instruction-codes-ia32.h',
1281 '../../src/compiler/ia32/instruction-scheduler-ia32.cc', 1281 'compiler/ia32/instruction-scheduler-ia32.cc',
1282 '../../src/compiler/ia32/instruction-selector-ia32.cc', 1282 'compiler/ia32/instruction-selector-ia32.cc',
1283 '../../src/crankshaft/ia32/lithium-codegen-ia32.cc', 1283 'crankshaft/ia32/lithium-codegen-ia32.cc',
1284 '../../src/crankshaft/ia32/lithium-codegen-ia32.h', 1284 'crankshaft/ia32/lithium-codegen-ia32.h',
1285 '../../src/crankshaft/ia32/lithium-gap-resolver-ia32.cc', 1285 'crankshaft/ia32/lithium-gap-resolver-ia32.cc',
1286 '../../src/crankshaft/ia32/lithium-gap-resolver-ia32.h', 1286 'crankshaft/ia32/lithium-gap-resolver-ia32.h',
1287 '../../src/crankshaft/ia32/lithium-ia32.cc', 1287 'crankshaft/ia32/lithium-ia32.cc',
1288 '../../src/crankshaft/ia32/lithium-ia32.h', 1288 'crankshaft/ia32/lithium-ia32.h',
1289 '../../src/debug/ia32/debug-ia32.cc', 1289 'debug/ia32/debug-ia32.cc',
1290 '../../src/full-codegen/ia32/full-codegen-ia32.cc', 1290 'full-codegen/ia32/full-codegen-ia32.cc',
1291 '../../src/ic/ia32/access-compiler-ia32.cc', 1291 'ic/ia32/access-compiler-ia32.cc',
1292 '../../src/ic/ia32/handler-compiler-ia32.cc', 1292 'ic/ia32/handler-compiler-ia32.cc',
1293 '../../src/ic/ia32/ic-ia32.cc', 1293 'ic/ia32/ic-ia32.cc',
1294 '../../src/ic/ia32/ic-compiler-ia32.cc', 1294 'ic/ia32/ic-compiler-ia32.cc',
1295 '../../src/ic/ia32/stub-cache-ia32.cc', 1295 'ic/ia32/stub-cache-ia32.cc',
1296 '../../src/regexp/ia32/regexp-macro-assembler-ia32.cc', 1296 'regexp/ia32/regexp-macro-assembler-ia32.cc',
1297 '../../src/regexp/ia32/regexp-macro-assembler-ia32.h', 1297 'regexp/ia32/regexp-macro-assembler-ia32.h',
1298 ], 1298 ],
1299 }], 1299 }],
1300 ['v8_target_arch=="x87"', { 1300 ['v8_target_arch=="x87"', {
1301 'sources': [ ### gcmole(arch:x87) ### 1301 'sources': [ ### gcmole(arch:x87) ###
1302 '../../src/x87/assembler-x87-inl.h', 1302 'x87/assembler-x87-inl.h',
1303 '../../src/x87/assembler-x87.cc', 1303 'x87/assembler-x87.cc',
1304 '../../src/x87/assembler-x87.h', 1304 'x87/assembler-x87.h',
1305 '../../src/x87/builtins-x87.cc', 1305 'x87/builtins-x87.cc',
1306 '../../src/x87/code-stubs-x87.cc', 1306 'x87/code-stubs-x87.cc',
1307 '../../src/x87/code-stubs-x87.h', 1307 'x87/code-stubs-x87.h',
1308 '../../src/x87/codegen-x87.cc', 1308 'x87/codegen-x87.cc',
1309 '../../src/x87/codegen-x87.h', 1309 'x87/codegen-x87.h',
1310 '../../src/x87/cpu-x87.cc', 1310 'x87/cpu-x87.cc',
1311 '../../src/x87/deoptimizer-x87.cc', 1311 'x87/deoptimizer-x87.cc',
1312 '../../src/x87/disasm-x87.cc', 1312 'x87/disasm-x87.cc',
1313 '../../src/x87/frames-x87.cc', 1313 'x87/frames-x87.cc',
1314 '../../src/x87/frames-x87.h', 1314 'x87/frames-x87.h',
1315 '../../src/x87/interface-descriptors-x87.cc', 1315 'x87/interface-descriptors-x87.cc',
1316 '../../src/x87/macro-assembler-x87.cc', 1316 'x87/macro-assembler-x87.cc',
1317 '../../src/x87/macro-assembler-x87.h', 1317 'x87/macro-assembler-x87.h',
1318 '../../src/compiler/x87/code-generator-x87.cc', 1318 'compiler/x87/code-generator-x87.cc',
1319 '../../src/compiler/x87/instruction-codes-x87.h', 1319 'compiler/x87/instruction-codes-x87.h',
1320 '../../src/compiler/x87/instruction-scheduler-x87.cc', 1320 'compiler/x87/instruction-scheduler-x87.cc',
1321 '../../src/compiler/x87/instruction-selector-x87.cc', 1321 'compiler/x87/instruction-selector-x87.cc',
1322 '../../src/crankshaft/x87/lithium-codegen-x87.cc', 1322 'crankshaft/x87/lithium-codegen-x87.cc',
1323 '../../src/crankshaft/x87/lithium-codegen-x87.h', 1323 'crankshaft/x87/lithium-codegen-x87.h',
1324 '../../src/crankshaft/x87/lithium-gap-resolver-x87.cc', 1324 'crankshaft/x87/lithium-gap-resolver-x87.cc',
1325 '../../src/crankshaft/x87/lithium-gap-resolver-x87.h', 1325 'crankshaft/x87/lithium-gap-resolver-x87.h',
1326 '../../src/crankshaft/x87/lithium-x87.cc', 1326 'crankshaft/x87/lithium-x87.cc',
1327 '../../src/crankshaft/x87/lithium-x87.h', 1327 'crankshaft/x87/lithium-x87.h',
1328 '../../src/debug/x87/debug-x87.cc', 1328 'debug/x87/debug-x87.cc',
1329 '../../src/full-codegen/x87/full-codegen-x87.cc', 1329 'full-codegen/x87/full-codegen-x87.cc',
1330 '../../src/ic/x87/access-compiler-x87.cc', 1330 'ic/x87/access-compiler-x87.cc',
1331 '../../src/ic/x87/handler-compiler-x87.cc', 1331 'ic/x87/handler-compiler-x87.cc',
1332 '../../src/ic/x87/ic-x87.cc', 1332 'ic/x87/ic-x87.cc',
1333 '../../src/ic/x87/ic-compiler-x87.cc', 1333 'ic/x87/ic-compiler-x87.cc',
1334 '../../src/ic/x87/stub-cache-x87.cc', 1334 'ic/x87/stub-cache-x87.cc',
1335 '../../src/regexp/x87/regexp-macro-assembler-x87.cc', 1335 'regexp/x87/regexp-macro-assembler-x87.cc',
1336 '../../src/regexp/x87/regexp-macro-assembler-x87.h', 1336 'regexp/x87/regexp-macro-assembler-x87.h',
1337 ], 1337 ],
1338 }], 1338 }],
1339 ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', { 1339 ['v8_target_arch=="mips" or v8_target_arch=="mipsel"', {
1340 'sources': [ ### gcmole(arch:mipsel) ### 1340 'sources': [ ### gcmole(arch:mipsel) ###
1341 '../../src/mips/assembler-mips.cc', 1341 'mips/assembler-mips.cc',
1342 '../../src/mips/assembler-mips.h', 1342 'mips/assembler-mips.h',
1343 '../../src/mips/assembler-mips-inl.h', 1343 'mips/assembler-mips-inl.h',
1344 '../../src/mips/builtins-mips.cc', 1344 'mips/builtins-mips.cc',
1345 '../../src/mips/codegen-mips.cc', 1345 'mips/codegen-mips.cc',
1346 '../../src/mips/codegen-mips.h', 1346 'mips/codegen-mips.h',
1347 '../../src/mips/code-stubs-mips.cc', 1347 'mips/code-stubs-mips.cc',
1348 '../../src/mips/code-stubs-mips.h', 1348 'mips/code-stubs-mips.h',
1349 '../../src/mips/constants-mips.cc', 1349 'mips/constants-mips.cc',
1350 '../../src/mips/constants-mips.h', 1350 'mips/constants-mips.h',
1351 '../../src/mips/cpu-mips.cc', 1351 'mips/cpu-mips.cc',
1352 '../../src/mips/deoptimizer-mips.cc', 1352 'mips/deoptimizer-mips.cc',
1353 '../../src/mips/disasm-mips.cc', 1353 'mips/disasm-mips.cc',
1354 '../../src/mips/frames-mips.cc', 1354 'mips/frames-mips.cc',
1355 '../../src/mips/frames-mips.h', 1355 'mips/frames-mips.h',
1356 '../../src/mips/interface-descriptors-mips.cc', 1356 'mips/interface-descriptors-mips.cc',
1357 '../../src/mips/macro-assembler-mips.cc', 1357 'mips/macro-assembler-mips.cc',
1358 '../../src/mips/macro-assembler-mips.h', 1358 'mips/macro-assembler-mips.h',
1359 '../../src/mips/simulator-mips.cc', 1359 'mips/simulator-mips.cc',
1360 '../../src/mips/simulator-mips.h', 1360 'mips/simulator-mips.h',
1361 '../../src/compiler/mips/code-generator-mips.cc', 1361 'compiler/mips/code-generator-mips.cc',
1362 '../../src/compiler/mips/instruction-codes-mips.h', 1362 'compiler/mips/instruction-codes-mips.h',
1363 '../../src/compiler/mips/instruction-scheduler-mips.cc', 1363 'compiler/mips/instruction-scheduler-mips.cc',
1364 '../../src/compiler/mips/instruction-selector-mips.cc', 1364 'compiler/mips/instruction-selector-mips.cc',
1365 '../../src/crankshaft/mips/lithium-codegen-mips.cc', 1365 'crankshaft/mips/lithium-codegen-mips.cc',
1366 '../../src/crankshaft/mips/lithium-codegen-mips.h', 1366 'crankshaft/mips/lithium-codegen-mips.h',
1367 '../../src/crankshaft/mips/lithium-gap-resolver-mips.cc', 1367 'crankshaft/mips/lithium-gap-resolver-mips.cc',
1368 '../../src/crankshaft/mips/lithium-gap-resolver-mips.h', 1368 'crankshaft/mips/lithium-gap-resolver-mips.h',
1369 '../../src/crankshaft/mips/lithium-mips.cc', 1369 'crankshaft/mips/lithium-mips.cc',
1370 '../../src/crankshaft/mips/lithium-mips.h', 1370 'crankshaft/mips/lithium-mips.h',
1371 '../../src/full-codegen/mips/full-codegen-mips.cc', 1371 'full-codegen/mips/full-codegen-mips.cc',
1372 '../../src/debug/mips/debug-mips.cc', 1372 'debug/mips/debug-mips.cc',
1373 '../../src/ic/mips/access-compiler-mips.cc', 1373 'ic/mips/access-compiler-mips.cc',
1374 '../../src/ic/mips/handler-compiler-mips.cc', 1374 'ic/mips/handler-compiler-mips.cc',
1375 '../../src/ic/mips/ic-mips.cc', 1375 'ic/mips/ic-mips.cc',
1376 '../../src/ic/mips/ic-compiler-mips.cc', 1376 'ic/mips/ic-compiler-mips.cc',
1377 '../../src/ic/mips/stub-cache-mips.cc', 1377 'ic/mips/stub-cache-mips.cc',
1378 '../../src/regexp/mips/regexp-macro-assembler-mips.cc', 1378 'regexp/mips/regexp-macro-assembler-mips.cc',
1379 '../../src/regexp/mips/regexp-macro-assembler-mips.h', 1379 'regexp/mips/regexp-macro-assembler-mips.h',
1380 ], 1380 ],
1381 }], 1381 }],
1382 ['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', { 1382 ['v8_target_arch=="mips64" or v8_target_arch=="mips64el"', {
1383 'sources': [ ### gcmole(arch:mips64el) ### 1383 'sources': [ ### gcmole(arch:mips64el) ###
1384 '../../src/mips64/assembler-mips64.cc', 1384 'mips64/assembler-mips64.cc',
1385 '../../src/mips64/assembler-mips64.h', 1385 'mips64/assembler-mips64.h',
1386 '../../src/mips64/assembler-mips64-inl.h', 1386 'mips64/assembler-mips64-inl.h',
1387 '../../src/mips64/builtins-mips64.cc', 1387 'mips64/builtins-mips64.cc',
1388 '../../src/mips64/codegen-mips64.cc', 1388 'mips64/codegen-mips64.cc',
1389 '../../src/mips64/codegen-mips64.h', 1389 'mips64/codegen-mips64.h',
1390 '../../src/mips64/code-stubs-mips64.cc', 1390 'mips64/code-stubs-mips64.cc',
1391 '../../src/mips64/code-stubs-mips64.h', 1391 'mips64/code-stubs-mips64.h',
1392 '../../src/mips64/constants-mips64.cc', 1392 'mips64/constants-mips64.cc',
1393 '../../src/mips64/constants-mips64.h', 1393 'mips64/constants-mips64.h',
1394 '../../src/mips64/cpu-mips64.cc', 1394 'mips64/cpu-mips64.cc',
1395 '../../src/mips64/deoptimizer-mips64.cc', 1395 'mips64/deoptimizer-mips64.cc',
1396 '../../src/mips64/disasm-mips64.cc', 1396 'mips64/disasm-mips64.cc',
1397 '../../src/mips64/frames-mips64.cc', 1397 'mips64/frames-mips64.cc',
1398 '../../src/mips64/frames-mips64.h', 1398 'mips64/frames-mips64.h',
1399 '../../src/mips64/interface-descriptors-mips64.cc', 1399 'mips64/interface-descriptors-mips64.cc',
1400 '../../src/mips64/macro-assembler-mips64.cc', 1400 'mips64/macro-assembler-mips64.cc',
1401 '../../src/mips64/macro-assembler-mips64.h', 1401 'mips64/macro-assembler-mips64.h',
1402 '../../src/mips64/simulator-mips64.cc', 1402 'mips64/simulator-mips64.cc',
1403 '../../src/mips64/simulator-mips64.h', 1403 'mips64/simulator-mips64.h',
1404 '../../src/compiler/mips64/code-generator-mips64.cc', 1404 'compiler/mips64/code-generator-mips64.cc',
1405 '../../src/compiler/mips64/instruction-codes-mips64.h', 1405 'compiler/mips64/instruction-codes-mips64.h',
1406 '../../src/compiler/mips64/instruction-scheduler-mips64.cc', 1406 'compiler/mips64/instruction-scheduler-mips64.cc',
1407 '../../src/compiler/mips64/instruction-selector-mips64.cc', 1407 'compiler/mips64/instruction-selector-mips64.cc',
1408 '../../src/crankshaft/mips64/lithium-codegen-mips64.cc', 1408 'crankshaft/mips64/lithium-codegen-mips64.cc',
1409 '../../src/crankshaft/mips64/lithium-codegen-mips64.h', 1409 'crankshaft/mips64/lithium-codegen-mips64.h',
1410 '../../src/crankshaft/mips64/lithium-gap-resolver-mips64.cc', 1410 'crankshaft/mips64/lithium-gap-resolver-mips64.cc',
1411 '../../src/crankshaft/mips64/lithium-gap-resolver-mips64.h', 1411 'crankshaft/mips64/lithium-gap-resolver-mips64.h',
1412 '../../src/crankshaft/mips64/lithium-mips64.cc', 1412 'crankshaft/mips64/lithium-mips64.cc',
1413 '../../src/crankshaft/mips64/lithium-mips64.h', 1413 'crankshaft/mips64/lithium-mips64.h',
1414 '../../src/debug/mips64/debug-mips64.cc', 1414 'debug/mips64/debug-mips64.cc',
1415 '../../src/full-codegen/mips64/full-codegen-mips64.cc', 1415 'full-codegen/mips64/full-codegen-mips64.cc',
1416 '../../src/ic/mips64/access-compiler-mips64.cc', 1416 'ic/mips64/access-compiler-mips64.cc',
1417 '../../src/ic/mips64/handler-compiler-mips64.cc', 1417 'ic/mips64/handler-compiler-mips64.cc',
1418 '../../src/ic/mips64/ic-mips64.cc', 1418 'ic/mips64/ic-mips64.cc',
1419 '../../src/ic/mips64/ic-compiler-mips64.cc', 1419 'ic/mips64/ic-compiler-mips64.cc',
1420 '../../src/ic/mips64/stub-cache-mips64.cc', 1420 'ic/mips64/stub-cache-mips64.cc',
1421 '../../src/regexp/mips64/regexp-macro-assembler-mips64.cc', 1421 'regexp/mips64/regexp-macro-assembler-mips64.cc',
1422 '../../src/regexp/mips64/regexp-macro-assembler-mips64.h', 1422 'regexp/mips64/regexp-macro-assembler-mips64.h',
1423 ], 1423 ],
1424 }], 1424 }],
1425 ['v8_target_arch=="x64" or v8_target_arch=="x32"', { 1425 ['v8_target_arch=="x64" or v8_target_arch=="x32"', {
1426 'sources': [ ### gcmole(arch:x64) ### 1426 'sources': [ ### gcmole(arch:x64) ###
1427 '../../src/crankshaft/x64/lithium-codegen-x64.cc', 1427 'crankshaft/x64/lithium-codegen-x64.cc',
1428 '../../src/crankshaft/x64/lithium-codegen-x64.h', 1428 'crankshaft/x64/lithium-codegen-x64.h',
1429 '../../src/crankshaft/x64/lithium-gap-resolver-x64.cc', 1429 'crankshaft/x64/lithium-gap-resolver-x64.cc',
1430 '../../src/crankshaft/x64/lithium-gap-resolver-x64.h', 1430 'crankshaft/x64/lithium-gap-resolver-x64.h',
1431 '../../src/crankshaft/x64/lithium-x64.cc', 1431 'crankshaft/x64/lithium-x64.cc',
1432 '../../src/crankshaft/x64/lithium-x64.h', 1432 'crankshaft/x64/lithium-x64.h',
1433 '../../src/x64/assembler-x64-inl.h', 1433 'x64/assembler-x64-inl.h',
1434 '../../src/x64/assembler-x64.cc', 1434 'x64/assembler-x64.cc',
1435 '../../src/x64/assembler-x64.h', 1435 'x64/assembler-x64.h',
1436 '../../src/x64/builtins-x64.cc', 1436 'x64/builtins-x64.cc',
1437 '../../src/x64/code-stubs-x64.cc', 1437 'x64/code-stubs-x64.cc',
1438 '../../src/x64/code-stubs-x64.h', 1438 'x64/code-stubs-x64.h',
1439 '../../src/x64/codegen-x64.cc', 1439 'x64/codegen-x64.cc',
1440 '../../src/x64/codegen-x64.h', 1440 'x64/codegen-x64.h',
1441 '../../src/x64/cpu-x64.cc', 1441 'x64/cpu-x64.cc',
1442 '../../src/x64/deoptimizer-x64.cc', 1442 'x64/deoptimizer-x64.cc',
1443 '../../src/x64/disasm-x64.cc', 1443 'x64/disasm-x64.cc',
1444 '../../src/x64/frames-x64.cc', 1444 'x64/frames-x64.cc',
1445 '../../src/x64/frames-x64.h', 1445 'x64/frames-x64.h',
1446 '../../src/x64/interface-descriptors-x64.cc', 1446 'x64/interface-descriptors-x64.cc',
1447 '../../src/x64/macro-assembler-x64.cc', 1447 'x64/macro-assembler-x64.cc',
1448 '../../src/x64/macro-assembler-x64.h', 1448 'x64/macro-assembler-x64.h',
1449 '../../src/debug/x64/debug-x64.cc', 1449 'debug/x64/debug-x64.cc',
1450 '../../src/full-codegen/x64/full-codegen-x64.cc', 1450 'full-codegen/x64/full-codegen-x64.cc',
1451 '../../src/ic/x64/access-compiler-x64.cc', 1451 'ic/x64/access-compiler-x64.cc',
1452 '../../src/ic/x64/handler-compiler-x64.cc', 1452 'ic/x64/handler-compiler-x64.cc',
1453 '../../src/ic/x64/ic-x64.cc', 1453 'ic/x64/ic-x64.cc',
1454 '../../src/ic/x64/ic-compiler-x64.cc', 1454 'ic/x64/ic-compiler-x64.cc',
1455 '../../src/ic/x64/stub-cache-x64.cc', 1455 'ic/x64/stub-cache-x64.cc',
1456 '../../src/regexp/x64/regexp-macro-assembler-x64.cc', 1456 'regexp/x64/regexp-macro-assembler-x64.cc',
1457 '../../src/regexp/x64/regexp-macro-assembler-x64.h', 1457 'regexp/x64/regexp-macro-assembler-x64.h',
1458 ], 1458 ],
1459 }], 1459 }],
1460 ['v8_target_arch=="x64"', { 1460 ['v8_target_arch=="x64"', {
1461 'sources': [ 1461 'sources': [
1462 '../../src/compiler/x64/code-generator-x64.cc', 1462 'compiler/x64/code-generator-x64.cc',
1463 '../../src/compiler/x64/instruction-codes-x64.h', 1463 'compiler/x64/instruction-codes-x64.h',
1464 '../../src/compiler/x64/instruction-scheduler-x64.cc', 1464 'compiler/x64/instruction-scheduler-x64.cc',
1465 '../../src/compiler/x64/instruction-selector-x64.cc', 1465 'compiler/x64/instruction-selector-x64.cc',
1466 ], 1466 ],
1467 }], 1467 }],
1468 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { 1468 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', {
1469 'sources': [ ### gcmole(arch:ppc) ### 1469 'sources': [ ### gcmole(arch:ppc) ###
1470 '../../src/compiler/ppc/code-generator-ppc.cc', 1470 'compiler/ppc/code-generator-ppc.cc',
1471 '../../src/compiler/ppc/instruction-codes-ppc.h', 1471 'compiler/ppc/instruction-codes-ppc.h',
1472 '../../src/compiler/ppc/instruction-scheduler-ppc.cc', 1472 'compiler/ppc/instruction-scheduler-ppc.cc',
1473 '../../src/compiler/ppc/instruction-selector-ppc.cc', 1473 'compiler/ppc/instruction-selector-ppc.cc',
1474 '../../src/crankshaft/ppc/lithium-ppc.cc', 1474 'crankshaft/ppc/lithium-ppc.cc',
1475 '../../src/crankshaft/ppc/lithium-ppc.h', 1475 'crankshaft/ppc/lithium-ppc.h',
1476 '../../src/crankshaft/ppc/lithium-codegen-ppc.cc', 1476 'crankshaft/ppc/lithium-codegen-ppc.cc',
1477 '../../src/crankshaft/ppc/lithium-codegen-ppc.h', 1477 'crankshaft/ppc/lithium-codegen-ppc.h',
1478 '../../src/crankshaft/ppc/lithium-gap-resolver-ppc.cc', 1478 'crankshaft/ppc/lithium-gap-resolver-ppc.cc',
1479 '../../src/crankshaft/ppc/lithium-gap-resolver-ppc.h', 1479 'crankshaft/ppc/lithium-gap-resolver-ppc.h',
1480 '../../src/debug/ppc/debug-ppc.cc', 1480 'debug/ppc/debug-ppc.cc',
1481 '../../src/full-codegen/ppc/full-codegen-ppc.cc', 1481 'full-codegen/ppc/full-codegen-ppc.cc',
1482 '../../src/ic/ppc/access-compiler-ppc.cc', 1482 'ic/ppc/access-compiler-ppc.cc',
1483 '../../src/ic/ppc/handler-compiler-ppc.cc', 1483 'ic/ppc/handler-compiler-ppc.cc',
1484 '../../src/ic/ppc/ic-ppc.cc', 1484 'ic/ppc/ic-ppc.cc',
1485 '../../src/ic/ppc/ic-compiler-ppc.cc', 1485 'ic/ppc/ic-compiler-ppc.cc',
1486 '../../src/ic/ppc/stub-cache-ppc.cc', 1486 'ic/ppc/stub-cache-ppc.cc',
1487 '../../src/ppc/assembler-ppc-inl.h', 1487 'ppc/assembler-ppc-inl.h',
1488 '../../src/ppc/assembler-ppc.cc', 1488 'ppc/assembler-ppc.cc',
1489 '../../src/ppc/assembler-ppc.h', 1489 'ppc/assembler-ppc.h',
1490 '../../src/ppc/builtins-ppc.cc', 1490 'ppc/builtins-ppc.cc',
1491 '../../src/ppc/code-stubs-ppc.cc', 1491 'ppc/code-stubs-ppc.cc',
1492 '../../src/ppc/code-stubs-ppc.h', 1492 'ppc/code-stubs-ppc.h',
1493 '../../src/ppc/codegen-ppc.cc', 1493 'ppc/codegen-ppc.cc',
1494 '../../src/ppc/codegen-ppc.h', 1494 'ppc/codegen-ppc.h',
1495 '../../src/ppc/constants-ppc.h', 1495 'ppc/constants-ppc.h',
1496 '../../src/ppc/constants-ppc.cc', 1496 'ppc/constants-ppc.cc',
1497 '../../src/ppc/cpu-ppc.cc', 1497 'ppc/cpu-ppc.cc',
1498 '../../src/ppc/deoptimizer-ppc.cc', 1498 'ppc/deoptimizer-ppc.cc',
1499 '../../src/ppc/disasm-ppc.cc', 1499 'ppc/disasm-ppc.cc',
1500 '../../src/ppc/frames-ppc.cc', 1500 'ppc/frames-ppc.cc',
1501 '../../src/ppc/frames-ppc.h', 1501 'ppc/frames-ppc.h',
1502 '../../src/ppc/interface-descriptors-ppc.cc', 1502 'ppc/interface-descriptors-ppc.cc',
1503 '../../src/ppc/macro-assembler-ppc.cc', 1503 'ppc/macro-assembler-ppc.cc',
1504 '../../src/ppc/macro-assembler-ppc.h', 1504 'ppc/macro-assembler-ppc.h',
1505 '../../src/ppc/simulator-ppc.cc', 1505 'ppc/simulator-ppc.cc',
1506 '../../src/ppc/simulator-ppc.h', 1506 'ppc/simulator-ppc.h',
1507 '../../src/regexp/ppc/regexp-macro-assembler-ppc.cc', 1507 'regexp/ppc/regexp-macro-assembler-ppc.cc',
1508 '../../src/regexp/ppc/regexp-macro-assembler-ppc.h', 1508 'regexp/ppc/regexp-macro-assembler-ppc.h',
1509 ], 1509 ],
1510 }], 1510 }],
1511 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', { 1511 ['v8_target_arch=="s390" or v8_target_arch=="s390x"', {
1512 'sources': [ ### gcmole(arch:s390) ### 1512 'sources': [ ### gcmole(arch:s390) ###
1513 '../../src/compiler/s390/code-generator-s390.cc', 1513 'compiler/s390/code-generator-s390.cc',
1514 '../../src/compiler/s390/instruction-codes-s390.h', 1514 'compiler/s390/instruction-codes-s390.h',
1515 '../../src/compiler/s390/instruction-scheduler-s390.cc', 1515 'compiler/s390/instruction-scheduler-s390.cc',
1516 '../../src/compiler/s390/instruction-selector-s390.cc', 1516 'compiler/s390/instruction-selector-s390.cc',
1517 '../../src/crankshaft/s390/lithium-codegen-s390.cc', 1517 'crankshaft/s390/lithium-codegen-s390.cc',
1518 '../../src/crankshaft/s390/lithium-codegen-s390.h', 1518 'crankshaft/s390/lithium-codegen-s390.h',
1519 '../../src/crankshaft/s390/lithium-gap-resolver-s390.cc', 1519 'crankshaft/s390/lithium-gap-resolver-s390.cc',
1520 '../../src/crankshaft/s390/lithium-gap-resolver-s390.h', 1520 'crankshaft/s390/lithium-gap-resolver-s390.h',
1521 '../../src/crankshaft/s390/lithium-s390.cc', 1521 'crankshaft/s390/lithium-s390.cc',
1522 '../../src/crankshaft/s390/lithium-s390.h', 1522 'crankshaft/s390/lithium-s390.h',
1523 '../../src/debug/s390/debug-s390.cc', 1523 'debug/s390/debug-s390.cc',
1524 '../../src/full-codegen/s390/full-codegen-s390.cc', 1524 'full-codegen/s390/full-codegen-s390.cc',
1525 '../../src/ic/s390/access-compiler-s390.cc', 1525 'ic/s390/access-compiler-s390.cc',
1526 '../../src/ic/s390/handler-compiler-s390.cc', 1526 'ic/s390/handler-compiler-s390.cc',
1527 '../../src/ic/s390/ic-compiler-s390.cc', 1527 'ic/s390/ic-compiler-s390.cc',
1528 '../../src/ic/s390/ic-s390.cc', 1528 'ic/s390/ic-s390.cc',
1529 '../../src/ic/s390/stub-cache-s390.cc', 1529 'ic/s390/stub-cache-s390.cc',
1530 '../../src/regexp/s390/regexp-macro-assembler-s390.cc', 1530 'regexp/s390/regexp-macro-assembler-s390.cc',
1531 '../../src/regexp/s390/regexp-macro-assembler-s390.h', 1531 'regexp/s390/regexp-macro-assembler-s390.h',
1532 '../../src/s390/assembler-s390.cc', 1532 's390/assembler-s390.cc',
1533 '../../src/s390/assembler-s390.h', 1533 's390/assembler-s390.h',
1534 '../../src/s390/assembler-s390-inl.h', 1534 's390/assembler-s390-inl.h',
1535 '../../src/s390/builtins-s390.cc', 1535 's390/builtins-s390.cc',
1536 '../../src/s390/codegen-s390.cc', 1536 's390/codegen-s390.cc',
1537 '../../src/s390/codegen-s390.h', 1537 's390/codegen-s390.h',
1538 '../../src/s390/code-stubs-s390.cc', 1538 's390/code-stubs-s390.cc',
1539 '../../src/s390/code-stubs-s390.h', 1539 's390/code-stubs-s390.h',
1540 '../../src/s390/constants-s390.cc', 1540 's390/constants-s390.cc',
1541 '../../src/s390/constants-s390.h', 1541 's390/constants-s390.h',
1542 '../../src/s390/cpu-s390.cc', 1542 's390/cpu-s390.cc',
1543 '../../src/s390/deoptimizer-s390.cc', 1543 's390/deoptimizer-s390.cc',
1544 '../../src/s390/disasm-s390.cc', 1544 's390/disasm-s390.cc',
1545 '../../src/s390/frames-s390.cc', 1545 's390/frames-s390.cc',
1546 '../../src/s390/frames-s390.h', 1546 's390/frames-s390.h',
1547 '../../src/s390/interface-descriptors-s390.cc', 1547 's390/interface-descriptors-s390.cc',
1548 '../../src/s390/macro-assembler-s390.cc', 1548 's390/macro-assembler-s390.cc',
1549 '../../src/s390/macro-assembler-s390.h', 1549 's390/macro-assembler-s390.h',
1550 '../../src/s390/simulator-s390.cc', 1550 's390/simulator-s390.cc',
1551 '../../src/s390/simulator-s390.h', 1551 's390/simulator-s390.h',
1552 ], 1552 ],
1553 }], 1553 }],
1554 ['OS=="win"', { 1554 ['OS=="win"', {
1555 'variables': { 1555 'variables': {
1556 'gyp_generators': '<!(echo $GYP_GENERATORS)', 1556 'gyp_generators': '<!(echo $GYP_GENERATORS)',
1557 }, 1557 },
1558 'msvs_disabled_warnings': [4351, 4355, 4800], 1558 'msvs_disabled_warnings': [4351, 4355, 4800],
1559 # When building Official, the .lib is too large and exceeds the 2G 1559 # When building Official, the .lib is too large and exceeds the 2G
1560 # limit. This breaks it into multiple pieces to avoid the limit. 1560 # limit. This breaks it into multiple pieces to avoid the limit.
1561 # See http://crbug.com/485155. 1561 # See http://crbug.com/485155.
(...skipping 10 matching lines...) Expand all
1572 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 1572 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
1573 ] 1573 ]
1574 }], 1574 }],
1575 ['v8_enable_i18n_support==1', { 1575 ['v8_enable_i18n_support==1', {
1576 'dependencies': [ 1576 'dependencies': [
1577 '<(icu_gyp_path):icui18n', 1577 '<(icu_gyp_path):icui18n',
1578 '<(icu_gyp_path):icuuc', 1578 '<(icu_gyp_path):icuuc',
1579 ] 1579 ]
1580 }, { # v8_enable_i18n_support==0 1580 }, { # v8_enable_i18n_support==0
1581 'sources!': [ 1581 'sources!': [
1582 '../../src/i18n.cc', 1582 'i18n.cc',
1583 '../../src/i18n.h', 1583 'i18n.h',
1584 ], 1584 ],
1585 }], 1585 }],
1586 ['OS=="win" and v8_enable_i18n_support==1', { 1586 ['OS=="win" and v8_enable_i18n_support==1', {
1587 'dependencies': [ 1587 'dependencies': [
1588 '<(icu_gyp_path):icudata', 1588 '<(icu_gyp_path):icudata',
1589 ], 1589 ],
1590 }], 1590 }],
1591 ['icu_use_data_file_flag==1', { 1591 ['icu_use_data_file_flag==1', {
1592 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'], 1592 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
1593 }, { # else icu_use_data_file_flag !=1 1593 }, { # else icu_use_data_file_flag !=1
1594 'conditions': [ 1594 'conditions': [
1595 ['OS=="win"', { 1595 ['OS=="win"', {
1596 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'], 1596 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
1597 }, { 1597 }, {
1598 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'], 1598 'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
1599 }], 1599 }],
1600 ], 1600 ],
1601 }], 1601 }],
1602 ], 1602 ],
1603 }, 1603 },
1604 { 1604 {
1605 'target_name': 'v8_libbase', 1605 'target_name': 'v8_libbase',
1606 'type': 'static_library', 1606 'type': 'static_library',
1607 'variables': { 1607 'variables': {
1608 'optimize': 'max', 1608 'optimize': 'max',
1609 }, 1609 },
1610 'include_dirs+': [ 1610 'include_dirs+': [
1611 '../..', 1611 '..',
1612 ], 1612 ],
1613 'sources': [ 1613 'sources': [
1614 '../../src/base/accounting-allocator.cc', 1614 'base/accounting-allocator.cc',
1615 '../../src/base/accounting-allocator.h', 1615 'base/accounting-allocator.h',
1616 '../../src/base/adapters.h', 1616 'base/adapters.h',
1617 '../../src/base/atomicops.h', 1617 'base/atomicops.h',
1618 '../../src/base/atomicops_internals_arm64_gcc.h', 1618 'base/atomicops_internals_arm64_gcc.h',
1619 '../../src/base/atomicops_internals_arm_gcc.h', 1619 'base/atomicops_internals_arm_gcc.h',
1620 '../../src/base/atomicops_internals_atomicword_compat.h', 1620 'base/atomicops_internals_atomicword_compat.h',
1621 '../../src/base/atomicops_internals_mac.h', 1621 'base/atomicops_internals_mac.h',
1622 '../../src/base/atomicops_internals_mips_gcc.h', 1622 'base/atomicops_internals_mips_gcc.h',
1623 '../../src/base/atomicops_internals_mips64_gcc.h', 1623 'base/atomicops_internals_mips64_gcc.h',
1624 '../../src/base/atomicops_internals_portable.h', 1624 'base/atomicops_internals_portable.h',
1625 '../../src/base/atomicops_internals_ppc_gcc.h', 1625 'base/atomicops_internals_ppc_gcc.h',
1626 '../../src/base/atomicops_internals_s390_gcc.h', 1626 'base/atomicops_internals_s390_gcc.h',
1627 '../../src/base/atomicops_internals_tsan.h', 1627 'base/atomicops_internals_tsan.h',
1628 '../../src/base/atomicops_internals_x86_gcc.cc', 1628 'base/atomicops_internals_x86_gcc.cc',
1629 '../../src/base/atomicops_internals_x86_gcc.h', 1629 'base/atomicops_internals_x86_gcc.h',
1630 '../../src/base/atomicops_internals_x86_msvc.h', 1630 'base/atomicops_internals_x86_msvc.h',
1631 '../../src/base/bits.cc', 1631 'base/bits.cc',
1632 '../../src/base/bits.h', 1632 'base/bits.h',
1633 '../../src/base/build_config.h', 1633 'base/build_config.h',
1634 '../../src/base/compiler-specific.h', 1634 'base/compiler-specific.h',
1635 '../../src/base/cpu.cc', 1635 'base/cpu.cc',
1636 '../../src/base/cpu.h', 1636 'base/cpu.h',
1637 '../../src/base/division-by-constant.cc', 1637 'base/division-by-constant.cc',
1638 '../../src/base/division-by-constant.h', 1638 'base/division-by-constant.h',
1639 '../../src/base/flags.h', 1639 'base/flags.h',
1640 '../../src/base/format-macros.h', 1640 'base/format-macros.h',
1641 '../../src/base/functional.cc', 1641 'base/functional.cc',
1642 '../../src/base/functional.h', 1642 'base/functional.h',
1643 '../../src/base/iterator.h', 1643 'base/iterator.h',
1644 '../../src/base/lazy-instance.h', 1644 'base/lazy-instance.h',
1645 '../../src/base/logging.cc', 1645 'base/logging.cc',
1646 '../../src/base/logging.h', 1646 'base/logging.h',
1647 '../../src/base/macros.h', 1647 'base/macros.h',
1648 '../../src/base/once.cc', 1648 'base/once.cc',
1649 '../../src/base/once.h', 1649 'base/once.h',
1650 '../../src/base/platform/elapsed-timer.h', 1650 'base/platform/elapsed-timer.h',
1651 '../../src/base/platform/time.cc', 1651 'base/platform/time.cc',
1652 '../../src/base/platform/time.h', 1652 'base/platform/time.h',
1653 '../../src/base/platform/condition-variable.cc', 1653 'base/platform/condition-variable.cc',
1654 '../../src/base/platform/condition-variable.h', 1654 'base/platform/condition-variable.h',
1655 '../../src/base/platform/mutex.cc', 1655 'base/platform/mutex.cc',
1656 '../../src/base/platform/mutex.h', 1656 'base/platform/mutex.h',
1657 '../../src/base/platform/platform.h', 1657 'base/platform/platform.h',
1658 '../../src/base/platform/semaphore.cc', 1658 'base/platform/semaphore.cc',
1659 '../../src/base/platform/semaphore.h', 1659 'base/platform/semaphore.h',
1660 '../../src/base/safe_conversions.h', 1660 'base/safe_conversions.h',
1661 '../../src/base/safe_conversions_impl.h', 1661 'base/safe_conversions_impl.h',
1662 '../../src/base/safe_math.h', 1662 'base/safe_math.h',
1663 '../../src/base/safe_math_impl.h', 1663 'base/safe_math_impl.h',
1664 '../../src/base/smart-pointers.h', 1664 'base/smart-pointers.h',
1665 '../../src/base/sys-info.cc', 1665 'base/sys-info.cc',
1666 '../../src/base/sys-info.h', 1666 'base/sys-info.h',
1667 '../../src/base/utils/random-number-generator.cc', 1667 'base/utils/random-number-generator.cc',
1668 '../../src/base/utils/random-number-generator.h', 1668 'base/utils/random-number-generator.h',
1669 ], 1669 ],
1670 'conditions': [ 1670 'conditions': [
1671 ['want_separate_host_toolset==1', { 1671 ['want_separate_host_toolset==1', {
1672 'toolsets': ['host', 'target'], 1672 'toolsets': ['host', 'target'],
1673 }, { 1673 }, {
1674 'toolsets': ['target'], 1674 'toolsets': ['target'],
1675 }], 1675 }],
1676 ['OS=="linux"', { 1676 ['OS=="linux"', {
1677 'conditions': [ 1677 'conditions': [
1678 ['nacl_target_arch=="none"', { 1678 ['nacl_target_arch=="none"', {
1679 'link_settings': { 1679 'link_settings': {
1680 'libraries': [ 1680 'libraries': [
1681 '-ldl', 1681 '-ldl',
1682 '-lrt' 1682 '-lrt'
1683 ], 1683 ],
1684 }, 1684 },
1685 }, { 1685 }, {
1686 'defines': [ 1686 'defines': [
1687 'V8_LIBRT_NOT_AVAILABLE=1', 1687 'V8_LIBRT_NOT_AVAILABLE=1',
1688 ], 1688 ],
1689 }], 1689 }],
1690 ], 1690 ],
1691 'sources': [ 1691 'sources': [
1692 '../../src/base/platform/platform-linux.cc', 1692 'base/platform/platform-linux.cc',
1693 '../../src/base/platform/platform-posix.cc' 1693 'base/platform/platform-posix.cc'
1694 ], 1694 ],
1695 } 1695 }
1696 ], 1696 ],
1697 ['OS=="android"', { 1697 ['OS=="android"', {
1698 'sources': [ 1698 'sources': [
1699 '../../src/base/platform/platform-posix.cc' 1699 'base/platform/platform-posix.cc'
1700 ], 1700 ],
1701 'link_settings': { 1701 'link_settings': {
1702 'target_conditions': [ 1702 'target_conditions': [
1703 ['_toolset=="host" and host_os!="mac"', { 1703 ['_toolset=="host" and host_os!="mac"', {
1704 # Only include libdl and librt on host builds because they 1704 # Only include libdl and librt on host builds because they
1705 # are included by default on Android target builds, and we 1705 # are included by default on Android target builds, and we
1706 # don't want to re-include them here since this will change 1706 # don't want to re-include them here since this will change
1707 # library order and break (see crbug.com/469973). 1707 # library order and break (see crbug.com/469973).
1708 # These libraries do not exist on Mac hosted builds. 1708 # These libraries do not exist on Mac hosted builds.
1709 'libraries': [ 1709 'libraries': [
1710 '-ldl', 1710 '-ldl',
1711 '-lrt' 1711 '-lrt'
1712 ] 1712 ]
1713 }] 1713 }]
1714 ] 1714 ]
1715 }, 1715 },
1716 'conditions': [ 1716 'conditions': [
1717 ['host_os=="mac"', { 1717 ['host_os=="mac"', {
1718 'target_conditions': [ 1718 'target_conditions': [
1719 ['_toolset=="host"', { 1719 ['_toolset=="host"', {
1720 'sources': [ 1720 'sources': [
1721 '../../src/base/platform/platform-macos.cc' 1721 'base/platform/platform-macos.cc'
1722 ] 1722 ]
1723 }, { 1723 }, {
1724 'sources': [ 1724 'sources': [
1725 '../../src/base/platform/platform-linux.cc' 1725 'base/platform/platform-linux.cc'
1726 ] 1726 ]
1727 }], 1727 }],
1728 ], 1728 ],
1729 }, { 1729 }, {
1730 'sources': [ 1730 'sources': [
1731 '../../src/base/platform/platform-linux.cc' 1731 'base/platform/platform-linux.cc'
1732 ] 1732 ]
1733 }], 1733 }],
1734 ], 1734 ],
1735 }, 1735 },
1736 ], 1736 ],
1737 ['OS=="qnx"', { 1737 ['OS=="qnx"', {
1738 'link_settings': { 1738 'link_settings': {
1739 'target_conditions': [ 1739 'target_conditions': [
1740 ['_toolset=="host" and host_os=="linux"', { 1740 ['_toolset=="host" and host_os=="linux"', {
1741 'libraries': [ 1741 'libraries': [
1742 '-lrt' 1742 '-lrt'
1743 ], 1743 ],
1744 }], 1744 }],
1745 ['_toolset=="target"', { 1745 ['_toolset=="target"', {
1746 'libraries': [ 1746 'libraries': [
1747 '-lbacktrace' 1747 '-lbacktrace'
1748 ], 1748 ],
1749 }], 1749 }],
1750 ], 1750 ],
1751 }, 1751 },
1752 'sources': [ 1752 'sources': [
1753 '../../src/base/platform/platform-posix.cc', 1753 'base/platform/platform-posix.cc',
1754 '../../src/base/qnx-math.h', 1754 'base/qnx-math.h',
1755 ], 1755 ],
1756 'target_conditions': [ 1756 'target_conditions': [
1757 ['_toolset=="host" and host_os=="linux"', { 1757 ['_toolset=="host" and host_os=="linux"', {
1758 'sources': [ 1758 'sources': [
1759 '../../src/base/platform/platform-linux.cc' 1759 'base/platform/platform-linux.cc'
1760 ], 1760 ],
1761 }], 1761 }],
1762 ['_toolset=="host" and host_os=="mac"', { 1762 ['_toolset=="host" and host_os=="mac"', {
1763 'sources': [ 1763 'sources': [
1764 '../../src/base/platform/platform-macos.cc' 1764 'base/platform/platform-macos.cc'
1765 ], 1765 ],
1766 }], 1766 }],
1767 ['_toolset=="target"', { 1767 ['_toolset=="target"', {
1768 'sources': [ 1768 'sources': [
1769 '../../src/base/platform/platform-qnx.cc' 1769 'base/platform/platform-qnx.cc'
1770 ], 1770 ],
1771 }], 1771 }],
1772 ], 1772 ],
1773 }, 1773 },
1774 ], 1774 ],
1775 ['OS=="freebsd"', { 1775 ['OS=="freebsd"', {
1776 'link_settings': { 1776 'link_settings': {
1777 'libraries': [ 1777 'libraries': [
1778 '-L/usr/local/lib -lexecinfo', 1778 '-L/usr/local/lib -lexecinfo',
1779 ]}, 1779 ]},
1780 'sources': [ 1780 'sources': [
1781 '../../src/base/platform/platform-freebsd.cc', 1781 'base/platform/platform-freebsd.cc',
1782 '../../src/base/platform/platform-posix.cc' 1782 'base/platform/platform-posix.cc'
1783 ], 1783 ],
1784 } 1784 }
1785 ], 1785 ],
1786 ['OS=="openbsd"', { 1786 ['OS=="openbsd"', {
1787 'link_settings': { 1787 'link_settings': {
1788 'libraries': [ 1788 'libraries': [
1789 '-L/usr/local/lib -lexecinfo', 1789 '-L/usr/local/lib -lexecinfo',
1790 ]}, 1790 ]},
1791 'sources': [ 1791 'sources': [
1792 '../../src/base/platform/platform-openbsd.cc', 1792 'base/platform/platform-openbsd.cc',
1793 '../../src/base/platform/platform-posix.cc' 1793 'base/platform/platform-posix.cc'
1794 ], 1794 ],
1795 } 1795 }
1796 ], 1796 ],
1797 ['OS=="netbsd"', { 1797 ['OS=="netbsd"', {
1798 'link_settings': { 1798 'link_settings': {
1799 'libraries': [ 1799 'libraries': [
1800 '-L/usr/pkg/lib -Wl,-R/usr/pkg/lib -lexecinfo', 1800 '-L/usr/pkg/lib -Wl,-R/usr/pkg/lib -lexecinfo',
1801 ]}, 1801 ]},
1802 'sources': [ 1802 'sources': [
1803 '../../src/base/platform/platform-openbsd.cc', 1803 'base/platform/platform-openbsd.cc',
1804 '../../src/base/platform/platform-posix.cc' 1804 'base/platform/platform-posix.cc'
1805 ], 1805 ],
1806 } 1806 }
1807 ], 1807 ],
1808 ['OS=="aix"', { 1808 ['OS=="aix"', {
1809 'sources': [ 1809 'sources': [
1810 '../../src/base/platform/platform-aix.cc', 1810 'base/platform/platform-aix.cc',
1811 '../../src/base/platform/platform-posix.cc' 1811 'base/platform/platform-posix.cc'
1812 ]}, 1812 ]},
1813 ], 1813 ],
1814 ['OS=="solaris"', { 1814 ['OS=="solaris"', {
1815 'link_settings': { 1815 'link_settings': {
1816 'libraries': [ 1816 'libraries': [
1817 '-lnsl -lrt', 1817 '-lnsl -lrt',
1818 ]}, 1818 ]},
1819 'sources': [ 1819 'sources': [
1820 '../../src/base/platform/platform-solaris.cc', 1820 'base/platform/platform-solaris.cc',
1821 '../../src/base/platform/platform-posix.cc' 1821 'base/platform/platform-posix.cc'
1822 ], 1822 ],
1823 } 1823 }
1824 ], 1824 ],
1825 ['OS=="mac"', { 1825 ['OS=="mac"', {
1826 'sources': [ 1826 'sources': [
1827 '../../src/base/platform/platform-macos.cc', 1827 'base/platform/platform-macos.cc',
1828 '../../src/base/platform/platform-posix.cc' 1828 'base/platform/platform-posix.cc'
1829 ]}, 1829 ]},
1830 ], 1830 ],
1831 ['OS=="win"', { 1831 ['OS=="win"', {
1832 'defines': [ 1832 'defines': [
1833 '_CRT_RAND_S' # for rand_s() 1833 '_CRT_RAND_S' # for rand_s()
1834 ], 1834 ],
1835 'variables': { 1835 'variables': {
1836 'gyp_generators': '<!(echo $GYP_GENERATORS)', 1836 'gyp_generators': '<!(echo $GYP_GENERATORS)',
1837 }, 1837 },
1838 'conditions': [ 1838 'conditions': [
1839 ['gyp_generators=="make"', { 1839 ['gyp_generators=="make"', {
1840 'variables': { 1840 'variables': {
1841 'build_env': '<!(uname -o)', 1841 'build_env': '<!(uname -o)',
1842 }, 1842 },
1843 'conditions': [ 1843 'conditions': [
1844 ['build_env=="Cygwin"', { 1844 ['build_env=="Cygwin"', {
1845 'sources': [ 1845 'sources': [
1846 '../../src/base/platform/platform-cygwin.cc', 1846 'base/platform/platform-cygwin.cc',
1847 '../../src/base/platform/platform-posix.cc' 1847 'base/platform/platform-posix.cc'
1848 ], 1848 ],
1849 }, { 1849 }, {
1850 'sources': [ 1850 'sources': [
1851 '../../src/base/platform/platform-win32.cc', 1851 'base/platform/platform-win32.cc',
1852 '../../src/base/win32-headers.h', 1852 'base/win32-headers.h',
1853 ], 1853 ],
1854 }], 1854 }],
1855 ], 1855 ],
1856 'link_settings': { 1856 'link_settings': {
1857 'libraries': [ '-lwinmm', '-lws2_32' ], 1857 'libraries': [ '-lwinmm', '-lws2_32' ],
1858 }, 1858 },
1859 }, { 1859 }, {
1860 'sources': [ 1860 'sources': [
1861 '../../src/base/platform/platform-win32.cc', 1861 'base/platform/platform-win32.cc',
1862 '../../src/base/win32-headers.h', 1862 'base/win32-headers.h',
1863 ], 1863 ],
1864 'msvs_disabled_warnings': [4351, 4355, 4800], 1864 'msvs_disabled_warnings': [4351, 4355, 4800],
1865 'link_settings': { 1865 'link_settings': {
1866 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 1866 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
1867 }, 1867 },
1868 }], 1868 }],
1869 ], 1869 ],
1870 }], 1870 }],
1871 ], 1871 ],
1872 }, 1872 },
1873 { 1873 {
1874 'target_name': 'v8_libplatform', 1874 'target_name': 'v8_libplatform',
1875 'type': 'static_library', 1875 'type': 'static_library',
1876 'variables': { 1876 'variables': {
1877 'optimize': 'max', 1877 'optimize': 'max',
1878 }, 1878 },
1879 'dependencies': [ 1879 'dependencies': [
1880 'v8_libbase', 1880 'v8_libbase',
1881 ], 1881 ],
1882 'include_dirs+': [ 1882 'include_dirs+': [
1883 '../..', 1883 '..',
1884 ], 1884 ],
1885 'sources': [ 1885 'sources': [
1886 '../../include/libplatform/libplatform.h', 1886 '../include/libplatform/libplatform.h',
1887 '../../src/libplatform/default-platform.cc', 1887 'libplatform/default-platform.cc',
1888 '../../src/libplatform/default-platform.h', 1888 'libplatform/default-platform.h',
1889 '../../src/libplatform/task-queue.cc', 1889 'libplatform/task-queue.cc',
1890 '../../src/libplatform/task-queue.h', 1890 'libplatform/task-queue.h',
1891 '../../src/libplatform/worker-thread.cc', 1891 'libplatform/worker-thread.cc',
1892 '../../src/libplatform/worker-thread.h', 1892 'libplatform/worker-thread.h',
1893 ], 1893 ],
1894 'conditions': [ 1894 'conditions': [
1895 ['want_separate_host_toolset==1', { 1895 ['want_separate_host_toolset==1', {
1896 'toolsets': ['host', 'target'], 1896 'toolsets': ['host', 'target'],
1897 }, { 1897 }, {
1898 'toolsets': ['target'], 1898 'toolsets': ['target'],
1899 }], 1899 }],
1900 ], 1900 ],
1901 'direct_dependent_settings': { 1901 'direct_dependent_settings': {
1902 'include_dirs': [ 1902 'include_dirs': [
1903 '../../include', 1903 '../include',
1904 ], 1904 ],
1905 }, 1905 },
1906 }, 1906 },
1907 { 1907 {
1908 'target_name': 'natives_blob', 1908 'target_name': 'natives_blob',
1909 'type': 'none', 1909 'type': 'none',
1910 'conditions': [ 1910 'conditions': [
1911 [ 'v8_use_external_startup_data==1', { 1911 [ 'v8_use_external_startup_data==1', {
1912 'conditions': [ 1912 'conditions': [
1913 ['want_separate_host_toolset==1', { 1913 ['want_separate_host_toolset==1', {
1914 'dependencies': ['js2c#host'], 1914 'dependencies': ['js2c#host'],
1915 }, { 1915 }, {
1916 'dependencies': ['js2c'], 1916 'dependencies': ['js2c'],
1917 }], 1917 }],
1918 ], 1918 ],
1919 'actions': [{ 1919 'actions': [{
1920 'action_name': 'concatenate_natives_blob', 1920 'action_name': 'concatenate_natives_blob',
1921 'inputs': [ 1921 'inputs': [
1922 '../../tools/concatenate-files.py', 1922 '../tools/concatenate-files.py',
1923 '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 1923 '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
1924 '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental.bin', 1924 '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental.bin',
1925 '<(SHARED_INTERMEDIATE_DIR)/libraries-extras.bin', 1925 '<(SHARED_INTERMEDIATE_DIR)/libraries-extras.bin',
1926 '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental-extras.bin', 1926 '<(SHARED_INTERMEDIATE_DIR)/libraries-experimental-extras.bin',
1927 ], 1927 ],
1928 'conditions': [ 1928 'conditions': [
1929 ['want_separate_host_toolset==1', { 1929 ['want_separate_host_toolset==1', {
1930 'target_conditions': [ 1930 'target_conditions': [
1931 ['_toolset=="host"', { 1931 ['_toolset=="host"', {
1932 'outputs': [ 1932 'outputs': [
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
1967 'type': 'none', 1967 'type': 'none',
1968 'conditions': [ 1968 'conditions': [
1969 ['want_separate_host_toolset==1', { 1969 ['want_separate_host_toolset==1', {
1970 'toolsets': ['host'], 1970 'toolsets': ['host'],
1971 }, { 1971 }, {
1972 'toolsets': ['target'], 1972 'toolsets': ['target'],
1973 }], 1973 }],
1974 ['v8_enable_i18n_support==1', { 1974 ['v8_enable_i18n_support==1', {
1975 'variables': { 1975 'variables': {
1976 'i18n_library_files': [ 1976 'i18n_library_files': [
1977 '../../src/js/i18n.js', 1977 'js/i18n.js',
1978 ], 1978 ],
1979 }, 1979 },
1980 }, { 1980 }, {
1981 'variables': { 1981 'variables': {
1982 'i18n_library_files': [], 1982 'i18n_library_files': [],
1983 }, 1983 },
1984 }], 1984 }],
1985 ], 1985 ],
1986 'variables': { 1986 'variables': {
1987 'library_files': [ 1987 'library_files': [
1988 '../../src/js/macros.py', 1988 'js/macros.py',
1989 '../../src/messages.h', 1989 'messages.h',
1990 '../../src/js/prologue.js', 1990 'js/prologue.js',
1991 '../../src/js/runtime.js', 1991 'js/runtime.js',
1992 '../../src/js/v8natives.js', 1992 'js/v8natives.js',
1993 '../../src/js/symbol.js', 1993 'js/symbol.js',
1994 '../../src/js/array.js', 1994 'js/array.js',
1995 '../../src/js/string.js', 1995 'js/string.js',
1996 '../../src/js/uri.js', 1996 'js/uri.js',
1997 '../../src/js/math.js', 1997 'js/math.js',
1998 '../../src/third_party/fdlibm/fdlibm.js', 1998 'third_party/fdlibm/fdlibm.js',
1999 '../../src/js/regexp.js', 1999 'js/regexp.js',
2000 '../../src/js/arraybuffer.js', 2000 'js/arraybuffer.js',
2001 '../../src/js/typedarray.js', 2001 'js/typedarray.js',
2002 '../../src/js/iterator-prototype.js', 2002 'js/iterator-prototype.js',
2003 '../../src/js/collection.js', 2003 'js/collection.js',
2004 '../../src/js/weak-collection.js', 2004 'js/weak-collection.js',
2005 '../../src/js/collection-iterator.js', 2005 'js/collection-iterator.js',
2006 '../../src/js/promise.js', 2006 'js/promise.js',
2007 '../../src/js/messages.js', 2007 'js/messages.js',
2008 '../../src/js/json.js', 2008 'js/json.js',
2009 '../../src/js/array-iterator.js', 2009 'js/array-iterator.js',
2010 '../../src/js/string-iterator.js', 2010 'js/string-iterator.js',
2011 '../../src/js/templates.js', 2011 'js/templates.js',
2012 '../../src/js/spread.js', 2012 'js/spread.js',
2013 '../../src/js/proxy.js', 2013 'js/proxy.js',
2014 '../../src/debug/mirrors.js', 2014 'debug/mirrors.js',
2015 '../../src/debug/debug.js', 2015 'debug/debug.js',
2016 '../../src/debug/liveedit.js', 2016 'debug/liveedit.js',
2017 ], 2017 ],
2018 'experimental_library_files': [ 2018 'experimental_library_files': [
2019 '../../src/js/macros.py', 2019 'js/macros.py',
2020 '../../src/messages.h', 2020 'messages.h',
2021 '../../src/js/harmony-atomics.js', 2021 'js/harmony-atomics.js',
2022 '../../src/js/harmony-regexp-exec.js', 2022 'js/harmony-regexp-exec.js',
2023 '../../src/js/harmony-sharedarraybuffer.js', 2023 'js/harmony-sharedarraybuffer.js',
2024 '../../src/js/harmony-simd.js', 2024 'js/harmony-simd.js',
2025 '../../src/js/harmony-species.js', 2025 'js/harmony-species.js',
2026 '../../src/js/harmony-unicode-regexps.js', 2026 'js/harmony-unicode-regexps.js',
2027 '../../src/js/harmony-string-padding.js', 2027 'js/harmony-string-padding.js',
2028 '../../src/js/promise-extra.js', 2028 'js/promise-extra.js',
2029 ], 2029 ],
2030 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin', 2030 'libraries_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries.bin',
2031 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin', 2031 'libraries_experimental_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries -experimental.bin',
2032 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin', 2032 'libraries_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/libraries-extra s.bin',
2033 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin', 2033 'libraries_experimental_extras_bin_file': '<(SHARED_INTERMEDIATE_DIR)/li braries-experimental-extras.bin',
2034 }, 2034 },
2035 'actions': [ 2035 'actions': [
2036 { 2036 {
2037 'action_name': 'js2c', 2037 'action_name': 'js2c',
2038 'inputs': [ 2038 'inputs': [
2039 '../../tools/js2c.py', 2039 '../tools/js2c.py',
2040 '<@(library_files)', 2040 '<@(library_files)',
2041 '<@(i18n_library_files)' 2041 '<@(i18n_library_files)'
2042 ], 2042 ],
2043 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/libraries.cc'], 2043 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/libraries.cc'],
2044 'action': [ 2044 'action': [
2045 'python', 2045 'python',
2046 '../../tools/js2c.py', 2046 '../tools/js2c.py',
2047 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 2047 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
2048 'CORE', 2048 'CORE',
2049 '<@(library_files)', 2049 '<@(library_files)',
2050 '<@(i18n_library_files)' 2050 '<@(i18n_library_files)'
2051 ], 2051 ],
2052 }, 2052 },
2053 { 2053 {
2054 'action_name': 'js2c_bin', 2054 'action_name': 'js2c_bin',
2055 'inputs': [ 2055 'inputs': [
2056 '../../tools/js2c.py', 2056 '../tools/js2c.py',
2057 '<@(library_files)', 2057 '<@(library_files)',
2058 '<@(i18n_library_files)' 2058 '<@(i18n_library_files)'
2059 ], 2059 ],
2060 'outputs': ['<@(libraries_bin_file)'], 2060 'outputs': ['<@(libraries_bin_file)'],
2061 'action': [ 2061 'action': [
2062 'python', 2062 'python',
2063 '../../tools/js2c.py', 2063 '../tools/js2c.py',
2064 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc', 2064 '<(SHARED_INTERMEDIATE_DIR)/libraries.cc',
2065 'CORE', 2065 'CORE',
2066 '<@(library_files)', 2066 '<@(library_files)',
2067 '<@(i18n_library_files)', 2067 '<@(i18n_library_files)',
2068 '--startup_blob', '<@(libraries_bin_file)', 2068 '--startup_blob', '<@(libraries_bin_file)',
2069 '--nojs', 2069 '--nojs',
2070 ], 2070 ],
2071 }, 2071 },
2072 { 2072 {
2073 'action_name': 'js2c_experimental', 2073 'action_name': 'js2c_experimental',
2074 'inputs': [ 2074 'inputs': [
2075 '../../tools/js2c.py', 2075 '../tools/js2c.py',
2076 '<@(experimental_library_files)', 2076 '<@(experimental_library_files)',
2077 ], 2077 ],
2078 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc'], 2078 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc'],
2079 'action': [ 2079 'action': [
2080 'python', 2080 'python',
2081 '../../tools/js2c.py', 2081 '../tools/js2c.py',
2082 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 2082 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
2083 'EXPERIMENTAL', 2083 'EXPERIMENTAL',
2084 '<@(experimental_library_files)' 2084 '<@(experimental_library_files)'
2085 ], 2085 ],
2086 }, 2086 },
2087 { 2087 {
2088 'action_name': 'js2c_experimental_bin', 2088 'action_name': 'js2c_experimental_bin',
2089 'inputs': [ 2089 'inputs': [
2090 '../../tools/js2c.py', 2090 '../tools/js2c.py',
2091 '<@(experimental_library_files)', 2091 '<@(experimental_library_files)',
2092 ], 2092 ],
2093 'outputs': ['<@(libraries_experimental_bin_file)'], 2093 'outputs': ['<@(libraries_experimental_bin_file)'],
2094 'action': [ 2094 'action': [
2095 'python', 2095 'python',
2096 '../../tools/js2c.py', 2096 '../tools/js2c.py',
2097 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc', 2097 '<(SHARED_INTERMEDIATE_DIR)/experimental-libraries.cc',
2098 'EXPERIMENTAL', 2098 'EXPERIMENTAL',
2099 '<@(experimental_library_files)', 2099 '<@(experimental_library_files)',
2100 '--startup_blob', '<@(libraries_experimental_bin_file)', 2100 '--startup_blob', '<@(libraries_experimental_bin_file)',
2101 '--nojs', 2101 '--nojs',
2102 ], 2102 ],
2103 }, 2103 },
2104 { 2104 {
2105 'action_name': 'js2c_extras', 2105 'action_name': 'js2c_extras',
2106 'inputs': [ 2106 'inputs': [
2107 '../../tools/js2c.py', 2107 '../tools/js2c.py',
2108 '<@(v8_extra_library_files)', 2108 '<@(v8_extra_library_files)',
2109 ], 2109 ],
2110 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc'], 2110 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc'],
2111 'action': [ 2111 'action': [
2112 'python', 2112 'python',
2113 '../../tools/js2c.py', 2113 '../tools/js2c.py',
2114 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 2114 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
2115 'EXTRAS', 2115 'EXTRAS',
2116 '<@(v8_extra_library_files)', 2116 '<@(v8_extra_library_files)',
2117 ], 2117 ],
2118 }, 2118 },
2119 { 2119 {
2120 'action_name': 'js2c_extras_bin', 2120 'action_name': 'js2c_extras_bin',
2121 'inputs': [ 2121 'inputs': [
2122 '../../tools/js2c.py', 2122 '../tools/js2c.py',
2123 '<@(v8_extra_library_files)', 2123 '<@(v8_extra_library_files)',
2124 ], 2124 ],
2125 'outputs': ['<@(libraries_extras_bin_file)'], 2125 'outputs': ['<@(libraries_extras_bin_file)'],
2126 'action': [ 2126 'action': [
2127 'python', 2127 'python',
2128 '../../tools/js2c.py', 2128 '../tools/js2c.py',
2129 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc', 2129 '<(SHARED_INTERMEDIATE_DIR)/extras-libraries.cc',
2130 'EXTRAS', 2130 'EXTRAS',
2131 '<@(v8_extra_library_files)', 2131 '<@(v8_extra_library_files)',
2132 '--startup_blob', '<@(libraries_extras_bin_file)', 2132 '--startup_blob', '<@(libraries_extras_bin_file)',
2133 '--nojs', 2133 '--nojs',
2134 ], 2134 ],
2135 }, 2135 },
2136 { 2136 {
2137 'action_name': 'js2c_experimental_extras', 2137 'action_name': 'js2c_experimental_extras',
2138 'inputs': [ 2138 'inputs': [
2139 '../../tools/js2c.py', 2139 '../tools/js2c.py',
2140 '<@(v8_experimental_extra_library_files)', 2140 '<@(v8_experimental_extra_library_files)',
2141 ], 2141 ],
2142 'outputs': [ 2142 'outputs': [
2143 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 2143 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
2144 ], 2144 ],
2145 'action': [ 2145 'action': [
2146 'python', 2146 'python',
2147 '../../tools/js2c.py', 2147 '../tools/js2c.py',
2148 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 2148 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
2149 'EXPERIMENTAL_EXTRAS', 2149 'EXPERIMENTAL_EXTRAS',
2150 '<@(v8_experimental_extra_library_files)', 2150 '<@(v8_experimental_extra_library_files)',
2151 ], 2151 ],
2152 }, 2152 },
2153 { 2153 {
2154 'action_name': 'js2c_experimental_extras_bin', 2154 'action_name': 'js2c_experimental_extras_bin',
2155 'inputs': [ 2155 'inputs': [
2156 '../../tools/js2c.py', 2156 '../tools/js2c.py',
2157 '<@(v8_experimental_extra_library_files)', 2157 '<@(v8_experimental_extra_library_files)',
2158 ], 2158 ],
2159 'outputs': ['<@(libraries_experimental_extras_bin_file)'], 2159 'outputs': ['<@(libraries_experimental_extras_bin_file)'],
2160 'action': [ 2160 'action': [
2161 'python', 2161 'python',
2162 '../../tools/js2c.py', 2162 '../tools/js2c.py',
2163 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc', 2163 '<(SHARED_INTERMEDIATE_DIR)/experimental-extras-libraries.cc',
2164 'EXPERIMENTAL_EXTRAS', 2164 'EXPERIMENTAL_EXTRAS',
2165 '<@(v8_experimental_extra_library_files)', 2165 '<@(v8_experimental_extra_library_files)',
2166 '--startup_blob', '<@(libraries_experimental_extras_bin_file)', 2166 '--startup_blob', '<@(libraries_experimental_extras_bin_file)',
2167 '--nojs', 2167 '--nojs',
2168 ], 2168 ],
2169 }, 2169 },
2170 ], 2170 ],
2171 }, 2171 },
2172 { 2172 {
2173 'target_name': 'postmortem-metadata', 2173 'target_name': 'postmortem-metadata',
2174 'type': 'none', 2174 'type': 'none',
2175 'variables': { 2175 'variables': {
2176 'heapobject_files': [ 2176 'heapobject_files': [
2177 '../../src/objects.h', 2177 'objects.h',
2178 '../../src/objects-inl.h', 2178 'objects-inl.h',
2179 ], 2179 ],
2180 }, 2180 },
2181 'actions': [ 2181 'actions': [
2182 { 2182 {
2183 'action_name': 'gen-postmortem-metadata', 2183 'action_name': 'gen-postmortem-metadata',
2184 'inputs': [ 2184 'inputs': [
2185 '../../tools/gen-postmortem-metadata.py', 2185 '../tools/gen-postmortem-metadata.py',
2186 '<@(heapobject_files)', 2186 '<@(heapobject_files)',
2187 ], 2187 ],
2188 'outputs': [ 2188 'outputs': [
2189 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc', 2189 '<(SHARED_INTERMEDIATE_DIR)/debug-support.cc',
2190 ], 2190 ],
2191 'action': [ 2191 'action': [
2192 'python', 2192 'python',
2193 '../../tools/gen-postmortem-metadata.py', 2193 '../tools/gen-postmortem-metadata.py',
2194 '<@(_outputs)', 2194 '<@(_outputs)',
2195 '<@(heapobject_files)' 2195 '<@(heapobject_files)'
2196 ] 2196 ]
2197 } 2197 }
2198 ] 2198 ]
2199 }, 2199 },
2200 { 2200 {
2201 'target_name': 'mksnapshot', 2201 'target_name': 'mksnapshot',
2202 'type': 'executable', 2202 'type': 'executable',
2203 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'], 2203 'dependencies': ['v8_base', 'v8_nosnapshot', 'v8_libplatform'],
2204 'include_dirs+': [ 2204 'include_dirs+': [
2205 '../..', 2205 '..',
2206 ], 2206 ],
2207 'sources': [ 2207 'sources': [
2208 '../../src/snapshot/mksnapshot.cc', 2208 'snapshot/mksnapshot.cc',
2209 ], 2209 ],
2210 'conditions': [ 2210 'conditions': [
2211 ['v8_enable_i18n_support==1', { 2211 ['v8_enable_i18n_support==1', {
2212 'dependencies': [ 2212 'dependencies': [
2213 '<(icu_gyp_path):icui18n', 2213 '<(icu_gyp_path):icui18n',
2214 '<(icu_gyp_path):icuuc', 2214 '<(icu_gyp_path):icuuc',
2215 ] 2215 ]
2216 }], 2216 }],
2217 ['want_separate_host_toolset==1', { 2217 ['want_separate_host_toolset==1', {
2218 'toolsets': ['host'], 2218 'toolsets': ['host'],
2219 }, { 2219 }, {
2220 'toolsets': ['target'], 2220 'toolsets': ['target'],
2221 }], 2221 }],
2222 ], 2222 ],
2223 }, 2223 },
2224 ], 2224 ],
2225 } 2225 }
OLDNEW
« no previous file with comments | « src/third_party/vtune/v8vtune.gyp ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698