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

Side by Side Diff: BUILD.gn

Issue 1678833002: [turbofan] Introduce JSCreateLowering for optimizing JSCreate nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Address comments. Created 4 years, 10 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/js-create-lowering.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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 "src/compiler/interpreter-assembler.cc", 788 "src/compiler/interpreter-assembler.cc",
789 "src/compiler/interpreter-assembler.h", 789 "src/compiler/interpreter-assembler.h",
790 "src/compiler/js-builtin-reducer.cc", 790 "src/compiler/js-builtin-reducer.cc",
791 "src/compiler/js-builtin-reducer.h", 791 "src/compiler/js-builtin-reducer.h",
792 "src/compiler/js-call-reducer.cc", 792 "src/compiler/js-call-reducer.cc",
793 "src/compiler/js-call-reducer.h", 793 "src/compiler/js-call-reducer.h",
794 "src/compiler/js-context-relaxation.cc", 794 "src/compiler/js-context-relaxation.cc",
795 "src/compiler/js-context-relaxation.h", 795 "src/compiler/js-context-relaxation.h",
796 "src/compiler/js-context-specialization.cc", 796 "src/compiler/js-context-specialization.cc",
797 "src/compiler/js-context-specialization.h", 797 "src/compiler/js-context-specialization.h",
798 "src/compiler/js-create-lowering.cc",
799 "src/compiler/js-create-lowering.h",
798 "src/compiler/js-frame-specialization.cc", 800 "src/compiler/js-frame-specialization.cc",
799 "src/compiler/js-frame-specialization.h", 801 "src/compiler/js-frame-specialization.h",
800 "src/compiler/js-generic-lowering.cc", 802 "src/compiler/js-generic-lowering.cc",
801 "src/compiler/js-generic-lowering.h", 803 "src/compiler/js-generic-lowering.h",
802 "src/compiler/js-global-object-specialization.cc", 804 "src/compiler/js-global-object-specialization.cc",
803 "src/compiler/js-global-object-specialization.h", 805 "src/compiler/js-global-object-specialization.h",
804 "src/compiler/js-graph.cc", 806 "src/compiler/js-graph.cc",
805 "src/compiler/js-graph.h", 807 "src/compiler/js-graph.h",
806 "src/compiler/js-inlining.cc", 808 "src/compiler/js-inlining.cc",
807 "src/compiler/js-inlining.h", 809 "src/compiler/js-inlining.h",
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after
1986 ] 1988 ]
1987 1989
1988 configs -= [ "//build/config/compiler:chromium_code" ] 1990 configs -= [ "//build/config/compiler:chromium_code" ]
1989 configs += [ "//build/config/compiler:no_chromium_code" ] 1991 configs += [ "//build/config/compiler:no_chromium_code" ]
1990 configs += [ 1992 configs += [
1991 ":internal_config", 1993 ":internal_config",
1992 ":features", 1994 ":features",
1993 ":toolchain", 1995 ":toolchain",
1994 ] 1996 ]
1995 } 1997 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-create-lowering.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698