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

Side by Side Diff: BUILD.gn

Issue 2060673002: [turbofan] Retiring Greedy Allocator (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/compiler/coalesced-live-ranges.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 840 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 "src/compiler/basic-block-instrumentor.h", 851 "src/compiler/basic-block-instrumentor.h",
852 "src/compiler/branch-elimination.cc", 852 "src/compiler/branch-elimination.cc",
853 "src/compiler/branch-elimination.h", 853 "src/compiler/branch-elimination.h",
854 "src/compiler/bytecode-branch-analysis.cc", 854 "src/compiler/bytecode-branch-analysis.cc",
855 "src/compiler/bytecode-branch-analysis.h", 855 "src/compiler/bytecode-branch-analysis.h",
856 "src/compiler/bytecode-graph-builder.cc", 856 "src/compiler/bytecode-graph-builder.cc",
857 "src/compiler/bytecode-graph-builder.h", 857 "src/compiler/bytecode-graph-builder.h",
858 "src/compiler/c-linkage.cc", 858 "src/compiler/c-linkage.cc",
859 "src/compiler/checkpoint-elimination.cc", 859 "src/compiler/checkpoint-elimination.cc",
860 "src/compiler/checkpoint-elimination.h", 860 "src/compiler/checkpoint-elimination.h",
861 "src/compiler/coalesced-live-ranges.cc",
862 "src/compiler/coalesced-live-ranges.h",
863 "src/compiler/code-assembler.cc", 861 "src/compiler/code-assembler.cc",
864 "src/compiler/code-assembler.h", 862 "src/compiler/code-assembler.h",
865 "src/compiler/code-generator-impl.h", 863 "src/compiler/code-generator-impl.h",
866 "src/compiler/code-generator.cc", 864 "src/compiler/code-generator.cc",
867 "src/compiler/code-generator.h", 865 "src/compiler/code-generator.h",
868 "src/compiler/common-node-cache.cc", 866 "src/compiler/common-node-cache.cc",
869 "src/compiler/common-node-cache.h", 867 "src/compiler/common-node-cache.h",
870 "src/compiler/common-operator-reducer.cc", 868 "src/compiler/common-operator-reducer.cc",
871 "src/compiler/common-operator-reducer.h", 869 "src/compiler/common-operator-reducer.h",
872 "src/compiler/common-operator.cc", 870 "src/compiler/common-operator.cc",
(...skipping 24 matching lines...) Expand all
897 "src/compiler/graph-reducer.cc", 895 "src/compiler/graph-reducer.cc",
898 "src/compiler/graph-reducer.h", 896 "src/compiler/graph-reducer.h",
899 "src/compiler/graph-replay.cc", 897 "src/compiler/graph-replay.cc",
900 "src/compiler/graph-replay.h", 898 "src/compiler/graph-replay.h",
901 "src/compiler/graph-trimmer.cc", 899 "src/compiler/graph-trimmer.cc",
902 "src/compiler/graph-trimmer.h", 900 "src/compiler/graph-trimmer.h",
903 "src/compiler/graph-visualizer.cc", 901 "src/compiler/graph-visualizer.cc",
904 "src/compiler/graph-visualizer.h", 902 "src/compiler/graph-visualizer.h",
905 "src/compiler/graph.cc", 903 "src/compiler/graph.cc",
906 "src/compiler/graph.h", 904 "src/compiler/graph.h",
907 "src/compiler/greedy-allocator.cc",
908 "src/compiler/greedy-allocator.h",
909 "src/compiler/instruction-codes.h", 905 "src/compiler/instruction-codes.h",
910 "src/compiler/instruction-scheduler.cc", 906 "src/compiler/instruction-scheduler.cc",
911 "src/compiler/instruction-scheduler.h", 907 "src/compiler/instruction-scheduler.h",
912 "src/compiler/instruction-selector-impl.h", 908 "src/compiler/instruction-selector-impl.h",
913 "src/compiler/instruction-selector.cc", 909 "src/compiler/instruction-selector.cc",
914 "src/compiler/instruction-selector.h", 910 "src/compiler/instruction-selector.h",
915 "src/compiler/instruction.cc", 911 "src/compiler/instruction.cc",
916 "src/compiler/instruction.h", 912 "src/compiler/instruction.h",
917 "src/compiler/int64-lowering.cc", 913 "src/compiler/int64-lowering.cc",
918 "src/compiler/int64-lowering.h", 914 "src/compiler/int64-lowering.h",
(...skipping 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
2293 2289
2294 deps = [ 2290 deps = [
2295 ":fuzzer_support", 2291 ":fuzzer_support",
2296 ] 2292 ]
2297 2293
2298 configs = [ ":internal_config" ] 2294 configs = [ ":internal_config" ]
2299 } 2295 }
2300 2296
2301 v8_fuzzer("wasm_asmjs_fuzzer") { 2297 v8_fuzzer("wasm_asmjs_fuzzer") {
2302 } 2298 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/coalesced-live-ranges.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698