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

Side by Side Diff: tools/gyp/v8.gyp

Issue 1291693004: [Interpreter] Bytecode graph builder (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Incorporate comments on patch set 8. Created 5 years, 3 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
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 441 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 '../../src/compiler/access-builder.cc', 452 '../../src/compiler/access-builder.cc',
453 '../../src/compiler/access-builder.h', 453 '../../src/compiler/access-builder.h',
454 '../../src/compiler/all-nodes.cc', 454 '../../src/compiler/all-nodes.cc',
455 '../../src/compiler/all-nodes.h', 455 '../../src/compiler/all-nodes.h',
456 '../../src/compiler/ast-graph-builder.cc', 456 '../../src/compiler/ast-graph-builder.cc',
457 '../../src/compiler/ast-graph-builder.h', 457 '../../src/compiler/ast-graph-builder.h',
458 '../../src/compiler/ast-loop-assignment-analyzer.cc', 458 '../../src/compiler/ast-loop-assignment-analyzer.cc',
459 '../../src/compiler/ast-loop-assignment-analyzer.h', 459 '../../src/compiler/ast-loop-assignment-analyzer.h',
460 '../../src/compiler/basic-block-instrumentor.cc', 460 '../../src/compiler/basic-block-instrumentor.cc',
461 '../../src/compiler/basic-block-instrumentor.h', 461 '../../src/compiler/basic-block-instrumentor.h',
462 '../../src/compiler/bytecode-graph-builder.cc',
463 '../../src/compiler/bytecode-graph-builder.h',
462 '../../src/compiler/change-lowering.cc', 464 '../../src/compiler/change-lowering.cc',
463 '../../src/compiler/change-lowering.h', 465 '../../src/compiler/change-lowering.h',
464 '../../src/compiler/c-linkage.cc', 466 '../../src/compiler/c-linkage.cc',
465 '../../src/compiler/coalesced-live-ranges.cc', 467 '../../src/compiler/coalesced-live-ranges.cc',
466 '../../src/compiler/coalesced-live-ranges.h', 468 '../../src/compiler/coalesced-live-ranges.h',
467 '../../src/compiler/code-generator-impl.h', 469 '../../src/compiler/code-generator-impl.h',
468 '../../src/compiler/code-generator.cc', 470 '../../src/compiler/code-generator.cc',
469 '../../src/compiler/code-generator.h', 471 '../../src/compiler/code-generator.h',
470 '../../src/compiler/common-node-cache.cc', 472 '../../src/compiler/common-node-cache.cc',
471 '../../src/compiler/common-node-cache.h', 473 '../../src/compiler/common-node-cache.h',
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 '../../src/identity-map.cc', 806 '../../src/identity-map.cc',
805 '../../src/identity-map.h', 807 '../../src/identity-map.h',
806 '../../src/interface-descriptors.cc', 808 '../../src/interface-descriptors.cc',
807 '../../src/interface-descriptors.h', 809 '../../src/interface-descriptors.h',
808 '../../src/interpreter/bytecodes.cc', 810 '../../src/interpreter/bytecodes.cc',
809 '../../src/interpreter/bytecodes.h', 811 '../../src/interpreter/bytecodes.h',
810 '../../src/interpreter/bytecode-generator.cc', 812 '../../src/interpreter/bytecode-generator.cc',
811 '../../src/interpreter/bytecode-generator.h', 813 '../../src/interpreter/bytecode-generator.h',
812 '../../src/interpreter/bytecode-array-builder.cc', 814 '../../src/interpreter/bytecode-array-builder.cc',
813 '../../src/interpreter/bytecode-array-builder.h', 815 '../../src/interpreter/bytecode-array-builder.h',
816 '../../src/interpreter/bytecode-array-iterator.cc',
817 '../../src/interpreter/bytecode-array-iterator.h',
814 '../../src/interpreter/interpreter.cc', 818 '../../src/interpreter/interpreter.cc',
815 '../../src/interpreter/interpreter.h', 819 '../../src/interpreter/interpreter.h',
816 '../../src/isolate-inl.h', 820 '../../src/isolate-inl.h',
817 '../../src/isolate.cc', 821 '../../src/isolate.cc',
818 '../../src/isolate.h', 822 '../../src/isolate.h',
819 '../../src/json-parser.h', 823 '../../src/json-parser.h',
820 '../../src/json-stringifier.h', 824 '../../src/json-stringifier.h',
821 '../../src/layout-descriptor-inl.h', 825 '../../src/layout-descriptor-inl.h',
822 '../../src/layout-descriptor.cc', 826 '../../src/layout-descriptor.cc',
823 '../../src/layout-descriptor.h', 827 '../../src/layout-descriptor.h',
(...skipping 1205 matching lines...) Expand 10 before | Expand all | Expand 10 after
2029 }], 2033 }],
2030 ['want_separate_host_toolset==1', { 2034 ['want_separate_host_toolset==1', {
2031 'toolsets': ['host'], 2035 'toolsets': ['host'],
2032 }, { 2036 }, {
2033 'toolsets': ['target'], 2037 'toolsets': ['target'],
2034 }], 2038 }],
2035 ], 2039 ],
2036 }, 2040 },
2037 ], 2041 ],
2038 } 2042 }
OLDNEW
« src/interpreter/bytecode-array-iterator.cc ('K') | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698