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

Unified Diff: runtime/vm/flag_list.h

Issue 1766573003: Clean up more flags using flag list. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/custom_isolate_test.cc ('k') | runtime/vm/flow_graph_allocator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flag_list.h
diff --git a/runtime/vm/flag_list.h b/runtime/vm/flag_list.h
index dfc5676fbc17ecb1a02c7d66dbe5f1b19abadd0a..a879ddabf6d077f1d5aa286cc7c8d78f508f8d20 100644
--- a/runtime/vm/flag_list.h
+++ b/runtime/vm/flag_list.h
@@ -97,6 +97,10 @@ P(pretenure_interval, int, 10, \
"Back off pretenuring after this many cycles.") \
P(pretenure_threshold, int, 98, \
"Trigger pretenuring when this many percent are promoted.") \
+R(print_ssa_liveness, false, bool, false, \
+ "Print liveness for ssa variables.") \
+R(print_ssa_liveranges, false, bool, false, \
+ "Print live ranges after allocation.") \
C(print_stop_message, false, false, bool, false, \
"Print stop message.") \
R(profiler, false, bool, true, \
@@ -127,6 +131,8 @@ D(trace_handles, bool, false, \
"Traces allocation of handles.") \
D(trace_optimization, bool, false, \
"Print optimization details."); \
+D(trace_ssa_allocator, bool, false, \
+ "Trace register allocation over SSA.") \
D(trace_zones, bool, false, \
"Traces allocation sizes in the zone.") \
P(truncating_left_shift, bool, true, \
@@ -145,5 +151,7 @@ R(verify_after_gc, false, bool, false, \
"Enables heap verification after GC.") \
R(verify_before_gc, false, bool, false, \
"Enables heap verification before GC.") \
+D(verify_on_transition, bool, false, \
+ "Verify on dart <==> VM.") \
#endif // VM_FLAG_LIST_H_
« no previous file with comments | « runtime/vm/custom_isolate_test.cc ('k') | runtime/vm/flow_graph_allocator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698