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

Side by Side Diff: src/v8.gyp

Issue 2351763002: [Interpreter] Optimize BytecodeArrayBuilder and BytecodeArrayWriter. (Closed)
Patch Set: [Interpreter] Optimize BytecodeArrayBuilder and BytecodeArrayWriter. Created 4 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 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 'interpreter/bytecode-dead-code-optimizer.cc', 983 'interpreter/bytecode-dead-code-optimizer.cc',
984 'interpreter/bytecode-dead-code-optimizer.h', 984 'interpreter/bytecode-dead-code-optimizer.h',
985 'interpreter/bytecode-decoder.cc', 985 'interpreter/bytecode-decoder.cc',
986 'interpreter/bytecode-decoder.h', 986 'interpreter/bytecode-decoder.h',
987 'interpreter/bytecode-flags.cc', 987 'interpreter/bytecode-flags.cc',
988 'interpreter/bytecode-flags.h', 988 'interpreter/bytecode-flags.h',
989 'interpreter/bytecode-generator.cc', 989 'interpreter/bytecode-generator.cc',
990 'interpreter/bytecode-generator.h', 990 'interpreter/bytecode-generator.h',
991 'interpreter/bytecode-label.cc', 991 'interpreter/bytecode-label.cc',
992 'interpreter/bytecode-label.h', 992 'interpreter/bytecode-label.h',
993 'interpreter/bytecode-operands.cc',
994 'interpreter/bytecode-operands.h',
993 'interpreter/bytecode-peephole-optimizer.cc', 995 'interpreter/bytecode-peephole-optimizer.cc',
994 'interpreter/bytecode-peephole-optimizer.h', 996 'interpreter/bytecode-peephole-optimizer.h',
995 'interpreter/bytecode-peephole-table.h', 997 'interpreter/bytecode-peephole-table.h',
996 'interpreter/bytecode-pipeline.cc', 998 'interpreter/bytecode-pipeline.cc',
997 'interpreter/bytecode-pipeline.h', 999 'interpreter/bytecode-pipeline.h',
998 'interpreter/bytecode-register.cc', 1000 'interpreter/bytecode-register.cc',
999 'interpreter/bytecode-register.h', 1001 'interpreter/bytecode-register.h',
1000 'interpreter/bytecode-register-allocator.cc', 1002 'interpreter/bytecode-register-allocator.cc',
1001 'interpreter/bytecode-register-allocator.h', 1003 'interpreter/bytecode-register-allocator.h',
1002 'interpreter/bytecode-register-optimizer.cc', 1004 'interpreter/bytecode-register-optimizer.cc',
(...skipping 1429 matching lines...) Expand 10 before | Expand all | Expand 10 after
2432 ], 2434 ],
2433 }, 2435 },
2434 { 2436 {
2435 'target_name': 'mkpeephole', 2437 'target_name': 'mkpeephole',
2436 'type': 'executable', 2438 'type': 'executable',
2437 'dependencies': [ 'v8_libbase' ], 2439 'dependencies': [ 'v8_libbase' ],
2438 'include_dirs+': [ 2440 'include_dirs+': [
2439 '..', 2441 '..',
2440 ], 2442 ],
2441 'sources': [ 2443 'sources': [
2444 'interpreter/bytecode-operands.h',
2445 'interpreter/bytecode-operands.cc',
2442 'interpreter/bytecode-peephole-table.h', 2446 'interpreter/bytecode-peephole-table.h',
2447 'interpreter/bytecode-traits.h',
2443 'interpreter/bytecodes.h', 2448 'interpreter/bytecodes.h',
2444 'interpreter/bytecodes.cc', 2449 'interpreter/bytecodes.cc',
2445 'interpreter/mkpeephole.cc' 2450 'interpreter/mkpeephole.cc'
2446 ], 2451 ],
2447 'conditions': [ 2452 'conditions': [
2448 ['want_separate_host_toolset_mkpeephole==1', { 2453 ['want_separate_host_toolset_mkpeephole==1', {
2449 'toolsets': ['host'], 2454 'toolsets': ['host'],
2450 }, { 2455 }, {
2451 'toolsets': ['target'], 2456 'toolsets': ['target'],
2452 }], 2457 }],
2453 ], 2458 ],
2454 }, 2459 },
2455 ], 2460 ],
2456 } 2461 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698