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

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

Issue 2413653006: [turbofan] Modifies the --turbo-verify-machine-graph flag to act as a filter. (Closed)
Patch Set: Fixes interpreter unit test. 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
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/interpreter/interpreter-assembler.cc » ('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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler") 443 DEFINE_BOOL(trace_turbo_scheduler, false, "trace TurboFan's scheduler")
444 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers") 444 DEFINE_BOOL(trace_turbo_reduction, false, "trace TurboFan's various reducers")
445 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer") 445 DEFINE_BOOL(trace_turbo_trimming, false, "trace TurboFan's graph trimmer")
446 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading") 446 DEFINE_BOOL(trace_turbo_jt, false, "trace TurboFan's jump threading")
447 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence") 447 DEFINE_BOOL(trace_turbo_ceq, false, "trace TurboFan's control equivalence")
448 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations") 448 DEFINE_BOOL(trace_turbo_loop, false, "trace TurboFan's loop optimizations")
449 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code") 449 DEFINE_BOOL(turbo_asm, true, "enable TurboFan for asm.js code")
450 DEFINE_BOOL(turbo_asm_deoptimization, false, 450 DEFINE_BOOL(turbo_asm_deoptimization, false,
451 "enable deoptimization in TurboFan for asm.js code") 451 "enable deoptimization in TurboFan for asm.js code")
452 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase") 452 DEFINE_BOOL(turbo_verify, DEBUG_BOOL, "verify TurboFan graphs at each phase")
453 DEFINE_BOOL(turbo_verify_machine_graph, false, 453 DEFINE_STRING(turbo_verify_machine_graph, nullptr,
454 "verify TurboFan machine graph before instruction selection") 454 "verify TurboFan machine graph before instruction selection")
455 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics") 455 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics")
456 DEFINE_BOOL(turbo_stats_nvp, false, 456 DEFINE_BOOL(turbo_stats_nvp, false,
457 "print TurboFan statistics in machine-readable format") 457 "print TurboFan statistics in machine-readable format")
458 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan") 458 DEFINE_BOOL(turbo_splitting, true, "split nodes during scheduling in TurboFan")
459 DEFINE_BOOL(turbo_type_feedback, true, 459 DEFINE_BOOL(turbo_type_feedback, true,
460 "use typed feedback for representation inference in Turbofan") 460 "use typed feedback for representation inference in Turbofan")
461 DEFINE_BOOL(turbo_source_positions, false, 461 DEFINE_BOOL(turbo_source_positions, false,
462 "track source code positions when building TurboFan IR") 462 "track source code positions when building TurboFan IR")
463 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions) 463 DEFINE_IMPLICATION(trace_turbo, turbo_source_positions)
464 DEFINE_BOOL(function_context_specialization, false, 464 DEFINE_BOOL(function_context_specialization, false,
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
1213 #undef DEFINE_ALIAS_FLOAT 1213 #undef DEFINE_ALIAS_FLOAT
1214 #undef DEFINE_ALIAS_ARGS 1214 #undef DEFINE_ALIAS_ARGS
1215 1215
1216 #undef FLAG_MODE_DECLARE 1216 #undef FLAG_MODE_DECLARE
1217 #undef FLAG_MODE_DEFINE 1217 #undef FLAG_MODE_DEFINE
1218 #undef FLAG_MODE_DEFINE_DEFAULTS 1218 #undef FLAG_MODE_DEFINE_DEFAULTS
1219 #undef FLAG_MODE_META 1219 #undef FLAG_MODE_META
1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1220 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1221 1221
1222 #undef COMMA 1222 #undef COMMA
OLDNEW
« no previous file with comments | « src/compiler/pipeline.cc ('k') | src/interpreter/interpreter-assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698