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

Side by Side Diff: BUILD.gn

Issue 1487973002: [turbofan] Add binary operation hints for javascript operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years 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/code-stubs-hydrogen.cc » ('j') | src/compiler/js-typed-lowering.cc » ('J')
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 868 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 "src/compiler/simplified-operator-reducer.cc", 879 "src/compiler/simplified-operator-reducer.cc",
880 "src/compiler/simplified-operator-reducer.h", 880 "src/compiler/simplified-operator-reducer.h",
881 "src/compiler/simplified-operator.cc", 881 "src/compiler/simplified-operator.cc",
882 "src/compiler/simplified-operator.h", 882 "src/compiler/simplified-operator.h",
883 "src/compiler/source-position.cc", 883 "src/compiler/source-position.cc",
884 "src/compiler/source-position.h", 884 "src/compiler/source-position.h",
885 "src/compiler/state-values-utils.cc", 885 "src/compiler/state-values-utils.cc",
886 "src/compiler/state-values-utils.h", 886 "src/compiler/state-values-utils.h",
887 "src/compiler/tail-call-optimization.cc", 887 "src/compiler/tail-call-optimization.cc",
888 "src/compiler/tail-call-optimization.h", 888 "src/compiler/tail-call-optimization.h",
889 "src/compiler/type-hint-analyzer.cc",
890 "src/compiler/type-hint-analyzer.h",
891 "src/compiler/type-hints.cc",
892 "src/compiler/type-hints.h",
889 "src/compiler/typer.cc", 893 "src/compiler/typer.cc",
890 "src/compiler/typer.h", 894 "src/compiler/typer.h",
891 "src/compiler/value-numbering-reducer.cc", 895 "src/compiler/value-numbering-reducer.cc",
892 "src/compiler/value-numbering-reducer.h", 896 "src/compiler/value-numbering-reducer.h",
893 "src/compiler/verifier.cc", 897 "src/compiler/verifier.cc",
894 "src/compiler/verifier.h", 898 "src/compiler/verifier.h",
895 "src/compiler/zone-pool.cc", 899 "src/compiler/zone-pool.cc",
896 "src/compiler/zone-pool.h", 900 "src/compiler/zone-pool.h",
897 "src/compiler.cc", 901 "src/compiler.cc",
898 "src/compiler.h", 902 "src/compiler.h",
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 if (!is_component_build) { 1872 if (!is_component_build) {
1869 sources += [ 1873 sources += [
1870 "$target_gen_dir/d8-js.cc", 1874 "$target_gen_dir/d8-js.cc",
1871 ] 1875 ]
1872 } 1876 }
1873 if (v8_enable_i18n_support) { 1877 if (v8_enable_i18n_support) {
1874 deps += [ "//third_party/icu" ] 1878 deps += [ "//third_party/icu" ]
1875 } 1879 }
1876 } 1880 }
1877 } 1881 }
OLDNEW
« no previous file with comments | « no previous file | src/code-stubs-hydrogen.cc » ('j') | src/compiler/js-typed-lowering.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698