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

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

Issue 1239793002: [interpreter] Add basic framework for bytecode handler code generation. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add tests Created 5 years, 5 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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
496 '../../src/compiler/graph.cc', 496 '../../src/compiler/graph.cc',
497 '../../src/compiler/graph.h', 497 '../../src/compiler/graph.h',
498 '../../src/compiler/greedy-allocator.cc', 498 '../../src/compiler/greedy-allocator.cc',
499 '../../src/compiler/greedy-allocator.h', 499 '../../src/compiler/greedy-allocator.h',
500 '../../src/compiler/instruction-codes.h', 500 '../../src/compiler/instruction-codes.h',
501 '../../src/compiler/instruction-selector-impl.h', 501 '../../src/compiler/instruction-selector-impl.h',
502 '../../src/compiler/instruction-selector.cc', 502 '../../src/compiler/instruction-selector.cc',
503 '../../src/compiler/instruction-selector.h', 503 '../../src/compiler/instruction-selector.h',
504 '../../src/compiler/instruction.cc', 504 '../../src/compiler/instruction.cc',
505 '../../src/compiler/instruction.h', 505 '../../src/compiler/instruction.h',
506 '../../src/compiler/interpreter-assembler.cc',
507 '../../src/compiler/interpreter-assembler.h',
506 '../../src/compiler/js-builtin-reducer.cc', 508 '../../src/compiler/js-builtin-reducer.cc',
507 '../../src/compiler/js-builtin-reducer.h', 509 '../../src/compiler/js-builtin-reducer.h',
508 '../../src/compiler/js-context-specialization.cc', 510 '../../src/compiler/js-context-specialization.cc',
509 '../../src/compiler/js-context-specialization.h', 511 '../../src/compiler/js-context-specialization.h',
510 '../../src/compiler/js-frame-specialization.cc', 512 '../../src/compiler/js-frame-specialization.cc',
511 '../../src/compiler/js-frame-specialization.h', 513 '../../src/compiler/js-frame-specialization.h',
512 '../../src/compiler/js-generic-lowering.cc', 514 '../../src/compiler/js-generic-lowering.cc',
513 '../../src/compiler/js-generic-lowering.h', 515 '../../src/compiler/js-generic-lowering.h',
514 '../../src/compiler/js-graph.cc', 516 '../../src/compiler/js-graph.cc',
515 '../../src/compiler/js-graph.h', 517 '../../src/compiler/js-graph.h',
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 '../../src/ic/ic-state.cc', 777 '../../src/ic/ic-state.cc',
776 '../../src/ic/ic-state.h', 778 '../../src/ic/ic-state.h',
777 '../../src/ic/ic.cc', 779 '../../src/ic/ic.cc',
778 '../../src/ic/ic.h', 780 '../../src/ic/ic.h',
779 '../../src/ic/ic-compiler.cc', 781 '../../src/ic/ic-compiler.cc',
780 '../../src/ic/ic-compiler.h', 782 '../../src/ic/ic-compiler.h',
781 '../../src/interface-descriptors.cc', 783 '../../src/interface-descriptors.cc',
782 '../../src/interface-descriptors.h', 784 '../../src/interface-descriptors.h',
783 '../../src/interpreter-irregexp.cc', 785 '../../src/interpreter-irregexp.cc',
784 '../../src/interpreter-irregexp.h', 786 '../../src/interpreter-irregexp.h',
787 '../../src/interpreter/bytecodes.cc',
788 '../../src/interpreter/bytecodes.h',
789 '../../src/interpreter/interpreter.cc',
790 '../../src/interpreter/interpreter.h',
785 '../../src/isolate.cc', 791 '../../src/isolate.cc',
786 '../../src/isolate.h', 792 '../../src/isolate.h',
787 '../../src/json-parser.h', 793 '../../src/json-parser.h',
788 '../../src/json-stringifier.h', 794 '../../src/json-stringifier.h',
789 '../../src/jsregexp-inl.h', 795 '../../src/jsregexp-inl.h',
790 '../../src/jsregexp.cc', 796 '../../src/jsregexp.cc',
791 '../../src/jsregexp.h', 797 '../../src/jsregexp.h',
792 '../../src/layout-descriptor-inl.h', 798 '../../src/layout-descriptor-inl.h',
793 '../../src/layout-descriptor.cc', 799 '../../src/layout-descriptor.cc',
794 '../../src/layout-descriptor.h', 800 '../../src/layout-descriptor.h',
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
1961 }], 1967 }],
1962 ['want_separate_host_toolset==1', { 1968 ['want_separate_host_toolset==1', {
1963 'toolsets': ['host'], 1969 'toolsets': ['host'],
1964 }, { 1970 }, {
1965 'toolsets': ['target'], 1971 'toolsets': ['target'],
1966 }], 1972 }],
1967 ], 1973 ],
1968 }, 1974 },
1969 ], 1975 ],
1970 } 1976 }
OLDNEW
« test/unittests/compiler/node-test-utils.cc ('K') | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698