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

Side by Side Diff: BUILD.gn

Issue 1445513002: [turbofan] Introduce JSCallReducer to strength reduce JSCallFunction nodes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Comment. Created 5 years, 1 month 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-builtin-reducer.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 763 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 "src/compiler/instruction-codes.h", 774 "src/compiler/instruction-codes.h",
775 "src/compiler/instruction-selector-impl.h", 775 "src/compiler/instruction-selector-impl.h",
776 "src/compiler/instruction-selector.cc", 776 "src/compiler/instruction-selector.cc",
777 "src/compiler/instruction-selector.h", 777 "src/compiler/instruction-selector.h",
778 "src/compiler/instruction.cc", 778 "src/compiler/instruction.cc",
779 "src/compiler/instruction.h", 779 "src/compiler/instruction.h",
780 "src/compiler/interpreter-assembler.cc", 780 "src/compiler/interpreter-assembler.cc",
781 "src/compiler/interpreter-assembler.h", 781 "src/compiler/interpreter-assembler.h",
782 "src/compiler/js-builtin-reducer.cc", 782 "src/compiler/js-builtin-reducer.cc",
783 "src/compiler/js-builtin-reducer.h", 783 "src/compiler/js-builtin-reducer.h",
784 "src/compiler/js-call-reducer.cc",
785 "src/compiler/js-call-reducer.h",
784 "src/compiler/js-context-relaxation.cc", 786 "src/compiler/js-context-relaxation.cc",
785 "src/compiler/js-context-relaxation.h", 787 "src/compiler/js-context-relaxation.h",
786 "src/compiler/js-context-specialization.cc", 788 "src/compiler/js-context-specialization.cc",
787 "src/compiler/js-context-specialization.h", 789 "src/compiler/js-context-specialization.h",
788 "src/compiler/js-frame-specialization.cc", 790 "src/compiler/js-frame-specialization.cc",
789 "src/compiler/js-frame-specialization.h", 791 "src/compiler/js-frame-specialization.h",
790 "src/compiler/js-generic-lowering.cc", 792 "src/compiler/js-generic-lowering.cc",
791 "src/compiler/js-generic-lowering.h", 793 "src/compiler/js-generic-lowering.h",
792 "src/compiler/js-global-object-specialization.cc", 794 "src/compiler/js-global-object-specialization.cc",
793 "src/compiler/js-global-object-specialization.h", 795 "src/compiler/js-global-object-specialization.h",
(...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after
1864 if (!is_component_build) { 1866 if (!is_component_build) {
1865 sources += [ 1867 sources += [
1866 "$target_gen_dir/d8-js.cc", 1868 "$target_gen_dir/d8-js.cc",
1867 ] 1869 ]
1868 } 1870 }
1869 if (v8_enable_i18n_support) { 1871 if (v8_enable_i18n_support) {
1870 deps += [ "//third_party/icu" ] 1872 deps += [ "//third_party/icu" ]
1871 } 1873 }
1872 } 1874 }
1873 } 1875 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/js-builtin-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698