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

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

Issue 2236443006: [turbofan] Instead of using properties, use a whitelist for store-store elimination. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@flake
Patch Set: Don't enable --turbo-store-elimination by default, but have it implied from --turbo. Created 4 years, 4 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 | « src/compiler/store-store-elimination.cc ('k') | no next file » | 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") 485 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan")
486 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") 486 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code")
487 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") 487 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code")
488 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") 488 DEFINE_BOOL(turbo_escape, false, "enable escape analysis")
489 DEFINE_BOOL(turbo_instruction_scheduling, false, 489 DEFINE_BOOL(turbo_instruction_scheduling, false,
490 "enable instruction scheduling in TurboFan") 490 "enable instruction scheduling in TurboFan")
491 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, 491 DEFINE_BOOL(turbo_stress_instruction_scheduling, false,
492 "randomly schedule instructions to stress dependency tracking") 492 "randomly schedule instructions to stress dependency tracking")
493 DEFINE_BOOL(turbo_store_elimination, false, 493 DEFINE_BOOL(turbo_store_elimination, false,
494 "enable store-store elimination in TurboFan") 494 "enable store-store elimination in TurboFan")
495 DEFINE_IMPLICATION(turbo, turbo_store_elimination)
495 496
496 // Flags to help platform porters 497 // Flags to help platform porters
497 DEFINE_BOOL(minimal, false, 498 DEFINE_BOOL(minimal, false,
498 "simplifies execution model to make porting " 499 "simplifies execution model to make porting "
499 "easier (e.g. always use Ignition, never use Crankshaft") 500 "easier (e.g. always use Ignition, never use Crankshaft")
500 DEFINE_IMPLICATION(minimal, ignition) 501 DEFINE_IMPLICATION(minimal, ignition)
501 DEFINE_NEG_IMPLICATION(minimal, crankshaft) 502 DEFINE_NEG_IMPLICATION(minimal, crankshaft)
502 DEFINE_NEG_IMPLICATION(minimal, use_ic) 503 DEFINE_NEG_IMPLICATION(minimal, use_ic)
503 504
504 // Flags for native WebAssembly. 505 // Flags for native WebAssembly.
(...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after
1212 #undef DEFINE_ALIAS_FLOAT 1213 #undef DEFINE_ALIAS_FLOAT
1213 #undef DEFINE_ALIAS_ARGS 1214 #undef DEFINE_ALIAS_ARGS
1214 1215
1215 #undef FLAG_MODE_DECLARE 1216 #undef FLAG_MODE_DECLARE
1216 #undef FLAG_MODE_DEFINE 1217 #undef FLAG_MODE_DEFINE
1217 #undef FLAG_MODE_DEFINE_DEFAULTS 1218 #undef FLAG_MODE_DEFINE_DEFAULTS
1218 #undef FLAG_MODE_META 1219 #undef FLAG_MODE_META
1219 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1220 1221
1221 #undef COMMA 1222 #undef COMMA
OLDNEW
« no previous file with comments | « src/compiler/store-store-elimination.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698