summaryrefslogtreecommitdiff
path: root/ipl/mprogs/numsum.icn
blob: f08f15e15eab4195c416959a665639c65d80db56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
############################################################################
#
#	File:     numsum.icn
#
#	Subject:  Program to tabulate numerical computation
#
#	Author:   Ralph E. Griswold
#
#	Date:     September 20, 1994
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This tool tabulates numerical-computation activity.  It is called as
#
#	numsum prog
#
#  where prog is a program compiled under MT Icon whose events are to
#  be tabulated.
#	
#  The options supported are:
#
#	-o s	write output to file s; default &output.
#
#	-t	record time spent in monitoring.
#
############################################################################
#
#  Requires:  MT Icon and event monitoring.
#
############################################################################
#
#  Links:  evinit, options, procname
#
############################################################################
#
#  Includes:  evdefs.icn
#
############################################################################

link evinit
link options
link procname

$include "evdefs.icn"

procedure main(args)
   local opts, itime, output, inttbl, reltbl, cmask, rmask, numlist, op
   local pos, neg, plus, minus, mpy, div, pwr, mod, count

   opts := options(args, "o:t")

   output := open(\opts["o"], "w") | &output

   if \opts["t"] then itime := &time

   EvInit(args) | stop("*** cannot load program")	# initialize interface

   inttbl := table(0)
   reltbl := table(0)

   cmask := E_Fcall ++ E_Ocall
   rmask := E_Fret ++ E_Oret ++ E_Ffail ++ E_Ofail

   pos := proc("+", 1)
   neg := proc("-", 1)
   plus := proc("+", 2)
   minus := proc("-", 2)
   mpy := proc("*", 2)
   div := proc("/", 2)
   mod := proc("%", 2)
   pwr := proc("^", 2)

   while EvGet(cmask) do {
      if (op := &eventvalue) === (
         plus | minus | mpy | div | neg | pwr | mod |
         iand | ior | ixor | icom | ishift | pos
         )  then {
            EvGet(rmask)
            if &eventcode === (E_Ofail | E_Ffail) then next
            case type(&eventvalue) of {
               "integer":  inttbl[op] +:= 1
               "real":     reltbl[op] +:= 1
               }
            }
      }

   write(output, "\nInteger computation:\n")
   numlist := sort(inttbl, 4)
   while count := pull(numlist) do
      write(output, left(procname(pull(numlist)), 6), right(count, 9))

   write(output, "\nReal computation:\n")
   numlist := sort(reltbl, 4)
   while count := pull(numlist) do
      while write(output, left(procname(pull(numlist)), 6), right(count, 9))

   write(output, "\nelapsed time: ", &time - \itime, "ms")

end