[project @ 2000-10-23 11:50:40 by sewardj]
[ghc-hetmet.git] / ghc / compiler / main / HscStats.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1993-1998
3 %
4 \section[GHC_Stats]{Statistics for per-module compilations}
5
6 \begin{code}
7 module HscStats ( ppSourceStats ) where
8
9 #include "HsVersions.h"
10
11 import IO               ( hPutStr, stderr )
12 import HsSyn
13 import Outputable
14 import Char             ( isSpace )
15 \end{code}
16
17 %************************************************************************
18 %*                                                                      *
19 \subsection{Statistics}
20 %*                                                                      *
21 %************************************************************************
22
23 \begin{code}
24 ppSourceStats short (HsModule name version exports imports decls _ src_loc)
25  = (if short then hcat else vcat)
26         (map pp_val
27                [("ExportAll        ", export_all), -- 1 if no export list
28                 ("ExportDecls      ", export_ds),
29                 ("ExportModules    ", export_ms),
30                 ("Imports          ", import_no),
31                 ("  ImpQual        ", import_qual),
32                 ("  ImpAs          ", import_as),
33                 ("  ImpAll         ", import_all),
34                 ("  ImpPartial     ", import_partial),
35                 ("  ImpHiding      ", import_hiding),
36                 ("FixityDecls      ", fixity_ds),
37                 ("DefaultDecls     ", default_ds),
38                 ("TypeDecls        ", type_ds),
39                 ("DataDecls        ", data_ds),
40                 ("NewTypeDecls     ", newt_ds),
41                 ("DataConstrs      ", data_constrs),
42                 ("DataDerivings    ", data_derivs),
43                 ("ClassDecls       ", class_ds),
44                 ("ClassMethods     ", class_method_ds),
45                 ("DefaultMethods   ", default_method_ds),
46                 ("InstDecls        ", inst_ds),
47                 ("InstMethods      ", inst_method_ds),
48                 ("TypeSigs         ", bind_tys),
49                 ("ValBinds         ", val_bind_ds),
50                 ("FunBinds         ", fn_bind_ds),
51                 ("InlineMeths      ", method_inlines),
52                 ("InlineBinds      ", bind_inlines),
53 --              ("SpecialisedData  ", data_specs),
54 --              ("SpecialisedInsts ", inst_specs),
55                 ("SpecialisedMeths ", method_specs),
56                 ("SpecialisedBinds ", bind_specs)
57                ])
58   where
59     pp_val (str, 0) = empty
60     pp_val (str, n) 
61       | not short   = hcat [text str, int n]
62       | otherwise   = hcat [text (trim str), equals, int n, semi]
63     
64     trim ls     = takeWhile (not.isSpace) (dropWhile isSpace ls)
65
66     fixity_ds   = length [() | FixD d <- decls]
67                 -- NB: this omits fixity decls on local bindings and
68                 -- in class decls.  ToDo
69
70     tycl_decls  = [d | TyClD d <- decls]
71     (class_ds, data_ds, newt_ds, type_ds) = countTyClDecls tycl_decls
72
73     inst_decls  = [d | InstD d <- decls]
74     inst_ds     = length inst_decls
75     default_ds  = length [() | DefD _ <- decls]
76     val_decls   = [d | ValD d <- decls]
77
78     real_exports = case exports of { Nothing -> []; Just es -> es }
79     n_exports    = length real_exports
80     export_ms    = length [() | IEModuleContents _ <- real_exports]
81     export_ds    = n_exports - export_ms
82     export_all   = case exports of { Nothing -> 1; other -> 0 }
83
84     (val_bind_ds, fn_bind_ds, bind_tys, bind_specs, bind_inlines)
85         = count_binds (foldr ThenBinds EmptyBinds val_decls)
86
87     (import_no, import_qual, import_as, import_all, import_partial, import_hiding)
88         = foldr add6 (0,0,0,0,0,0) (map import_info imports)
89     (data_constrs, data_derivs)
90         = foldr add2 (0,0) (map data_info tycl_decls)
91     (class_method_ds, default_method_ds)
92         = foldr add2 (0,0) (map class_info tycl_decls)
93     (inst_method_ds, method_specs, method_inlines)
94         = foldr add3 (0,0,0) (map inst_info inst_decls)
95
96
97     count_binds EmptyBinds        = (0,0,0,0,0)
98     count_binds (ThenBinds b1 b2) = count_binds b1 `add5` count_binds b2
99     count_binds (MonoBind b sigs _) = case (count_monobinds b, count_sigs sigs) of
100                                         ((vs,fs),(ts,_,ss,is)) -> (vs,fs,ts,ss,is)
101
102     count_monobinds EmptyMonoBinds                 = (0,0)
103     count_monobinds (AndMonoBinds b1 b2)           = count_monobinds b1 `add2` count_monobinds b2
104     count_monobinds (PatMonoBind (VarPatIn n) r _) = (1,0)
105     count_monobinds (PatMonoBind p r _)            = (0,1)
106     count_monobinds (FunMonoBind f _ m _)          = (0,1)
107
108     count_sigs sigs = foldr add4 (0,0,0,0) (map sig_info sigs)
109
110     sig_info (Sig _ _ _)            = (1,0,0,0)
111     sig_info (ClassOpSig _ _ _ _)   = (0,1,0,0)
112     sig_info (SpecSig _ _ _)        = (0,0,1,0)
113     sig_info (InlineSig _ _ _)      = (0,0,0,1)
114     sig_info (NoInlineSig _ _ _)    = (0,0,0,1)
115     sig_info _                      = (0,0,0,0)
116
117     import_info (ImportDecl _ _ qual as spec _)
118         = add6 (1, qual_info qual, as_info as, 0,0,0) (spec_info spec)
119     qual_info False  = 0
120     qual_info True   = 1
121     as_info Nothing  = 0
122     as_info (Just _) = 1
123     spec_info Nothing           = (0,0,0,1,0,0)
124     spec_info (Just (False, _)) = (0,0,0,0,1,0)
125     spec_info (Just (True, _))  = (0,0,0,0,0,1)
126
127     data_info (TyData _ _ _ _ _ nconstrs derivs _ _ _ _)
128         = (nconstrs, case derivs of {Nothing -> 0; Just ds -> length ds})
129     data_info other = (0,0)
130
131     class_info (ClassDecl _ _ _ _ meth_sigs def_meths _ _ _ )
132         = case count_sigs meth_sigs of
133             (_,classops,_,_) ->
134                (classops, addpr (count_monobinds def_meths))
135     class_info other = (0,0)
136
137     inst_info (InstDecl _ inst_meths inst_sigs _ _)
138         = case count_sigs inst_sigs of
139             (_,_,ss,is) ->
140                (addpr (count_monobinds inst_meths), ss, is)
141
142     addpr :: (Int,Int) -> Int
143     add1  :: Int -> Int -> Int
144     add2  :: (Int,Int) -> (Int,Int) -> (Int, Int)
145     add3  :: (Int,Int,Int) -> (Int,Int,Int) -> (Int, Int, Int)
146     add4  :: (Int,Int,Int,Int) -> (Int,Int,Int,Int) -> (Int, Int, Int, Int)
147     add5  :: (Int,Int,Int,Int,Int) -> (Int,Int,Int,Int,Int) -> (Int, Int, Int, Int, Int)
148     add6  :: (Int,Int,Int,Int,Int,Int) -> (Int,Int,Int,Int,Int,Int) -> (Int, Int, Int, Int, Int, Int)
149
150     addpr (x,y) = x+y
151     add1 x1 y1  = x1+y1
152     add2 (x1,x2) (y1,y2) = (x1+y1,x2+y2)
153     add3 (x1,x2,x3) (y1,y2,y3) = (x1+y1,x2+y2,x3+y3)
154     add4 (x1,x2,x3,x4) (y1,y2,y3,y4) = (x1+y1,x2+y2,x3+y3,x4+y4)
155     add5 (x1,x2,x3,x4,x5) (y1,y2,y3,y4,y5) = (x1+y1,x2+y2,x3+y3,x4+y4,x5+y5)
156     add6 (x1,x2,x3,x4,x5,x6) (y1,y2,y3,y4,y5,y6) = (x1+y1,x2+y2,x3+y3,x4+y4,x5+y5,x6+y6)
157 \end{code}
158
159
160
161
162
163
164
165
166