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

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

Issue 2388313003: [turbofan] Introduces a step to verify the machine graph. (Closed)
Patch Set: Fix win build. Created 4 years, 2 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
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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") 446 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler")
447 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") 447 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers")
448 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer") 448 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer")
449 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") 449 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading")
450 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") 450 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence")
451 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations") 451 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations")
452 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") 452 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code")
453 DEFINE_BOOL(turbo_asm_deoptimization, false, 453 DEFINE_BOOL(turbo_asm_deoptimization, false,
454 "enable deoptimization in TurboFan for asm.js code") 454 "enable deoptimization in TurboFan for asm.js code")
455 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") 455 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase")
456 DEFINE_BOOL(turbo_verify_machine_graph, false,
457 "verify TurboFan machine graph before instruction selection")
456 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") 458 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics")
457 DEFINE_BOOL(turbo_stats_nvp, false, 459 DEFINE_BOOL(turbo_stats_nvp, false,
458 "print TurboFan statistics in machine-readable format") 460 "print TurboFan statistics in machine-readable format")
459 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") 461 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan")
460 DEFINE_BOOL(turbo_type_feedback, true, 462 DEFINE_BOOL(turbo_type_feedback, true,
461 "use typed feedback for representation inference in Turbofan") 463 "use typed feedback for representation inference in Turbofan")
462 DEFINE_BOOL(turbo_source_positions, false, 464 DEFINE_BOOL(turbo_source_positions, false,
463 "track source code positions when building TurboFan IR") 465 "track source code positions when building TurboFan IR")
464 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) 466 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions)
465 DEFINE_BOOL(function_context_specialization, false, 467 DEFINE_BOOL(function_context_specialization, false,
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
1211 #undef DEFINE_ALIAS_FLOAT 1213 #undef DEFINE_ALIAS_FLOAT
1212 #undef DEFINE_ALIAS_ARGS 1214 #undef DEFINE_ALIAS_ARGS
1213 1215
1214 #undef FLAG_MODE_DECLARE 1216 #undef FLAG_MODE_DECLARE
1215 #undef FLAG_MODE_DEFINE 1217 #undef FLAG_MODE_DEFINE
1216 #undef FLAG_MODE_DEFINE_DEFAULTS 1218 #undef FLAG_MODE_DEFINE_DEFAULTS
1217 #undef FLAG_MODE_META 1219 #undef FLAG_MODE_META
1218 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1219 1221
1220 #undef COMMA 1222 #undef COMMA
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698