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

Side by Side Diff: BUILD.gn

Issue 1216593003: [turbofan] Optimize string "length" property access based on types. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE Created 5 years, 5 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/access-builder.cc » ('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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 "src/compiler/js-graph.cc", 680 "src/compiler/js-graph.cc",
681 "src/compiler/js-graph.h", 681 "src/compiler/js-graph.h",
682 "src/compiler/js-inlining.cc", 682 "src/compiler/js-inlining.cc",
683 "src/compiler/js-inlining.h", 683 "src/compiler/js-inlining.h",
684 "src/compiler/js-intrinsic-lowering.cc", 684 "src/compiler/js-intrinsic-lowering.cc",
685 "src/compiler/js-intrinsic-lowering.h", 685 "src/compiler/js-intrinsic-lowering.h",
686 "src/compiler/js-operator.cc", 686 "src/compiler/js-operator.cc",
687 "src/compiler/js-operator.h", 687 "src/compiler/js-operator.h",
688 "src/compiler/js-type-feedback.cc", 688 "src/compiler/js-type-feedback.cc",
689 "src/compiler/js-type-feedback.h", 689 "src/compiler/js-type-feedback.h",
690 "src/compiler/js-type-feedback-lowering.cc",
691 "src/compiler/js-type-feedback-lowering.h",
690 "src/compiler/js-typed-lowering.cc", 692 "src/compiler/js-typed-lowering.cc",
691 "src/compiler/js-typed-lowering.h", 693 "src/compiler/js-typed-lowering.h",
692 "src/compiler/jump-threading.cc", 694 "src/compiler/jump-threading.cc",
693 "src/compiler/jump-threading.h", 695 "src/compiler/jump-threading.h",
694 "src/compiler/linkage-impl.h", 696 "src/compiler/linkage-impl.h",
695 "src/compiler/linkage.cc", 697 "src/compiler/linkage.cc",
696 "src/compiler/linkage.h", 698 "src/compiler/linkage.h",
697 "src/compiler/liveness-analyzer.cc", 699 "src/compiler/liveness-analyzer.cc",
698 "src/compiler/liveness-analyzer.h", 700 "src/compiler/liveness-analyzer.h",
699 "src/compiler/load-elimination.cc", 701 "src/compiler/load-elimination.cc",
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1713 "src/d8-debug.cc", 1715 "src/d8-debug.cc",
1714 "src/d8-debug.h", 1716 "src/d8-debug.h",
1715 "$target_gen_dir/d8-js.cc", 1717 "$target_gen_dir/d8-js.cc",
1716 ] 1718 ]
1717 } 1719 }
1718 if (v8_enable_i18n_support) { 1720 if (v8_enable_i18n_support) {
1719 deps += [ "//third_party/icu" ] 1721 deps += [ "//third_party/icu" ]
1720 } 1722 }
1721 } 1723 }
1722 } 1724 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/access-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698