mmtk 0.32.0

MMTk is a framework for the design and implementation of high-performance and portable memory managers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
usdt:$MMTK:mmtk:alloc_slow_once_start {
    if (@stats_enabled) {
        @alloc_slow_nsecs[tid] = nsecs;
    }
}

usdt:$MMTK:mmtk:alloc_slow_once_end {
    if (@stats_enabled) {
        @alloc_slow_hist = hist((nsecs - @alloc_slow_nsecs[tid])/400);
    }
}