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

Side by Side Diff: src/v8.gyp

Issue 2369873002: [Interpreter] Replace BytecodeRegisterAllocator with a simple bump pointer. (Closed)
Patch Set: Add dcheck Created 4 years, 2 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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 'interpreter/bytecode-label.h', 985 'interpreter/bytecode-label.h',
986 'interpreter/bytecode-operands.cc', 986 'interpreter/bytecode-operands.cc',
987 'interpreter/bytecode-operands.h', 987 'interpreter/bytecode-operands.h',
988 'interpreter/bytecode-peephole-optimizer.cc', 988 'interpreter/bytecode-peephole-optimizer.cc',
989 'interpreter/bytecode-peephole-optimizer.h', 989 'interpreter/bytecode-peephole-optimizer.h',
990 'interpreter/bytecode-peephole-table.h', 990 'interpreter/bytecode-peephole-table.h',
991 'interpreter/bytecode-pipeline.cc', 991 'interpreter/bytecode-pipeline.cc',
992 'interpreter/bytecode-pipeline.h', 992 'interpreter/bytecode-pipeline.h',
993 'interpreter/bytecode-register.cc', 993 'interpreter/bytecode-register.cc',
994 'interpreter/bytecode-register.h', 994 'interpreter/bytecode-register.h',
995 'interpreter/bytecode-register-allocator.cc',
996 'interpreter/bytecode-register-allocator.h', 995 'interpreter/bytecode-register-allocator.h',
997 'interpreter/bytecode-register-optimizer.cc', 996 'interpreter/bytecode-register-optimizer.cc',
998 'interpreter/bytecode-register-optimizer.h', 997 'interpreter/bytecode-register-optimizer.h',
999 'interpreter/bytecode-traits.h', 998 'interpreter/bytecode-traits.h',
1000 'interpreter/constant-array-builder.cc', 999 'interpreter/constant-array-builder.cc',
1001 'interpreter/constant-array-builder.h', 1000 'interpreter/constant-array-builder.h',
1002 'interpreter/control-flow-builders.cc', 1001 'interpreter/control-flow-builders.cc',
1003 'interpreter/control-flow-builders.h', 1002 'interpreter/control-flow-builders.h',
1004 'interpreter/handler-table-builder.cc', 1003 'interpreter/handler-table-builder.cc',
1005 'interpreter/handler-table-builder.h', 1004 'interpreter/handler-table-builder.h',
(...skipping 1439 matching lines...) Expand 10 before | Expand all | Expand 10 after
2445 'conditions': [ 2444 'conditions': [
2446 ['want_separate_host_toolset_mkpeephole==1', { 2445 ['want_separate_host_toolset_mkpeephole==1', {
2447 'toolsets': ['host'], 2446 'toolsets': ['host'],
2448 }, { 2447 }, {
2449 'toolsets': ['target'], 2448 'toolsets': ['target'],
2450 }], 2449 }],
2451 ], 2450 ],
2452 }, 2451 },
2453 ], 2452 ],
2454 } 2453 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698