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

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

Issue 2186873002: [turbofan] Enable instruction scheduling by default. Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: enable scheduling for all platforms 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 | « no previous file | 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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") 477 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan")
478 DEFINE_BOOL(turbo_stress_loop_peeling, false, 478 DEFINE_BOOL(turbo_stress_loop_peeling, false,
479 "stress loop peeling optimization") 479 "stress loop peeling optimization")
480 DEFINE_BOOL(turbo_loop_peeling, false, "Turbofan loop peeling") 480 DEFINE_BOOL(turbo_loop_peeling, false, "Turbofan loop peeling")
481 DEFINE_BOOL(turbo_loop_variable, false, "Turbofan loop variable optimization") 481 DEFINE_BOOL(turbo_loop_variable, false, "Turbofan loop variable optimization")
482 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") 482 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan")
483 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") 483 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan")
484 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code") 484 DEFINE_BOOL(turbo_cache_shared_code, true, "cache context-independent code")
485 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code") 485 DEFINE_BOOL(turbo_preserve_shared_code, false, "keep context-independent code")
486 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") 486 DEFINE_BOOL(turbo_escape, false, "enable escape analysis")
487 DEFINE_BOOL(turbo_instruction_scheduling, false, 487 DEFINE_BOOL(turbo_instruction_scheduling, true,
488 "enable instruction scheduling in TurboFan") 488 "enable instruction scheduling in TurboFan")
489 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, 489 DEFINE_BOOL(turbo_stress_instruction_scheduling, false,
490 "randomly schedule instructions to stress dependency tracking") 490 "randomly schedule instructions to stress dependency tracking")
491 DEFINE_BOOL(turbo_store_elimination, false, 491 DEFINE_BOOL(turbo_store_elimination, false,
492 "enable store-store elimination in TurboFan") 492 "enable store-store elimination in TurboFan")
493 493
494 // Flags for native WebAssembly. 494 // Flags for native WebAssembly.
495 DEFINE_BOOL(expose_wasm, false, "expose WASM interface to JavaScript") 495 DEFINE_BOOL(expose_wasm, false, "expose WASM interface to JavaScript")
496 DEFINE_INT(wasm_num_compilation_tasks, 10, 496 DEFINE_INT(wasm_num_compilation_tasks, 10,
497 "number of parallel compilation tasks for wasm") 497 "number of parallel compilation tasks for wasm")
(...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after
1196 #undef DEFINE_ALIAS_FLOAT 1196 #undef DEFINE_ALIAS_FLOAT
1197 #undef DEFINE_ALIAS_ARGS 1197 #undef DEFINE_ALIAS_ARGS
1198 1198
1199 #undef FLAG_MODE_DECLARE 1199 #undef FLAG_MODE_DECLARE
1200 #undef FLAG_MODE_DEFINE 1200 #undef FLAG_MODE_DEFINE
1201 #undef FLAG_MODE_DEFINE_DEFAULTS 1201 #undef FLAG_MODE_DEFINE_DEFAULTS
1202 #undef FLAG_MODE_META 1202 #undef FLAG_MODE_META
1203 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1203 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1204 1204
1205 #undef COMMA 1205 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698