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

Side by Side Diff: src/v8.gyp

Issue 2351763002: [Interpreter] Optimize BytecodeArrayBuilder and BytecodeArrayWriter. (Closed)
Patch Set: Fix Chromium Windows bots. 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 964 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 'interpreter/bytecode-dead-code-optimizer.cc', 975 'interpreter/bytecode-dead-code-optimizer.cc',
976 'interpreter/bytecode-dead-code-optimizer.h', 976 'interpreter/bytecode-dead-code-optimizer.h',
977 'interpreter/bytecode-decoder.cc', 977 'interpreter/bytecode-decoder.cc',
978 'interpreter/bytecode-decoder.h', 978 'interpreter/bytecode-decoder.h',
979 'interpreter/bytecode-flags.cc', 979 'interpreter/bytecode-flags.cc',
980 'interpreter/bytecode-flags.h', 980 'interpreter/bytecode-flags.h',
981 'interpreter/bytecode-generator.cc', 981 'interpreter/bytecode-generator.cc',
982 'interpreter/bytecode-generator.h', 982 'interpreter/bytecode-generator.h',
983 'interpreter/bytecode-label.cc', 983 'interpreter/bytecode-label.cc',
984 'interpreter/bytecode-label.h', 984 'interpreter/bytecode-label.h',
985 'interpreter/bytecode-operands.cc',
986 'interpreter/bytecode-operands.h',
985 'interpreter/bytecode-peephole-optimizer.cc', 987 'interpreter/bytecode-peephole-optimizer.cc',
986 'interpreter/bytecode-peephole-optimizer.h', 988 'interpreter/bytecode-peephole-optimizer.h',
987 'interpreter/bytecode-peephole-table.h', 989 'interpreter/bytecode-peephole-table.h',
988 'interpreter/bytecode-pipeline.cc', 990 'interpreter/bytecode-pipeline.cc',
989 'interpreter/bytecode-pipeline.h', 991 'interpreter/bytecode-pipeline.h',
990 'interpreter/bytecode-register.cc', 992 'interpreter/bytecode-register.cc',
991 'interpreter/bytecode-register.h', 993 'interpreter/bytecode-register.h',
992 'interpreter/bytecode-register-allocator.cc', 994 'interpreter/bytecode-register-allocator.cc',
993 'interpreter/bytecode-register-allocator.h', 995 'interpreter/bytecode-register-allocator.h',
994 'interpreter/bytecode-register-optimizer.cc', 996 'interpreter/bytecode-register-optimizer.cc',
(...skipping 1437 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
« no previous file with comments | « src/interpreter/bytecodes.cc ('k') | test/unittests/interpreter/bytecode-array-writer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698