OLD | NEW |
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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 'compiler/all-nodes.cc', | 543 'compiler/all-nodes.cc', |
544 'compiler/all-nodes.h', | 544 'compiler/all-nodes.h', |
545 'compiler/ast-graph-builder.cc', | 545 'compiler/ast-graph-builder.cc', |
546 'compiler/ast-graph-builder.h', | 546 'compiler/ast-graph-builder.h', |
547 'compiler/ast-loop-assignment-analyzer.cc', | 547 'compiler/ast-loop-assignment-analyzer.cc', |
548 'compiler/ast-loop-assignment-analyzer.h', | 548 'compiler/ast-loop-assignment-analyzer.h', |
549 'compiler/basic-block-instrumentor.cc', | 549 'compiler/basic-block-instrumentor.cc', |
550 'compiler/basic-block-instrumentor.h', | 550 'compiler/basic-block-instrumentor.h', |
551 'compiler/branch-elimination.cc', | 551 'compiler/branch-elimination.cc', |
552 'compiler/branch-elimination.h', | 552 'compiler/branch-elimination.h', |
| 553 'compiler/bytecode-analysis.cc', |
| 554 'compiler/bytecode-analysis.h', |
553 'compiler/bytecode-graph-builder.cc', | 555 'compiler/bytecode-graph-builder.cc', |
554 'compiler/bytecode-graph-builder.h', | 556 'compiler/bytecode-graph-builder.h', |
555 'compiler/bytecode-analysis.cc', | 557 'compiler/bytecode-liveness-map.cc', |
556 'compiler/bytecode-analysis.h', | 558 'compiler/bytecode-liveness-map.h', |
557 'compiler/c-linkage.cc', | 559 'compiler/c-linkage.cc', |
558 'compiler/checkpoint-elimination.cc', | 560 'compiler/checkpoint-elimination.cc', |
559 'compiler/checkpoint-elimination.h', | 561 'compiler/checkpoint-elimination.h', |
560 'compiler/code-generator-impl.h', | 562 'compiler/code-generator-impl.h', |
561 'compiler/code-generator.cc', | 563 'compiler/code-generator.cc', |
562 'compiler/code-generator.h', | 564 'compiler/code-generator.h', |
563 'compiler/code-assembler.cc', | 565 'compiler/code-assembler.cc', |
564 'compiler/code-assembler.h', | 566 'compiler/code-assembler.h', |
565 'compiler/common-node-cache.cc', | 567 'compiler/common-node-cache.cc', |
566 'compiler/common-node-cache.h', | 568 'compiler/common-node-cache.h', |
(...skipping 1902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2469 'conditions': [ | 2471 'conditions': [ |
2470 ['want_separate_host_toolset_mkpeephole==1', { | 2472 ['want_separate_host_toolset_mkpeephole==1', { |
2471 'toolsets': ['host'], | 2473 'toolsets': ['host'], |
2472 }, { | 2474 }, { |
2473 'toolsets': ['target'], | 2475 'toolsets': ['target'], |
2474 }], | 2476 }], |
2475 ], | 2477 ], |
2476 }, | 2478 }, |
2477 ], | 2479 ], |
2478 } | 2480 } |
OLD | NEW |