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

Side by Side Diff: BUILD.gn

Issue 2038083002: [Interpreter] Add a simple dead-code elimination bytecode optimizer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@int_jump_writer
Patch Set: Fix tests Created 4 years, 6 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/flag-definitions.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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after
1208 "src/identity-map.cc", 1208 "src/identity-map.cc",
1209 "src/identity-map.h", 1209 "src/identity-map.h",
1210 "src/interface-descriptors.cc", 1210 "src/interface-descriptors.cc",
1211 "src/interface-descriptors.h", 1211 "src/interface-descriptors.h",
1212 "src/interpreter/bytecode-array-builder.cc", 1212 "src/interpreter/bytecode-array-builder.cc",
1213 "src/interpreter/bytecode-array-builder.h", 1213 "src/interpreter/bytecode-array-builder.h",
1214 "src/interpreter/bytecode-array-iterator.cc", 1214 "src/interpreter/bytecode-array-iterator.cc",
1215 "src/interpreter/bytecode-array-iterator.h", 1215 "src/interpreter/bytecode-array-iterator.h",
1216 "src/interpreter/bytecode-array-writer.cc", 1216 "src/interpreter/bytecode-array-writer.cc",
1217 "src/interpreter/bytecode-array-writer.h", 1217 "src/interpreter/bytecode-array-writer.h",
1218 "src/interpreter/bytecode-dead-code-optimizer.cc",
1219 "src/interpreter/bytecode-dead-code-optimizer.h",
1218 "src/interpreter/bytecode-generator.cc", 1220 "src/interpreter/bytecode-generator.cc",
1219 "src/interpreter/bytecode-generator.h", 1221 "src/interpreter/bytecode-generator.h",
1220 "src/interpreter/bytecode-label.h", 1222 "src/interpreter/bytecode-label.h",
1221 "src/interpreter/bytecode-peephole-optimizer.cc", 1223 "src/interpreter/bytecode-peephole-optimizer.cc",
1222 "src/interpreter/bytecode-peephole-optimizer.h", 1224 "src/interpreter/bytecode-peephole-optimizer.h",
1223 "src/interpreter/bytecode-pipeline.cc", 1225 "src/interpreter/bytecode-pipeline.cc",
1224 "src/interpreter/bytecode-pipeline.h", 1226 "src/interpreter/bytecode-pipeline.h",
1225 "src/interpreter/bytecode-register-allocator.cc", 1227 "src/interpreter/bytecode-register-allocator.cc",
1226 "src/interpreter/bytecode-register-allocator.h", 1228 "src/interpreter/bytecode-register-allocator.h",
1227 "src/interpreter/bytecode-register-optimizer.cc", 1229 "src/interpreter/bytecode-register-optimizer.cc",
(...skipping 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after
2243 2245
2244 deps = [ 2246 deps = [
2245 ":fuzzer_support", 2247 ":fuzzer_support",
2246 ] 2248 ]
2247 2249
2248 configs = [ ":internal_config" ] 2250 configs = [ ":internal_config" ]
2249 } 2251 }
2250 2252
2251 v8_fuzzer("wasm_asmjs_fuzzer") { 2253 v8_fuzzer("wasm_asmjs_fuzzer") {
2252 } 2254 }
OLDNEW
« no previous file with comments | « no previous file | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698