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

Side by Side Diff: BUILD.gn

Issue 661923002: Implement graph trimming in ControlReducer. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Use Deque. 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
« no previous file with comments | « no previous file | src/compiler/control-reducer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 "src/compiler/change-lowering.cc", 480 "src/compiler/change-lowering.cc",
481 "src/compiler/change-lowering.h", 481 "src/compiler/change-lowering.h",
482 "src/compiler/code-generator-impl.h", 482 "src/compiler/code-generator-impl.h",
483 "src/compiler/code-generator.cc", 483 "src/compiler/code-generator.cc",
484 "src/compiler/code-generator.h", 484 "src/compiler/code-generator.h",
485 "src/compiler/common-node-cache.h", 485 "src/compiler/common-node-cache.h",
486 "src/compiler/common-operator.cc", 486 "src/compiler/common-operator.cc",
487 "src/compiler/common-operator.h", 487 "src/compiler/common-operator.h",
488 "src/compiler/control-builders.cc", 488 "src/compiler/control-builders.cc",
489 "src/compiler/control-builders.h", 489 "src/compiler/control-builders.h",
490 "src/compiler/control-reducer.cc",
491 "src/compiler/control-reducer.h",
490 "src/compiler/frame.h", 492 "src/compiler/frame.h",
491 "src/compiler/gap-resolver.cc", 493 "src/compiler/gap-resolver.cc",
492 "src/compiler/gap-resolver.h", 494 "src/compiler/gap-resolver.h",
493 "src/compiler/generic-algorithm-inl.h", 495 "src/compiler/generic-algorithm-inl.h",
494 "src/compiler/generic-algorithm.h", 496 "src/compiler/generic-algorithm.h",
495 "src/compiler/generic-graph.h", 497 "src/compiler/generic-graph.h",
496 "src/compiler/generic-node-inl.h", 498 "src/compiler/generic-node-inl.h",
497 "src/compiler/generic-node.h", 499 "src/compiler/generic-node.h",
498 "src/compiler/graph-builder.cc", 500 "src/compiler/graph-builder.cc",
499 "src/compiler/graph-builder.h", 501 "src/compiler/graph-builder.h",
(...skipping 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 deps = [ 1438 deps = [
1437 ":v8_base", 1439 ":v8_base",
1438 ":v8_nosnapshot", 1440 ":v8_nosnapshot",
1439 ] 1441 ]
1440 } 1442 }
1441 1443
1442 direct_dependent_configs = [ ":external_config" ] 1444 direct_dependent_configs = [ ":external_config" ]
1443 } 1445 }
1444 1446
1445 } 1447 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/control-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698