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

Side by Side Diff: BUILD.gn

Issue 2351763002: [Interpreter] Optimize BytecodeArrayBuilder and BytecodeArrayWriter. (Closed)
Patch Set: Fix Chromium Windows bots. Created 4 years, 3 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/interpreter/bytecode-array-builder.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 1394 matching lines...) Expand 10 before | Expand all | Expand 10 after
1405 "src/interpreter/bytecode-dead-code-optimizer.cc", 1405 "src/interpreter/bytecode-dead-code-optimizer.cc",
1406 "src/interpreter/bytecode-dead-code-optimizer.h", 1406 "src/interpreter/bytecode-dead-code-optimizer.h",
1407 "src/interpreter/bytecode-decoder.cc", 1407 "src/interpreter/bytecode-decoder.cc",
1408 "src/interpreter/bytecode-decoder.h", 1408 "src/interpreter/bytecode-decoder.h",
1409 "src/interpreter/bytecode-flags.cc", 1409 "src/interpreter/bytecode-flags.cc",
1410 "src/interpreter/bytecode-flags.h", 1410 "src/interpreter/bytecode-flags.h",
1411 "src/interpreter/bytecode-generator.cc", 1411 "src/interpreter/bytecode-generator.cc",
1412 "src/interpreter/bytecode-generator.h", 1412 "src/interpreter/bytecode-generator.h",
1413 "src/interpreter/bytecode-label.cc", 1413 "src/interpreter/bytecode-label.cc",
1414 "src/interpreter/bytecode-label.h", 1414 "src/interpreter/bytecode-label.h",
1415 "src/interpreter/bytecode-operands.cc",
1416 "src/interpreter/bytecode-operands.h",
1415 "src/interpreter/bytecode-peephole-optimizer.cc", 1417 "src/interpreter/bytecode-peephole-optimizer.cc",
1416 "src/interpreter/bytecode-peephole-optimizer.h", 1418 "src/interpreter/bytecode-peephole-optimizer.h",
1417 "src/interpreter/bytecode-peephole-table.h", 1419 "src/interpreter/bytecode-peephole-table.h",
1418 "src/interpreter/bytecode-pipeline.cc", 1420 "src/interpreter/bytecode-pipeline.cc",
1419 "src/interpreter/bytecode-pipeline.h", 1421 "src/interpreter/bytecode-pipeline.h",
1420 "src/interpreter/bytecode-register-allocator.cc", 1422 "src/interpreter/bytecode-register-allocator.cc",
1421 "src/interpreter/bytecode-register-allocator.h", 1423 "src/interpreter/bytecode-register-allocator.h",
1422 "src/interpreter/bytecode-register-optimizer.cc", 1424 "src/interpreter/bytecode-register-optimizer.cc",
1423 "src/interpreter/bytecode-register-optimizer.h", 1425 "src/interpreter/bytecode-register-optimizer.h",
1424 "src/interpreter/bytecode-register.cc", 1426 "src/interpreter/bytecode-register.cc",
(...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after
2290 } 2292 }
2291 } 2293 }
2292 2294
2293 v8_executable("mkpeephole") { 2295 v8_executable("mkpeephole") {
2294 # mkpeephole needs to be built for the build host so the peephole lookup 2296 # mkpeephole needs to be built for the build host so the peephole lookup
2295 # table can built during build. The table depends on the properties of 2297 # table can built during build. The table depends on the properties of
2296 # bytecodes that are described in bytecodes.{cc,h}. 2298 # bytecodes that are described in bytecodes.{cc,h}.
2297 visibility = [ ":*" ] # Only targets in this file can depend on this. 2299 visibility = [ ":*" ] # Only targets in this file can depend on this.
2298 2300
2299 sources = [ 2301 sources = [
2302 "src/interpreter/bytecode-operands.cc",
2303 "src/interpreter/bytecode-operands.h",
2300 "src/interpreter/bytecode-peephole-optimizer.h", 2304 "src/interpreter/bytecode-peephole-optimizer.h",
2305 "src/interpreter/bytecode-traits.h",
2301 "src/interpreter/bytecodes.cc", 2306 "src/interpreter/bytecodes.cc",
2302 "src/interpreter/bytecodes.h", 2307 "src/interpreter/bytecodes.h",
2303 "src/interpreter/mkpeephole.cc", 2308 "src/interpreter/mkpeephole.cc",
2304 ] 2309 ]
2305 2310
2306 configs = [ 2311 configs = [
2307 ":external_config", 2312 ":external_config",
2308 ":internal_config", 2313 ":internal_config",
2309 ] 2314 ]
2310 2315
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
2777 ":fuzzer_support", 2782 ":fuzzer_support",
2778 ":lib_wasm_section_fuzzer", 2783 ":lib_wasm_section_fuzzer",
2779 ":wasm_module_runner", 2784 ":wasm_module_runner",
2780 ] 2785 ]
2781 2786
2782 configs = [ ":internal_config" ] 2787 configs = [ ":internal_config" ]
2783 } 2788 }
2784 2789
2785 v8_fuzzer("wasm_data_section_fuzzer") { 2790 v8_fuzzer("wasm_data_section_fuzzer") {
2786 } 2791 }
OLDNEW
« no previous file with comments | « no previous file | src/interpreter/bytecode-array-builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698