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

Side by Side Diff: BUILD.gn

Issue 1546683002: [Interpreter] Add support for jumps using constants with wide operands. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rationalize jumps in bytecode-graph-builder.cc. Created 4 years, 12 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 if (is_android) { 10 if (is_android) {
(...skipping 1064 matching lines...) Expand 10 before | Expand all | Expand 10 after
1075 "src/interface-descriptors.h", 1075 "src/interface-descriptors.h",
1076 "src/interpreter/bytecodes.cc", 1076 "src/interpreter/bytecodes.cc",
1077 "src/interpreter/bytecodes.h", 1077 "src/interpreter/bytecodes.h",
1078 "src/interpreter/bytecode-array-builder.cc", 1078 "src/interpreter/bytecode-array-builder.cc",
1079 "src/interpreter/bytecode-array-builder.h", 1079 "src/interpreter/bytecode-array-builder.h",
1080 "src/interpreter/bytecode-array-iterator.cc", 1080 "src/interpreter/bytecode-array-iterator.cc",
1081 "src/interpreter/bytecode-array-iterator.h", 1081 "src/interpreter/bytecode-array-iterator.h",
1082 "src/interpreter/bytecode-generator.cc", 1082 "src/interpreter/bytecode-generator.cc",
1083 "src/interpreter/bytecode-generator.h", 1083 "src/interpreter/bytecode-generator.h",
1084 "src/interpreter/bytecode-traits.h", 1084 "src/interpreter/bytecode-traits.h",
1085 "src/interpreter/constant-array-builder.cc",
1086 "src/interpreter/constant-array-builder.h",
1085 "src/interpreter/control-flow-builders.cc", 1087 "src/interpreter/control-flow-builders.cc",
1086 "src/interpreter/control-flow-builders.h", 1088 "src/interpreter/control-flow-builders.h",
1087 "src/interpreter/interpreter.cc", 1089 "src/interpreter/interpreter.cc",
1088 "src/interpreter/interpreter.h", 1090 "src/interpreter/interpreter.h",
1089 "src/isolate-inl.h", 1091 "src/isolate-inl.h",
1090 "src/isolate.cc", 1092 "src/isolate.cc",
1091 "src/isolate.h", 1093 "src/isolate.h",
1092 "src/json-stringifier.h", 1094 "src/json-stringifier.h",
1093 "src/key-accumulator.h", 1095 "src/key-accumulator.h",
1094 "src/key-accumulator.cc", 1096 "src/key-accumulator.cc",
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after
1855 if (!is_component_build) { 1857 if (!is_component_build) {
1856 sources += [ 1858 sources += [
1857 "$target_gen_dir/d8-js.cc", 1859 "$target_gen_dir/d8-js.cc",
1858 ] 1860 ]
1859 } 1861 }
1860 if (v8_enable_i18n_support) { 1862 if (v8_enable_i18n_support) {
1861 deps += [ "//third_party/icu" ] 1863 deps += [ "//third_party/icu" ]
1862 } 1864 }
1863 } 1865 }
1864 } 1866 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.h » ('j') | src/interpreter/bytecode-array-builder.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698