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

Side by Side Diff: BUILD.gn

Issue 1947403002: [interpreter] Introduce bytecode generation pipeline. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 7 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/bytecode-graph-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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 1217 matching lines...) Expand 10 before | Expand all | Expand 10 after
1228 "src/icu_util.cc", 1228 "src/icu_util.cc",
1229 "src/icu_util.h", 1229 "src/icu_util.h",
1230 "src/identity-map.cc", 1230 "src/identity-map.cc",
1231 "src/identity-map.h", 1231 "src/identity-map.h",
1232 "src/interface-descriptors.cc", 1232 "src/interface-descriptors.cc",
1233 "src/interface-descriptors.h", 1233 "src/interface-descriptors.h",
1234 "src/interpreter/bytecode-array-builder.cc", 1234 "src/interpreter/bytecode-array-builder.cc",
1235 "src/interpreter/bytecode-array-builder.h", 1235 "src/interpreter/bytecode-array-builder.h",
1236 "src/interpreter/bytecode-array-iterator.cc", 1236 "src/interpreter/bytecode-array-iterator.cc",
1237 "src/interpreter/bytecode-array-iterator.h", 1237 "src/interpreter/bytecode-array-iterator.h",
1238 "src/interpreter/bytecode-array-writer.cc",
1239 "src/interpreter/bytecode-array-writer.h",
1238 "src/interpreter/bytecode-generator.cc", 1240 "src/interpreter/bytecode-generator.cc",
1239 "src/interpreter/bytecode-generator.h", 1241 "src/interpreter/bytecode-generator.h",
1242 "src/interpreter/bytecode-peephole-optimizer.cc",
1243 "src/interpreter/bytecode-peephole-optimizer.h",
1244 "src/interpreter/bytecode-pipeline.cc",
1245 "src/interpreter/bytecode-pipeline.h",
1240 "src/interpreter/bytecode-register-allocator.cc", 1246 "src/interpreter/bytecode-register-allocator.cc",
1241 "src/interpreter/bytecode-register-allocator.h", 1247 "src/interpreter/bytecode-register-allocator.h",
1242 "src/interpreter/bytecode-traits.h", 1248 "src/interpreter/bytecode-traits.h",
1243 "src/interpreter/bytecodes.cc", 1249 "src/interpreter/bytecodes.cc",
1244 "src/interpreter/bytecodes.h", 1250 "src/interpreter/bytecodes.h",
1245 "src/interpreter/constant-array-builder.cc", 1251 "src/interpreter/constant-array-builder.cc",
1246 "src/interpreter/constant-array-builder.h", 1252 "src/interpreter/constant-array-builder.h",
1247 "src/interpreter/control-flow-builders.cc", 1253 "src/interpreter/control-flow-builders.cc",
1248 "src/interpreter/control-flow-builders.h", 1254 "src/interpreter/control-flow-builders.h",
1249 "src/interpreter/handler-table-builder.cc", 1255 "src/interpreter/handler-table-builder.cc",
(...skipping 957 matching lines...) Expand 10 before | Expand all | Expand 10 after
2207 ] 2213 ]
2208 2214
2209 deps = [ 2215 deps = [
2210 ":fuzzer_support", 2216 ":fuzzer_support",
2211 ] 2217 ]
2212 2218
2213 configs = [ 2219 configs = [
2214 ":internal_config", 2220 ":internal_config",
2215 ] 2221 ]
2216 } 2222 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/bytecode-graph-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698