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

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

Issue 2589163002: [turbofan] reenable escape analysis to further investigate crashes (Closed)
Patch Set: Created 4 years 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/escape-analysis.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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis") 461 DEFINE_BOOL(loop_assignment_analysis, true, "perform loop assignment analysis")
462 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan") 462 DEFINE_BOOL(turbo_profiling, false, "enable profiling in TurboFan")
463 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL, 463 DEFINE_BOOL(turbo_verify_allocation, DEBUG_BOOL,
464 "verify register allocation in TurboFan") 464 "verify register allocation in TurboFan")
465 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan") 465 DEFINE_BOOL(turbo_move_optimization, true, "optimize gap moves in TurboFan")
466 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan") 466 DEFINE_BOOL(turbo_jt, true, "enable jump threading in TurboFan")
467 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling") 467 DEFINE_BOOL(turbo_loop_peeling, true, "Turbofan loop peeling")
468 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization") 468 DEFINE_BOOL(turbo_loop_variable, true, "Turbofan loop variable optimization")
469 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan") 469 DEFINE_BOOL(turbo_cf_optimization, true, "optimize control flow in TurboFan")
470 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan") 470 DEFINE_BOOL(turbo_frame_elision, true, "elide frames in TurboFan")
471 DEFINE_BOOL(turbo_escape, false, "enable escape analysis") 471 DEFINE_BOOL(turbo_escape, true, "enable escape analysis")
472 DEFINE_IMPLICATION(turbo, turbo_escape)
473 DEFINE_BOOL(turbo_instruction_scheduling, false, 472 DEFINE_BOOL(turbo_instruction_scheduling, false,
474 "enable instruction scheduling in TurboFan") 473 "enable instruction scheduling in TurboFan")
475 DEFINE_BOOL(turbo_stress_instruction_scheduling, false, 474 DEFINE_BOOL(turbo_stress_instruction_scheduling, false,
476 "randomly schedule instructions to stress dependency tracking") 475 "randomly schedule instructions to stress dependency tracking")
477 DEFINE_BOOL(turbo_store_elimination, true, 476 DEFINE_BOOL(turbo_store_elimination, true,
478 "enable store-store elimination in TurboFan") 477 "enable store-store elimination in TurboFan")
479 478
480 // Flags to help platform porters 479 // Flags to help platform porters
481 DEFINE_BOOL(minimal, false, 480 DEFINE_BOOL(minimal, false,
482 "simplifies execution model to make porting " 481 "simplifies execution model to make porting "
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 #undef DEFINE_ALIAS_FLOAT 1254 #undef DEFINE_ALIAS_FLOAT
1256 #undef DEFINE_ALIAS_ARGS 1255 #undef DEFINE_ALIAS_ARGS
1257 1256
1258 #undef FLAG_MODE_DECLARE 1257 #undef FLAG_MODE_DECLARE
1259 #undef FLAG_MODE_DEFINE 1258 #undef FLAG_MODE_DEFINE
1260 #undef FLAG_MODE_DEFINE_DEFAULTS 1259 #undef FLAG_MODE_DEFINE_DEFAULTS
1261 #undef FLAG_MODE_META 1260 #undef FLAG_MODE_META
1262 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1261 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1263 1262
1264 #undef COMMA 1263 #undef COMMA
OLDNEW
« no previous file with comments | « src/compiler/escape-analysis.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698