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

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: More fixes for bots (tests w/ ASAN and tests w/ slow asserts enabled). 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 '../../src/compiler/access-builder.cc', 447 '../../src/compiler/access-builder.cc',
448 '../../src/compiler/access-builder.h', 448 '../../src/compiler/access-builder.h',
449 '../../src/compiler/all-nodes.cc', 449 '../../src/compiler/all-nodes.cc',
450 '../../src/compiler/all-nodes.h', 450 '../../src/compiler/all-nodes.h',
451 '../../src/compiler/ast-graph-builder.cc', 451 '../../src/compiler/ast-graph-builder.cc',
452 '../../src/compiler/ast-graph-builder.h', 452 '../../src/compiler/ast-graph-builder.h',
453 '../../src/compiler/ast-loop-assignment-analyzer.cc', 453 '../../src/compiler/ast-loop-assignment-analyzer.cc',
454 '../../src/compiler/ast-loop-assignment-analyzer.h', 454 '../../src/compiler/ast-loop-assignment-analyzer.h',
455 '../../src/compiler/basic-block-instrumentor.cc', 455 '../../src/compiler/basic-block-instrumentor.cc',
456 '../../src/compiler/basic-block-instrumentor.h', 456 '../../src/compiler/basic-block-instrumentor.h',
457 '../../src/compiler/bytecode-graph-builder.cc',
458 '../../src/compiler/bytecode-graph-builder.h',
457 '../../src/compiler/change-lowering.cc', 459 '../../src/compiler/change-lowering.cc',
458 '../../src/compiler/change-lowering.h', 460 '../../src/compiler/change-lowering.h',
459 '../../src/compiler/c-linkage.cc', 461 '../../src/compiler/c-linkage.cc',
460 '../../src/compiler/coalesced-live-ranges.cc', 462 '../../src/compiler/coalesced-live-ranges.cc',
461 '../../src/compiler/coalesced-live-ranges.h', 463 '../../src/compiler/coalesced-live-ranges.h',
462 '../../src/compiler/code-generator-impl.h', 464 '../../src/compiler/code-generator-impl.h',
463 '../../src/compiler/code-generator.cc', 465 '../../src/compiler/code-generator.cc',
464 '../../src/compiler/code-generator.h', 466 '../../src/compiler/code-generator.h',
465 '../../src/compiler/common-node-cache.cc', 467 '../../src/compiler/common-node-cache.cc',
466 '../../src/compiler/common-node-cache.h', 468 '../../src/compiler/common-node-cache.h',
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 '../../src/identity-map.cc', 805 '../../src/identity-map.cc',
804 '../../src/identity-map.h', 806 '../../src/identity-map.h',
805 '../../src/interface-descriptors.cc', 807 '../../src/interface-descriptors.cc',
806 '../../src/interface-descriptors.h', 808 '../../src/interface-descriptors.h',
807 '../../src/interpreter/bytecodes.cc', 809 '../../src/interpreter/bytecodes.cc',
808 '../../src/interpreter/bytecodes.h', 810 '../../src/interpreter/bytecodes.h',
809 '../../src/interpreter/bytecode-generator.cc', 811 '../../src/interpreter/bytecode-generator.cc',
810 '../../src/interpreter/bytecode-generator.h', 812 '../../src/interpreter/bytecode-generator.h',
811 '../../src/interpreter/bytecode-array-builder.cc', 813 '../../src/interpreter/bytecode-array-builder.cc',
812 '../../src/interpreter/bytecode-array-builder.h', 814 '../../src/interpreter/bytecode-array-builder.h',
815 '../../src/interpreter/bytecode-array-iterator.cc',
816 '../../src/interpreter/bytecode-array-iterator.h',
813 '../../src/interpreter/interpreter.cc', 817 '../../src/interpreter/interpreter.cc',
814 '../../src/interpreter/interpreter.h', 818 '../../src/interpreter/interpreter.h',
815 '../../src/isolate-inl.h', 819 '../../src/isolate-inl.h',
816 '../../src/isolate.cc', 820 '../../src/isolate.cc',
817 '../../src/isolate.h', 821 '../../src/isolate.h',
818 '../../src/json-parser.h', 822 '../../src/json-parser.h',
819 '../../src/json-stringifier.h', 823 '../../src/json-stringifier.h',
820 '../../src/layout-descriptor-inl.h', 824 '../../src/layout-descriptor-inl.h',
821 '../../src/layout-descriptor.cc', 825 '../../src/layout-descriptor.cc',
822 '../../src/layout-descriptor.h', 826 '../../src/layout-descriptor.h',
(...skipping 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
2068 }], 2072 }],
2069 ['want_separate_host_toolset==1', { 2073 ['want_separate_host_toolset==1', {
2070 'toolsets': ['host'], 2074 'toolsets': ['host'],
2071 }, { 2075 }, {
2072 'toolsets': ['target'], 2076 'toolsets': ['target'],
2073 }], 2077 }],
2074 ], 2078 ],
2075 }, 2079 },
2076 ], 2080 ],
2077 } 2081 }
OLDNEW
« src/compiler/bytecode-graph-builder.cc ('K') | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698