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

Side by Side Diff: BUILD.gn

Issue 1056093005: [turbofan] Split ControlEquivalence implementation and add trace flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | src/compiler/control-equivalence.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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/mips.gni") 7 import("//build/config/mips.gni")
8 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 "src/compiler/code-generator.cc", 554 "src/compiler/code-generator.cc",
555 "src/compiler/code-generator.h", 555 "src/compiler/code-generator.h",
556 "src/compiler/common-node-cache.cc", 556 "src/compiler/common-node-cache.cc",
557 "src/compiler/common-node-cache.h", 557 "src/compiler/common-node-cache.h",
558 "src/compiler/common-operator-reducer.cc", 558 "src/compiler/common-operator-reducer.cc",
559 "src/compiler/common-operator-reducer.h", 559 "src/compiler/common-operator-reducer.h",
560 "src/compiler/common-operator.cc", 560 "src/compiler/common-operator.cc",
561 "src/compiler/common-operator.h", 561 "src/compiler/common-operator.h",
562 "src/compiler/control-builders.cc", 562 "src/compiler/control-builders.cc",
563 "src/compiler/control-builders.h", 563 "src/compiler/control-builders.h",
564 "src/compiler/control-equivalence.cc",
564 "src/compiler/control-equivalence.h", 565 "src/compiler/control-equivalence.h",
565 "src/compiler/control-flow-optimizer.cc", 566 "src/compiler/control-flow-optimizer.cc",
566 "src/compiler/control-flow-optimizer.h", 567 "src/compiler/control-flow-optimizer.h",
567 "src/compiler/control-reducer.cc", 568 "src/compiler/control-reducer.cc",
568 "src/compiler/control-reducer.h", 569 "src/compiler/control-reducer.h",
569 "src/compiler/diamond.h", 570 "src/compiler/diamond.h",
570 "src/compiler/frame.h", 571 "src/compiler/frame.h",
571 "src/compiler/gap-resolver.cc", 572 "src/compiler/gap-resolver.cc",
572 "src/compiler/gap-resolver.h", 573 "src/compiler/gap-resolver.h",
573 "src/compiler/graph-builder.h", 574 "src/compiler/graph-builder.h",
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1599 sources += [ 1600 sources += [
1600 "src/d8-debug.cc", 1601 "src/d8-debug.cc",
1601 "$target_gen_dir/d8-js.cc", 1602 "$target_gen_dir/d8-js.cc",
1602 ] 1603 ]
1603 } 1604 }
1604 if (v8_enable_i18n_support) { 1605 if (v8_enable_i18n_support) {
1605 deps += [ "//third_party/icu" ] 1606 deps += [ "//third_party/icu" ]
1606 } 1607 }
1607 } 1608 }
1608 } 1609 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/control-equivalence.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698