SCM Repository
View of /trunk/src/compiler/common/stats.sml
Parent Directory
|
Revision Log
Revision 3349 -
(download)
(annotate)
Tue Oct 27 15:16:36 2015 UTC (6 years, 6 months ago) by jhr
File size: 2380 byte(s)
Tue Oct 27 15:16:36 2015 UTC (6 years, 6 months ago) by jhr
File size: 2380 byte(s)
making copyrights consistent for all code in the repository
(* stats.sml * * This code is part of the Diderot Project (http://diderot-language.cs.uchicago.edu) * * COPYRIGHT (c) 2015 The University of Chicago * All rights reserved. * * Collect statistics about the various optimizations and transformations. * * This module is lifted from the Manticore project *) structure Stats :> sig type counter val reportStats : bool ref val newCounter : string -> counter val tick : counter -> unit (* increment by one *) val bump : (counter * int) -> unit (* increment by an integer *) val count : counter -> int (* return current count *) val name : counter -> string (* return counter's name *) val reset : counter -> unit (* reset counter to zero *) val sum : {from : counter, to : counter} -> int val sumAll : unit -> int val resetAll : unit -> unit val report : unit -> unit end = struct structure A = Array val maxNumCounters = 512 val names = A.array(maxNumCounters, "") val counters = A.array(maxNumCounters, 0) val nextCounter = ref 0 val reportStats = ref false type counter = int fun newCounter name = let val n = !nextCounter in if (n < maxNumCounters) then (A.update(names, n, name); nextCounter := n+1; n) else raise Fail "too many counters" end fun tick i = ( if Log.enabled() then Log.msg(concat["++ ", A.sub(names, i), "\n"]) else (); A.update(counters, i, A.sub(counters, i)+1)) fun bump (i, n) = A.update(counters, i, A.sub(counters, i)+n) fun count i = A.sub(counters, i) fun name i = A.sub(names, i) fun reset i = A.update(counters, i, 0) fun sum {from : counter, to : counter} = if (to < from) then 0 else ArraySlice.foldl (fn (n, s) => n+s) 0 (ArraySlice.slice(counters, from, SOME((to-from)+1))) fun sumAll () = sum{from = 0, to = (!nextCounter - 1)} fun resetAll () = A.modify (fn _ => 0) counters fun report () = if !reportStats then let fun prl l = Log.msg(String.concat l) fun lp i = if (i < !nextCounter) then let val n = Array.sub(counters, i) in if n > 0 then prl [ StringCvt.padRight #" " 31 (Array.sub(names, i)), " ", Int.toString n, "\n" ] else (); lp (i+1) end else () in lp 0 end else () end
root@smlnj-gforge.cs.uchicago.edu | ViewVC Help |
Powered by ViewVC 1.0.0 |