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

Side by Side Diff: tools/gyp/v8.gyp

Issue 669053002: [turbofan] split compilation stats off from HStatistics and track high water marks (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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 | Annotate | Revision Log
« src/isolate.h ('K') | « test/unittests/compiler/zone-pool-unittest.cc ('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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 '../../src/code-factory.cc', 380 '../../src/code-factory.cc',
381 '../../src/code-factory.h', 381 '../../src/code-factory.h',
382 '../../src/code-stubs.cc', 382 '../../src/code-stubs.cc',
383 '../../src/code-stubs.h', 383 '../../src/code-stubs.h',
384 '../../src/code-stubs-hydrogen.cc', 384 '../../src/code-stubs-hydrogen.cc',
385 '../../src/code.h', 385 '../../src/code.h',
386 '../../src/codegen.cc', 386 '../../src/codegen.cc',
387 '../../src/codegen.h', 387 '../../src/codegen.h',
388 '../../src/compilation-cache.cc', 388 '../../src/compilation-cache.cc',
389 '../../src/compilation-cache.h', 389 '../../src/compilation-cache.h',
390 '../../src/compilation-statistics.cc',
391 '../../src/compilation-statistics.h',
390 '../../src/compiler/access-builder.cc', 392 '../../src/compiler/access-builder.cc',
391 '../../src/compiler/access-builder.h', 393 '../../src/compiler/access-builder.h',
392 '../../src/compiler/ast-graph-builder.cc', 394 '../../src/compiler/ast-graph-builder.cc',
393 '../../src/compiler/ast-graph-builder.h', 395 '../../src/compiler/ast-graph-builder.h',
394 '../../src/compiler/basic-block-instrumentor.cc', 396 '../../src/compiler/basic-block-instrumentor.cc',
395 '../../src/compiler/basic-block-instrumentor.h', 397 '../../src/compiler/basic-block-instrumentor.h',
396 '../../src/compiler/change-lowering.cc', 398 '../../src/compiler/change-lowering.cc',
397 '../../src/compiler/change-lowering.h', 399 '../../src/compiler/change-lowering.h',
398 '../../src/compiler/code-generator-impl.h', 400 '../../src/compiler/code-generator-impl.h',
399 '../../src/compiler/code-generator.cc', 401 '../../src/compiler/code-generator.cc',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 '../../src/compiler/node.cc', 468 '../../src/compiler/node.cc',
467 '../../src/compiler/node.h', 469 '../../src/compiler/node.h',
468 '../../src/compiler/opcodes.h', 470 '../../src/compiler/opcodes.h',
469 '../../src/compiler/operator-properties-inl.h', 471 '../../src/compiler/operator-properties-inl.h',
470 '../../src/compiler/operator-properties.h', 472 '../../src/compiler/operator-properties.h',
471 '../../src/compiler/operator.cc', 473 '../../src/compiler/operator.cc',
472 '../../src/compiler/operator.h', 474 '../../src/compiler/operator.h',
473 '../../src/compiler/phi-reducer.h', 475 '../../src/compiler/phi-reducer.h',
474 '../../src/compiler/pipeline.cc', 476 '../../src/compiler/pipeline.cc',
475 '../../src/compiler/pipeline.h', 477 '../../src/compiler/pipeline.h',
478 '../../src/compiler/pipeline-statistics.cc',
479 '../../src/compiler/pipeline-statistics.h',
476 '../../src/compiler/raw-machine-assembler.cc', 480 '../../src/compiler/raw-machine-assembler.cc',
477 '../../src/compiler/raw-machine-assembler.h', 481 '../../src/compiler/raw-machine-assembler.h',
478 '../../src/compiler/register-allocator.cc', 482 '../../src/compiler/register-allocator.cc',
479 '../../src/compiler/register-allocator.h', 483 '../../src/compiler/register-allocator.h',
480 '../../src/compiler/representation-change.h', 484 '../../src/compiler/representation-change.h',
481 '../../src/compiler/schedule.cc', 485 '../../src/compiler/schedule.cc',
482 '../../src/compiler/schedule.h', 486 '../../src/compiler/schedule.h',
483 '../../src/compiler/scheduler.cc', 487 '../../src/compiler/scheduler.cc',
484 '../../src/compiler/scheduler.h', 488 '../../src/compiler/scheduler.h',
485 '../../src/compiler/simplified-lowering.cc', 489 '../../src/compiler/simplified-lowering.cc',
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
1724 }], 1728 }],
1725 ['v8_compress_startup_data=="bz2"', { 1729 ['v8_compress_startup_data=="bz2"', {
1726 'libraries': [ 1730 'libraries': [
1727 '-lbz2', 1731 '-lbz2',
1728 ] 1732 ]
1729 }], 1733 }],
1730 ], 1734 ],
1731 }, 1735 },
1732 ], 1736 ],
1733 } 1737 }
OLDNEW
« src/isolate.h ('K') | « test/unittests/compiler/zone-pool-unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698