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

Side by Side Diff: BUILD.gn

Issue 803993002: [turbofan] First version of loop analysis: loop finder on the soup of nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | src/compiler/loop-analysis.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 # Because standalone V8 builds are not supported, assume this is part of a 5 # Because standalone V8 builds are not supported, assume this is part of a
6 # Chromium build. 6 # Chromium build.
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 8
9 # TODO(jochen): These will need to be user-settable to support standalone V8 9 # TODO(jochen): These will need to be user-settable to support standalone V8
10 # builds. 10 # builds.
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 "src/compiler/js-operator.h", 535 "src/compiler/js-operator.h",
536 "src/compiler/js-typed-lowering.cc", 536 "src/compiler/js-typed-lowering.cc",
537 "src/compiler/js-typed-lowering.h", 537 "src/compiler/js-typed-lowering.h",
538 "src/compiler/jump-threading.cc", 538 "src/compiler/jump-threading.cc",
539 "src/compiler/jump-threading.h", 539 "src/compiler/jump-threading.h",
540 "src/compiler/linkage-impl.h", 540 "src/compiler/linkage-impl.h",
541 "src/compiler/linkage.cc", 541 "src/compiler/linkage.cc",
542 "src/compiler/linkage.h", 542 "src/compiler/linkage.h",
543 "src/compiler/load-elimination.cc", 543 "src/compiler/load-elimination.cc",
544 "src/compiler/load-elimination.h", 544 "src/compiler/load-elimination.h",
545 "src/compiler/loop-analysis.cc",
546 "src/compiler/loop-analysis.h",
545 "src/compiler/machine-operator-reducer.cc", 547 "src/compiler/machine-operator-reducer.cc",
546 "src/compiler/machine-operator-reducer.h", 548 "src/compiler/machine-operator-reducer.h",
547 "src/compiler/machine-operator.cc", 549 "src/compiler/machine-operator.cc",
548 "src/compiler/machine-operator.h", 550 "src/compiler/machine-operator.h",
549 "src/compiler/machine-type.cc", 551 "src/compiler/machine-type.cc",
550 "src/compiler/machine-type.h", 552 "src/compiler/machine-type.h",
551 "src/compiler/move-optimizer.cc", 553 "src/compiler/move-optimizer.cc",
552 "src/compiler/move-optimizer.h", 554 "src/compiler/move-optimizer.h",
553 "src/compiler/node-aux-data-inl.h", 555 "src/compiler/node-aux-data-inl.h",
554 "src/compiler/node-aux-data.h", 556 "src/compiler/node-aux-data.h",
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
1453 deps = [ 1455 deps = [
1454 ":v8_base", 1456 ":v8_base",
1455 ":v8_nosnapshot", 1457 ":v8_nosnapshot",
1456 ] 1458 ]
1457 } 1459 }
1458 1460
1459 direct_dependent_configs = [ ":external_config" ] 1461 direct_dependent_configs = [ ":external_config" ]
1460 } 1462 }
1461 1463
1462 } 1464 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/loop-analysis.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698