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

Side by Side Diff: BUILD.gn

Issue 2342853002: [TypeFeedbackVector] special ic slots for interpreter compare/binary ops. (Closed)
Patch Set: Code comments. 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/ast/ast.cc » ('j') | src/type-feedback-vector-inl.h » ('J')
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 1147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1158 "src/compiler/state-values-utils.cc", 1158 "src/compiler/state-values-utils.cc",
1159 "src/compiler/state-values-utils.h", 1159 "src/compiler/state-values-utils.h",
1160 "src/compiler/store-store-elimination.cc", 1160 "src/compiler/store-store-elimination.cc",
1161 "src/compiler/store-store-elimination.h", 1161 "src/compiler/store-store-elimination.h",
1162 "src/compiler/tail-call-optimization.cc", 1162 "src/compiler/tail-call-optimization.cc",
1163 "src/compiler/tail-call-optimization.h", 1163 "src/compiler/tail-call-optimization.h",
1164 "src/compiler/type-cache.cc", 1164 "src/compiler/type-cache.cc",
1165 "src/compiler/type-cache.h", 1165 "src/compiler/type-cache.h",
1166 "src/compiler/type-hint-analyzer.cc", 1166 "src/compiler/type-hint-analyzer.cc",
1167 "src/compiler/type-hint-analyzer.h", 1167 "src/compiler/type-hint-analyzer.h",
1168 "src/compiler/type-hints.cc",
1169 "src/compiler/type-hints.h",
1170 "src/compiler/typed-optimization.cc", 1168 "src/compiler/typed-optimization.cc",
1171 "src/compiler/typed-optimization.h", 1169 "src/compiler/typed-optimization.h",
1172 "src/compiler/typer.cc", 1170 "src/compiler/typer.cc",
1173 "src/compiler/typer.h", 1171 "src/compiler/typer.h",
1174 "src/compiler/types.cc", 1172 "src/compiler/types.cc",
1175 "src/compiler/types.h", 1173 "src/compiler/types.h",
1176 "src/compiler/unwinding-info-writer.h", 1174 "src/compiler/unwinding-info-writer.h",
1177 "src/compiler/value-numbering-reducer.cc", 1175 "src/compiler/value-numbering-reducer.cc",
1178 "src/compiler/value-numbering-reducer.h", 1176 "src/compiler/value-numbering-reducer.h",
1179 "src/compiler/verifier.cc", 1177 "src/compiler/verifier.cc",
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1642 "src/strtod.cc", 1640 "src/strtod.cc",
1643 "src/strtod.h", 1641 "src/strtod.h",
1644 "src/tracing/trace-event.cc", 1642 "src/tracing/trace-event.cc",
1645 "src/tracing/trace-event.h", 1643 "src/tracing/trace-event.h",
1646 "src/transitions-inl.h", 1644 "src/transitions-inl.h",
1647 "src/transitions.cc", 1645 "src/transitions.cc",
1648 "src/transitions.h", 1646 "src/transitions.h",
1649 "src/type-feedback-vector-inl.h", 1647 "src/type-feedback-vector-inl.h",
1650 "src/type-feedback-vector.cc", 1648 "src/type-feedback-vector.cc",
1651 "src/type-feedback-vector.h", 1649 "src/type-feedback-vector.h",
1650 "src/type-hints.cc",
1651 "src/type-hints.h",
1652 "src/type-info.cc", 1652 "src/type-info.cc",
1653 "src/type-info.h", 1653 "src/type-info.h",
1654 "src/unicode-cache-inl.h", 1654 "src/unicode-cache-inl.h",
1655 "src/unicode-cache.h", 1655 "src/unicode-cache.h",
1656 "src/unicode-decoder.cc", 1656 "src/unicode-decoder.cc",
1657 "src/unicode-decoder.h", 1657 "src/unicode-decoder.h",
1658 "src/unicode-inl.h", 1658 "src/unicode-inl.h",
1659 "src/unicode.cc", 1659 "src/unicode.cc",
1660 "src/unicode.h", 1660 "src/unicode.h",
1661 "src/uri.cc", 1661 "src/uri.cc",
(...skipping 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after
2783 ":fuzzer_support", 2783 ":fuzzer_support",
2784 ":lib_wasm_section_fuzzer", 2784 ":lib_wasm_section_fuzzer",
2785 ":wasm_module_runner", 2785 ":wasm_module_runner",
2786 ] 2786 ]
2787 2787
2788 configs = [ ":internal_config" ] 2788 configs = [ ":internal_config" ]
2789 } 2789 }
2790 2790
2791 v8_fuzzer("wasm_data_section_fuzzer") { 2791 v8_fuzzer("wasm_data_section_fuzzer") {
2792 } 2792 }
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast.cc » ('j') | src/type-feedback-vector-inl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698