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

Side by Side Diff: src/v8.gyp

Issue 2335343007: Pool implementation for zone segments (Closed)
Patch Set: Fixed Regexp benchmark regression 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 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1260 'wasm/wasm-opcodes.cc', 1260 'wasm/wasm-opcodes.cc',
1261 'wasm/wasm-opcodes.h', 1261 'wasm/wasm-opcodes.h',
1262 'wasm/wasm-result.cc', 1262 'wasm/wasm-result.cc',
1263 'wasm/wasm-result.h', 1263 'wasm/wasm-result.h',
1264 'zone/accounting-allocator.cc', 1264 'zone/accounting-allocator.cc',
1265 'zone/accounting-allocator.h', 1265 'zone/accounting-allocator.h',
1266 'zone/zone-segment.cc', 1266 'zone/zone-segment.cc',
1267 'zone/zone-segment.h', 1267 'zone/zone-segment.h',
1268 'zone/zone.cc', 1268 'zone/zone.cc',
1269 'zone/zone.h', 1269 'zone/zone.h',
1270 'zone/zone-segment.cc',
1271 'zone/zone-segment.h',
1270 'zone/zone-allocator.h', 1272 'zone/zone-allocator.h',
1271 'zone/zone-containers.h', 1273 'zone/zone-containers.h',
1272 ], 1274 ],
1273 'conditions': [ 1275 'conditions': [
1274 ['want_separate_host_toolset==1', { 1276 ['want_separate_host_toolset==1', {
1275 'toolsets': ['host', 'target'], 1277 'toolsets': ['host', 'target'],
1276 }, { 1278 }, {
1277 'toolsets': ['target'], 1279 'toolsets': ['target'],
1278 }], 1280 }],
1279 ['want_separate_host_toolset_mkpeephole==1', { 1281 ['want_separate_host_toolset_mkpeephole==1', {
(...skipping 1175 matching lines...) Expand 10 before | Expand all | Expand 10 after
2455 'conditions': [ 2457 'conditions': [
2456 ['want_separate_host_toolset_mkpeephole==1', { 2458 ['want_separate_host_toolset_mkpeephole==1', {
2457 'toolsets': ['host'], 2459 'toolsets': ['host'],
2458 }, { 2460 }, {
2459 'toolsets': ['target'], 2461 'toolsets': ['target'],
2460 }], 2462 }],
2461 ], 2463 ],
2462 }, 2464 },
2463 ], 2465 ],
2464 } 2466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698