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

Side by Side Diff: src/flag-definitions.h

Issue 2442523003: Revert of [ic] Support data handlers that represent simple field stores. (Closed)
Patch Set: Created 4 years, 1 month 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 | « src/counters.h ('k') | src/ic/handler-configuration.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project 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 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
788 788
789 789
790 // v8.cc 790 // v8.cc
791 DEFINE_BOOL(use_idle_notification, true, 791 DEFINE_BOOL(use_idle_notification, true,
792 "Use idle notification to reduce memory footprint.") 792 "Use idle notification to reduce memory footprint.")
793 // ic.cc 793 // ic.cc
794 DEFINE_BOOL(use_ic, true, "use inline caching") 794 DEFINE_BOOL(use_ic, true, "use inline caching")
795 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") 795 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions")
796 DEFINE_BOOL_READONLY(tf_load_ic_stub, true, "use TF LoadIC stub") 796 DEFINE_BOOL_READONLY(tf_load_ic_stub, true, "use TF LoadIC stub")
797 DEFINE_BOOL(tf_store_ic_stub, true, "use TF StoreIC stub") 797 DEFINE_BOOL(tf_store_ic_stub, true, "use TF StoreIC stub")
798 DEFINE_BOOL(store_ic_smi_handlers, true, "use data based StoreIC handlers")
799 DEFINE_IMPLICATION(store_ic_smi_handlers, tf_store_ic_stub)
800 798
801 // macro-assembler-ia32.cc 799 // macro-assembler-ia32.cc
802 DEFINE_BOOL(native_code_counters, false, 800 DEFINE_BOOL(native_code_counters, false,
803 "generate extra code for manipulating stats counters") 801 "generate extra code for manipulating stats counters")
804 802
805 // mark-compact.cc 803 // mark-compact.cc
806 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") 804 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC")
807 DEFINE_BOOL(never_compact, false, 805 DEFINE_BOOL(never_compact, false,
808 "Never perform compaction on full GC - testing only") 806 "Never perform compaction on full GC - testing only")
809 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections") 807 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections")
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
1215 #undef DEFINE_ALIAS_FLOAT 1213 #undef DEFINE_ALIAS_FLOAT
1216 #undef DEFINE_ALIAS_ARGS 1214 #undef DEFINE_ALIAS_ARGS
1217 1215
1218 #undef FLAG_MODE_DECLARE 1216 #undef FLAG_MODE_DECLARE
1219 #undef FLAG_MODE_DEFINE 1217 #undef FLAG_MODE_DEFINE
1220 #undef FLAG_MODE_DEFINE_DEFAULTS 1218 #undef FLAG_MODE_DEFINE_DEFAULTS
1221 #undef FLAG_MODE_META 1219 #undef FLAG_MODE_META
1222 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1223 1221
1224 #undef COMMA 1222 #undef COMMA
OLDNEW
« no previous file with comments | « src/counters.h ('k') | src/ic/handler-configuration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698