Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 8e87fca2f49595adc16d9aa519a6edad > files > 203

systemtap-1.6-1.fc14.x86_64.rpm

#!/usr/bin/stap

# usage:   fntimes.stp FUNCTIONPROBE
# e.g.     fntimes.stp 'module("ext4").function("*")'

global mincount = 100      # training: beneath this number of hits, only collect data
global note_percent = 250  # percent beyond maximum-so-far to generate report for
function time() { return gettimeofday_us() }    # time measurement function

global times

function check(t)   # t: elapsed time
{
   pf=probefunc()
   if (@count(times[pf]) >= mincount
       && t >= @max(times[pf]) * note_percent / 100) {   # also consider @avg()
     printf("function %s well over %s time (%d vs %d)\n",
            pf, "maximum", t, @max(times[pf]))
     # also consider: print_backtrace()
   }
   times[pf] <<< t  # (increments @count, updates @max)
}

probe $1.return { check(time()-@entry(time())) }