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: BUILD.gn

Issue 1376293005: [turbofan] Redundant branch elimination. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Loop test Created 5 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 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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 # Because standalone V8 builds are not supported, assume this is part of a 10 # Because standalone V8 builds are not supported, assume this is part of a
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
685 "src/compiler/access-builder.cc", 685 "src/compiler/access-builder.cc",
686 "src/compiler/access-builder.h", 686 "src/compiler/access-builder.h",
687 "src/compiler/all-nodes.cc", 687 "src/compiler/all-nodes.cc",
688 "src/compiler/all-nodes.h", 688 "src/compiler/all-nodes.h",
689 "src/compiler/ast-graph-builder.cc", 689 "src/compiler/ast-graph-builder.cc",
690 "src/compiler/ast-graph-builder.h", 690 "src/compiler/ast-graph-builder.h",
691 "src/compiler/ast-loop-assignment-analyzer.cc", 691 "src/compiler/ast-loop-assignment-analyzer.cc",
692 "src/compiler/ast-loop-assignment-analyzer.h", 692 "src/compiler/ast-loop-assignment-analyzer.h",
693 "src/compiler/basic-block-instrumentor.cc", 693 "src/compiler/basic-block-instrumentor.cc",
694 "src/compiler/basic-block-instrumentor.h", 694 "src/compiler/basic-block-instrumentor.h",
695 "src/compiler/branch-condition-elimination.cc",
696 "src/compiler/branch-condition-elimination.h",
695 "src/compiler/bytecode-graph-builder.cc", 697 "src/compiler/bytecode-graph-builder.cc",
696 "src/compiler/bytecode-graph-builder.h", 698 "src/compiler/bytecode-graph-builder.h",
697 "src/compiler/change-lowering.cc", 699 "src/compiler/change-lowering.cc",
698 "src/compiler/change-lowering.h", 700 "src/compiler/change-lowering.h",
699 "src/compiler/c-linkage.cc", 701 "src/compiler/c-linkage.cc",
700 "src/compiler/coalesced-live-ranges.cc", 702 "src/compiler/coalesced-live-ranges.cc",
701 "src/compiler/coalesced-live-ranges.h", 703 "src/compiler/coalesced-live-ranges.h",
702 "src/compiler/code-generator-impl.h", 704 "src/compiler/code-generator-impl.h",
703 "src/compiler/code-generator.cc", 705 "src/compiler/code-generator.cc",
704 "src/compiler/code-generator.h", 706 "src/compiler/code-generator.h",
(...skipping 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after
1819 if (!is_component_build) { 1821 if (!is_component_build) {
1820 sources += [ 1822 sources += [
1821 "$target_gen_dir/d8-js.cc", 1823 "$target_gen_dir/d8-js.cc",
1822 ] 1824 ]
1823 } 1825 }
1824 if (v8_enable_i18n_support) { 1826 if (v8_enable_i18n_support) {
1825 deps += [ "//third_party/icu" ] 1827 deps += [ "//third_party/icu" ]
1826 } 1828 }
1827 } 1829 }
1828 } 1830 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/branch-condition-elimination.h » ('j') | src/compiler/branch-condition-elimination.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698