2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
|
|
|
;;; Copyright (C) 2006,2007 Abdulaziz Ghuloum
|
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2006-12-29 02:53:47 -05:00
|
|
|
|
2007-04-29 04:38:08 -04:00
|
|
|
(library (ikarus timers)
|
2007-05-05 22:15:40 -04:00
|
|
|
(export time-it)
|
|
|
|
(import (except (ikarus) time-it))
|
2007-04-29 04:38:08 -04:00
|
|
|
|
2007-10-12 02:59:27 -04:00
|
|
|
(define-struct stats
|
2007-08-30 12:54:21 -04:00
|
|
|
(user-secs user-usecs
|
|
|
|
sys-secs sys-usecs
|
|
|
|
real-secs real-usecs
|
|
|
|
collection-id
|
|
|
|
gc-user-secs gc-user-usecs
|
|
|
|
gc-sys-secs gc-sys-usecs
|
|
|
|
gc-real-secs gc-real-usecs
|
|
|
|
))
|
2006-12-29 02:53:47 -05:00
|
|
|
|
|
|
|
(define (mk-stats)
|
2007-08-30 12:54:21 -04:00
|
|
|
(make-stats #f #f #f #f #f #f #f #f #f #f #f #f #f))
|
2006-12-29 02:53:47 -05:00
|
|
|
|
2007-09-02 02:03:29 -04:00
|
|
|
(define verbose-timer (make-parameter #f))
|
|
|
|
|
2006-12-29 02:53:47 -05:00
|
|
|
(define (set-stats! t)
|
|
|
|
(foreign-call "ikrt_stats_now" t))
|
|
|
|
|
2006-12-29 05:45:30 -05:00
|
|
|
(define (print-stats message bytes t1 t0)
|
2007-08-30 13:16:06 -04:00
|
|
|
(define (print-time msg msecs gc-msecs)
|
2007-08-30 17:25:29 -04:00
|
|
|
(printf " ~a ms elapsed ~a time, including ~a ms collecting\n" msecs msg
|
2007-08-30 13:16:06 -04:00
|
|
|
gc-msecs))
|
2007-01-21 19:20:37 -05:00
|
|
|
(define (msecs s1 s0 u1 u0)
|
|
|
|
(+ (* (- s1 s0) 1000) (quotient (- u1 u0) 1000)))
|
|
|
|
(if message
|
|
|
|
(printf "running stats for ~a:\n" message)
|
|
|
|
(printf "running stats:\n"))
|
|
|
|
(let ([collections
|
|
|
|
(fx- (stats-collection-id t1) (stats-collection-id t0))])
|
|
|
|
(case collections
|
|
|
|
[(0) (display " no collections\n")]
|
|
|
|
[(1) (display " 1 collection\n")]
|
|
|
|
[else (printf " ~a collections\n" collections)]))
|
|
|
|
(print-time "cpu"
|
|
|
|
(+ (msecs (stats-user-secs t1) (stats-user-secs t0)
|
|
|
|
(stats-user-usecs t1) (stats-user-usecs t0))
|
|
|
|
(msecs (stats-sys-secs t1) (stats-sys-secs t0)
|
2007-08-30 13:16:06 -04:00
|
|
|
(stats-sys-usecs t1) (stats-sys-usecs t0)))
|
|
|
|
(+ (msecs (stats-gc-user-secs t1) (stats-gc-user-secs t0)
|
|
|
|
(stats-gc-user-usecs t1) (stats-gc-user-usecs t0))
|
|
|
|
(msecs (stats-gc-sys-secs t1) (stats-gc-sys-secs t0)
|
|
|
|
(stats-gc-sys-usecs t1) (stats-gc-sys-usecs t0))))
|
2007-01-21 19:20:37 -05:00
|
|
|
(print-time "real"
|
|
|
|
(msecs (stats-real-secs t1) (stats-real-secs t0)
|
2007-08-30 13:16:06 -04:00
|
|
|
(stats-real-usecs t1) (stats-real-usecs t0))
|
|
|
|
(msecs (stats-gc-real-secs t1) (stats-gc-real-secs t0)
|
|
|
|
(stats-gc-real-usecs t1) (stats-gc-real-usecs t0)))
|
2007-09-02 02:03:29 -04:00
|
|
|
(when (verbose-timer)
|
|
|
|
(print-time "user"
|
|
|
|
(msecs (stats-user-secs t1) (stats-user-secs t0)
|
|
|
|
(stats-user-usecs t1) (stats-user-usecs t0))
|
|
|
|
(msecs (stats-gc-user-secs t1) (stats-gc-user-secs t0)
|
|
|
|
(stats-gc-user-usecs t1) (stats-gc-user-usecs t0)))
|
|
|
|
(print-time "sys"
|
|
|
|
(msecs (stats-sys-secs t1) (stats-sys-secs t0)
|
|
|
|
(stats-sys-usecs t1) (stats-sys-usecs t0))
|
|
|
|
(msecs (stats-gc-sys-secs t1) (stats-gc-sys-secs t0)
|
|
|
|
(stats-gc-sys-usecs t1) (stats-gc-sys-usecs t0))))
|
2007-01-21 19:20:37 -05:00
|
|
|
(printf " ~a bytes allocated\n" bytes))
|
|
|
|
|
|
|
|
(define (print-stats-old message bytes t1 t0)
|
2006-12-29 02:53:47 -05:00
|
|
|
(define (print-time msg secs usecs)
|
|
|
|
(if (fx< usecs 0)
|
|
|
|
(print-time msg (fx- secs 1) (fx+ usecs 1000000))
|
2007-01-20 16:52:22 -05:00
|
|
|
(printf " ~a.~a~a~as ~a"
|
2006-12-29 02:53:47 -05:00
|
|
|
secs
|
|
|
|
(fxremainder (fxquotient usecs 100000) 10)
|
|
|
|
(fxremainder (fxquotient usecs 10000) 10)
|
|
|
|
(fxremainder (fxquotient usecs 1000) 10)
|
|
|
|
msg)))
|
|
|
|
(if message
|
|
|
|
(printf "running stats for ~a:\n" message)
|
|
|
|
(printf "running stats:\n"))
|
2006-12-29 05:45:30 -05:00
|
|
|
(let ([collections
|
|
|
|
(fx- (stats-collection-id t1) (stats-collection-id t0))])
|
|
|
|
(case collections
|
|
|
|
[(0) (display " no collections\n")]
|
|
|
|
[(1) (display " 1 collection\n")]
|
|
|
|
[else (printf " ~a collections\n" collections)]))
|
|
|
|
|
2007-01-20 16:52:22 -05:00
|
|
|
(print-time "real"
|
|
|
|
(fx- (stats-real-secs t1) (stats-real-secs t0))
|
|
|
|
(fx- (stats-real-usecs t1) (stats-real-usecs t0)))
|
2006-12-29 02:53:47 -05:00
|
|
|
(print-time "user"
|
|
|
|
(fx- (stats-user-secs t1) (stats-user-secs t0))
|
|
|
|
(fx- (stats-user-usecs t1) (stats-user-usecs t0)))
|
2007-01-20 16:52:22 -05:00
|
|
|
(print-time "sys\n"
|
2006-12-29 02:53:47 -05:00
|
|
|
(fx- (stats-sys-secs t1) (stats-sys-secs t0))
|
|
|
|
(fx- (stats-sys-usecs t1) (stats-sys-usecs t0)))
|
2006-12-29 05:45:30 -05:00
|
|
|
(printf " ~a bytes allocated\n" bytes))
|
2006-12-29 02:53:47 -05:00
|
|
|
|
|
|
|
(define time-it
|
|
|
|
(case-lambda
|
|
|
|
[(proc)
|
2007-05-07 02:32:39 -04:00
|
|
|
(time-it #f proc)]
|
|
|
|
[(message proc)
|
2006-12-29 02:53:47 -05:00
|
|
|
(unless (procedure? proc)
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'time-it "not a procedure" proc))
|
2006-12-29 05:45:30 -05:00
|
|
|
(let* ([t0 (mk-stats)]
|
|
|
|
[t1 (mk-stats)]
|
|
|
|
[bytes-min (bytes-minor)]
|
|
|
|
[bytes-maj (bytes-major)])
|
2006-12-29 02:53:47 -05:00
|
|
|
(set-stats! t0)
|
|
|
|
(call-with-values proc
|
|
|
|
(case-lambda
|
|
|
|
[(v)
|
|
|
|
(set-stats! t1)
|
2006-12-29 05:45:30 -05:00
|
|
|
(print-stats message
|
|
|
|
(diff-bytes bytes-min bytes-maj
|
|
|
|
(bytes-minor) (bytes-major))
|
|
|
|
t1 t0)
|
2006-12-29 02:53:47 -05:00
|
|
|
v]
|
|
|
|
[v*
|
|
|
|
(set-stats! t1)
|
2006-12-29 05:45:30 -05:00
|
|
|
(print-stats message
|
|
|
|
(diff-bytes bytes-min bytes-maj
|
|
|
|
(bytes-minor) (bytes-major))
|
|
|
|
t1 t0)
|
2006-12-29 02:53:47 -05:00
|
|
|
(apply values v*)])))]))
|
2006-12-29 05:45:30 -05:00
|
|
|
|
|
|
|
(define (bytes-minor)
|
|
|
|
(foreign-call "ikrt_bytes_allocated"))
|
|
|
|
(define (bytes-major)
|
|
|
|
(foreign-call "ikrt_bytes_allocated_major"))
|
|
|
|
(define (diff-bytes mnr0 mjr0 mnr1 mjr1)
|
|
|
|
(+ (fx- mnr1 mnr0) (* (fx- mjr1 mjr0) #x10000000)))
|
2006-12-29 02:53:47 -05:00
|
|
|
|
|
|
|
)
|