[pypy-commit] stmgc c8-overheads-instrumentation: Add warmup complete event

tobweber pypy.commits at gmail.com
Sat Jul 29 07:52:18 EDT 2017


Author: Tobias Weber <tobias_weber89 at gmx.de>
Branch: c8-overheads-instrumentation
Changeset: r2129:1432eab6963e
Date: 2017-07-29 11:24 +0200
http://bitbucket.org/pypy/stmgc/changeset/1432eab6963e/

Log:	Add warmup complete event

diff --git a/c8/stmgc.h b/c8/stmgc.h
--- a/c8/stmgc.h
+++ b/c8/stmgc.h
@@ -575,6 +575,8 @@
     STM_GC_MAJOR_DONE,
 
     /* execution duration profiling events */
+    STM_WARMUP_COMPLETE,
+
     STM_DURATION_START_TRX,
     STM_DURATION_WRITE_GC_ONLY,
     STM_DURATION_WRITE_SLOWPATH,
@@ -605,6 +607,7 @@
     "gc major start",                               \
     "gc major done",                                \
     /* names of duration events */                  \
+    "marks completion of benchmark warm up phase"   \
     "duration of transaction start",                \
     "duration of gc due to write",                  \
     "duration of write slowpath",                   \


More information about the pypy-commit mailing list