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

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: Fix GN for realz 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
« no previous file with comments | « test/unittests/unittests.gyp ('k') | no next file » | 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 '../../src/compiler/graph.cc', 497 '../../src/compiler/graph.cc',
498 '../../src/compiler/graph.h', 498 '../../src/compiler/graph.h',
499 '../../src/compiler/greedy-allocator.cc', 499 '../../src/compiler/greedy-allocator.cc',
500 '../../src/compiler/greedy-allocator.h', 500 '../../src/compiler/greedy-allocator.h',
501 '../../src/compiler/instruction-codes.h', 501 '../../src/compiler/instruction-codes.h',
502 '../../src/compiler/instruction-selector-impl.h', 502 '../../src/compiler/instruction-selector-impl.h',
503 '../../src/compiler/instruction-selector.cc', 503 '../../src/compiler/instruction-selector.cc',
504 '../../src/compiler/instruction-selector.h', 504 '../../src/compiler/instruction-selector.h',
505 '../../src/compiler/instruction.cc', 505 '../../src/compiler/instruction.cc',
506 '../../src/compiler/instruction.h', 506 '../../src/compiler/instruction.h',
507 '../../src/compiler/interpreter-assembler.cc',
508 '../../src/compiler/interpreter-assembler.h',
507 '../../src/compiler/js-builtin-reducer.cc', 509 '../../src/compiler/js-builtin-reducer.cc',
508 '../../src/compiler/js-builtin-reducer.h', 510 '../../src/compiler/js-builtin-reducer.h',
509 '../../src/compiler/js-context-relaxation.cc', 511 '../../src/compiler/js-context-relaxation.cc',
510 '../../src/compiler/js-context-relaxation.h', 512 '../../src/compiler/js-context-relaxation.h',
511 '../../src/compiler/js-context-specialization.cc', 513 '../../src/compiler/js-context-specialization.cc',
512 '../../src/compiler/js-context-specialization.h', 514 '../../src/compiler/js-context-specialization.h',
513 '../../src/compiler/js-frame-specialization.cc', 515 '../../src/compiler/js-frame-specialization.cc',
514 '../../src/compiler/js-frame-specialization.h', 516 '../../src/compiler/js-frame-specialization.h',
515 '../../src/compiler/js-generic-lowering.cc', 517 '../../src/compiler/js-generic-lowering.cc',
516 '../../src/compiler/js-generic-lowering.h', 518 '../../src/compiler/js-generic-lowering.h',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
780 '../../src/ic/ic-state.cc', 782 '../../src/ic/ic-state.cc',
781 '../../src/ic/ic-state.h', 783 '../../src/ic/ic-state.h',
782 '../../src/ic/ic.cc', 784 '../../src/ic/ic.cc',
783 '../../src/ic/ic.h', 785 '../../src/ic/ic.h',
784 '../../src/ic/ic-compiler.cc', 786 '../../src/ic/ic-compiler.cc',
785 '../../src/ic/ic-compiler.h', 787 '../../src/ic/ic-compiler.h',
786 '../../src/interface-descriptors.cc', 788 '../../src/interface-descriptors.cc',
787 '../../src/interface-descriptors.h', 789 '../../src/interface-descriptors.h',
788 '../../src/interpreter-irregexp.cc', 790 '../../src/interpreter-irregexp.cc',
789 '../../src/interpreter-irregexp.h', 791 '../../src/interpreter-irregexp.h',
792 '../../src/interpreter/bytecodes.cc',
793 '../../src/interpreter/bytecodes.h',
794 '../../src/interpreter/interpreter.cc',
795 '../../src/interpreter/interpreter.h',
790 '../../src/isolate.cc', 796 '../../src/isolate.cc',
791 '../../src/isolate.h', 797 '../../src/isolate.h',
792 '../../src/json-parser.h', 798 '../../src/json-parser.h',
793 '../../src/json-stringifier.h', 799 '../../src/json-stringifier.h',
794 '../../src/jsregexp-inl.h', 800 '../../src/jsregexp-inl.h',
795 '../../src/jsregexp.cc', 801 '../../src/jsregexp.cc',
796 '../../src/jsregexp.h', 802 '../../src/jsregexp.h',
797 '../../src/layout-descriptor-inl.h', 803 '../../src/layout-descriptor-inl.h',
798 '../../src/layout-descriptor.cc', 804 '../../src/layout-descriptor.cc',
799 '../../src/layout-descriptor.h', 805 '../../src/layout-descriptor.h',
(...skipping 1169 matching lines...) Expand 10 before | Expand all | Expand 10 after
1969 }], 1975 }],
1970 ['want_separate_host_toolset==1', { 1976 ['want_separate_host_toolset==1', {
1971 'toolsets': ['host'], 1977 'toolsets': ['host'],
1972 }, { 1978 }, {
1973 'toolsets': ['target'], 1979 'toolsets': ['target'],
1974 }], 1980 }],
1975 ], 1981 ],
1976 }, 1982 },
1977 ], 1983 ],
1978 } 1984 }
OLDNEW
« no previous file with comments | « test/unittests/unittests.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698