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

Unified Diff: runtime/vm/flag_list.h

Issue 1830473002: Speedup function profile by using a hash table instead of a linear scan (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | runtime/vm/object.h » ('j') | runtime/vm/profiler_service.cc » ('J')
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 a879ddabf6d077f1d5aa286cc7c8d78f508f8d20..b2714976528da72b368c79ec7751d54047403bd0 100644
--- a/runtime/vm/flag_list.h
+++ b/runtime/vm/flag_list.h
@@ -131,6 +131,10 @@ D(trace_handles, bool, false, \
"Traces allocation of handles.") \
D(trace_optimization, bool, false, \
"Print optimization details."); \
+R(trace_profiler, false, bool, false, \
+ "Profiler trace") \
+D(trace_profiler_verbose, bool, false, \
+ "Verbose profiler trace") \
D(trace_ssa_allocator, bool, false, \
"Trace register allocation over SSA.") \
D(trace_zones, bool, false, \
@@ -154,4 +158,5 @@ R(verify_before_gc, false, bool, false, \
D(verify_on_transition, bool, false, \
"Verify on dart <==> VM.") \
+
#endif // VM_FLAG_LIST_H_
« no previous file with comments | « no previous file | runtime/vm/object.h » ('j') | runtime/vm/profiler_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698