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

Side by Side Diff: BUILD.gn

Issue 2289573002: [turbofan] Remove the unused asm.js types from TypeCache. (Closed)
Patch Set: 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/asmjs/asm-typer.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/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 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 "src/compiler/simplified-operator.cc", 1124 "src/compiler/simplified-operator.cc",
1125 "src/compiler/simplified-operator.h", 1125 "src/compiler/simplified-operator.h",
1126 "src/compiler/source-position.cc", 1126 "src/compiler/source-position.cc",
1127 "src/compiler/source-position.h", 1127 "src/compiler/source-position.h",
1128 "src/compiler/state-values-utils.cc", 1128 "src/compiler/state-values-utils.cc",
1129 "src/compiler/state-values-utils.h", 1129 "src/compiler/state-values-utils.h",
1130 "src/compiler/store-store-elimination.cc", 1130 "src/compiler/store-store-elimination.cc",
1131 "src/compiler/store-store-elimination.h", 1131 "src/compiler/store-store-elimination.h",
1132 "src/compiler/tail-call-optimization.cc", 1132 "src/compiler/tail-call-optimization.cc",
1133 "src/compiler/tail-call-optimization.h", 1133 "src/compiler/tail-call-optimization.h",
1134 "src/compiler/type-cache.cc",
1135 "src/compiler/type-cache.h",
1134 "src/compiler/type-hint-analyzer.cc", 1136 "src/compiler/type-hint-analyzer.cc",
1135 "src/compiler/type-hint-analyzer.h", 1137 "src/compiler/type-hint-analyzer.h",
1136 "src/compiler/type-hints.cc", 1138 "src/compiler/type-hints.cc",
1137 "src/compiler/type-hints.h", 1139 "src/compiler/type-hints.h",
1138 "src/compiler/typed-optimization.cc", 1140 "src/compiler/typed-optimization.cc",
1139 "src/compiler/typed-optimization.h", 1141 "src/compiler/typed-optimization.h",
1140 "src/compiler/typer.cc", 1142 "src/compiler/typer.cc",
1141 "src/compiler/typer.h", 1143 "src/compiler/typer.h",
1142 "src/compiler/unwinding-info-writer.h", 1144 "src/compiler/unwinding-info-writer.h",
1143 "src/compiler/value-numbering-reducer.cc", 1145 "src/compiler/value-numbering-reducer.cc",
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 "src/string-search.h", 1599 "src/string-search.h",
1598 "src/string-stream.cc", 1600 "src/string-stream.cc",
1599 "src/string-stream.h", 1601 "src/string-stream.h",
1600 "src/strtod.cc", 1602 "src/strtod.cc",
1601 "src/strtod.h", 1603 "src/strtod.h",
1602 "src/tracing/trace-event.cc", 1604 "src/tracing/trace-event.cc",
1603 "src/tracing/trace-event.h", 1605 "src/tracing/trace-event.h",
1604 "src/transitions-inl.h", 1606 "src/transitions-inl.h",
1605 "src/transitions.cc", 1607 "src/transitions.cc",
1606 "src/transitions.h", 1608 "src/transitions.h",
1607 "src/type-cache.cc",
1608 "src/type-cache.h",
1609 "src/type-feedback-vector-inl.h", 1609 "src/type-feedback-vector-inl.h",
1610 "src/type-feedback-vector.cc", 1610 "src/type-feedback-vector.cc",
1611 "src/type-feedback-vector.h", 1611 "src/type-feedback-vector.h",
1612 "src/type-info.cc", 1612 "src/type-info.cc",
1613 "src/type-info.h", 1613 "src/type-info.h",
1614 "src/types.cc", 1614 "src/types.cc",
1615 "src/types.h", 1615 "src/types.h",
1616 "src/unicode-cache-inl.h", 1616 "src/unicode-cache-inl.h",
1617 "src/unicode-cache.h", 1617 "src/unicode-cache.h",
1618 "src/unicode-decoder.cc", 1618 "src/unicode-decoder.cc",
(...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after
2577 2577
2578 deps = [ 2578 deps = [
2579 ":fuzzer_support", 2579 ":fuzzer_support",
2580 ] 2580 ]
2581 2581
2582 configs = [ ":internal_config" ] 2582 configs = [ ":internal_config" ]
2583 } 2583 }
2584 2584
2585 v8_fuzzer("wasm_asmjs_fuzzer") { 2585 v8_fuzzer("wasm_asmjs_fuzzer") {
2586 } 2586 }
OLDNEW
« no previous file with comments | « no previous file | src/asmjs/asm-typer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698