[project @ 1999-05-18 15:03:54 by simonpj]
[ghc-hetmet.git] / ghc / compiler / deSugar / DsBinds.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[DsBinds]{Pattern-matching bindings (HsBinds and MonoBinds)}
5
6 Handles @HsBinds@; those at the top level require different handling,
7 in that the @Rec@/@NonRec@/etc structure is thrown away (whereas at
8 lower levels it is preserved with @let@/@letrec@s).
9
10 \begin{code}
11 module DsBinds ( dsMonoBinds, AutoScc(..) ) where
12
13 #include "HsVersions.h"
14
15
16 import {-# SOURCE #-}   DsExpr( dsExpr )
17
18 import HsSyn            -- lots of things
19 import CoreSyn          -- lots of things
20 import CoreUtils        ( coreExprType )
21 import TcHsSyn          ( TypecheckedMonoBinds )
22 import DsMonad
23 import DsGRHSs          ( dsGuarded )
24 import DsUtils
25 import Match            ( matchWrapper )
26
27 import BasicTypes       ( RecFlag(..) )
28 import CmdLineOpts      ( opt_SccProfilingOn, opt_AutoSccsOnAllToplevs, 
29                           opt_AutoSccsOnExportedToplevs, opt_AutoSccsOnDicts
30                         )
31 import CostCentre       ( CostCentre, mkAutoCC, IsCafCC(..) )
32 import Id               ( idType, idName, isUserExportedId, Id )
33 import NameSet
34 import VarEnv
35 import VarSet
36 import Type             ( mkTyVarTy, isDictTy )
37 import Subst            ( mkTyVarSubst, substTy )
38 import TysWiredIn       ( voidTy )
39 import Outputable
40
41 import Maybe
42 import IOExts (trace)
43 \end{code}
44
45 %************************************************************************
46 %*                                                                      *
47 \subsection[dsMonoBinds]{Desugaring a @MonoBinds@}
48 %*                                                                      *
49 %************************************************************************
50
51 \begin{code}
52 dsMonoBinds :: AutoScc                  -- scc annotation policy (see below)
53             -> TypecheckedMonoBinds
54             -> [(Id,CoreExpr)]          -- Put this on the end (avoid quadratic append)
55             -> DsM [(Id,CoreExpr)]      -- Result
56
57 dsMonoBinds _ EmptyMonoBinds rest = returnDs rest
58
59 dsMonoBinds auto_scc (AndMonoBinds  binds_1 binds_2) rest
60   = dsMonoBinds auto_scc binds_2 rest   `thenDs` \ rest' ->
61     dsMonoBinds auto_scc binds_1 rest'
62
63 dsMonoBinds _ (CoreMonoBind var core_expr) rest
64   = returnDs ((var, core_expr) : rest)
65
66 dsMonoBinds _ (VarMonoBind var expr) rest
67   = dsExpr expr                 `thenDs` \ core_expr ->
68
69         -- Dictionary bindings are always VarMonoBinds, so
70         -- we only need do this here
71     addDictScc var core_expr    `thenDs` \ core_expr' ->
72
73     returnDs ((var, core_expr') : rest)
74
75 dsMonoBinds auto_scc (FunMonoBind fun _ matches locn) rest
76   = putSrcLocDs locn    $
77     matchWrapper (FunMatch fun) matches error_string    `thenDs` \ (args, body) ->
78     addAutoScc auto_scc (fun, mkLams args body)         `thenDs` \ pair ->
79     returnDs (pair : rest)
80   where
81     error_string = "function " ++ showSDoc (ppr fun)
82
83 dsMonoBinds auto_scc (PatMonoBind pat grhss locn) rest
84   = putSrcLocDs locn $
85     dsGuarded grhss                             `thenDs` \ body_expr ->
86     mkSelectorBinds pat body_expr               `thenDs` \ sel_binds ->
87     mapDs (addAutoScc auto_scc) sel_binds       `thenDs` \ sel_binds ->
88     returnDs (sel_binds ++ rest)
89
90         -- Common case: one exported variable
91         -- All non-recursive bindings come through this way
92 dsMonoBinds auto_scc (AbsBinds all_tyvars dicts exps@[(tyvars, global, local)] inlines binds) rest
93   = ASSERT( all (`elem` tyvars) all_tyvars )
94     dsMonoBinds (addSccs auto_scc exps) binds []        `thenDs` \ core_prs ->
95     let 
96         -- Always treat the binds as recursive, because the typechecker
97         -- makes rather mixed-up dictionary bindings
98         core_binds = [Rec core_prs]
99         global'    = (global, mkInline (idName global `elemNameSet` inlines) $
100                               mkLams tyvars $ mkLams dicts $ 
101                               mkDsLets core_binds (Var local))
102     in
103     returnDs (global' : rest)
104
105         -- Another common special case: no type or dictionary abstraction
106 dsMonoBinds auto_scc (AbsBinds [] [] exports inlines binds) rest
107   = dsMonoBinds (addSccs auto_scc exports) binds []`thenDs` \ core_prs ->
108     let 
109         exports' = [(global, Var local) | (_, global, local) <- exports]
110     in
111     returnDs (addLocalInlines exports inlines core_prs ++ exports' ++ rest)
112
113 dsMonoBinds auto_scc (AbsBinds all_tyvars dicts exports inlines binds) rest
114   = dsMonoBinds (addSccs auto_scc exports) binds []`thenDs` \ core_prs ->
115     let 
116         core_binds = [Rec (addLocalInlines exports inlines core_prs)]
117
118         tup_expr      = mkTupleExpr locals
119         tup_ty        = coreExprType tup_expr
120         poly_tup_expr = mkLams all_tyvars $ mkLams dicts $
121                         mkDsLets core_binds tup_expr
122         locals        = [local | (_, _, local) <- exports]
123         local_tys     = map idType locals
124     in
125     newSysLocalDs (coreExprType poly_tup_expr)          `thenDs` \ poly_tup_id ->
126     let
127         dict_args = map Var dicts
128
129         mk_bind (tyvars, global, local) n       -- locals !! n == local
130           =     -- Need to make fresh locals to bind in the selector, because
131                 -- some of the tyvars will be bound to voidTy
132             newSysLocalsDs (map (substTy env) local_tys)        `thenDs` \ locals' ->
133             newSysLocalDs  (substTy env tup_ty)                 `thenDs` \ tup_id ->
134             returnDs (global, mkLams tyvars $ mkLams dicts $
135                               mkTupleSelector locals' (locals' !! n) tup_id $
136                               mkApps (mkTyApps (Var poly_tup_id) ty_args) dict_args)
137           where
138             mk_ty_arg all_tyvar | all_tyvar `elem` tyvars = mkTyVarTy all_tyvar
139                                 | otherwise               = voidTy
140             ty_args = map mk_ty_arg all_tyvars
141             env     = mkTyVarSubst all_tyvars ty_args
142     in
143     zipWithDs mk_bind exports [0..]             `thenDs` \ export_binds ->
144      -- don't scc (auto-)annotate the tuple itself.
145     returnDs ((poly_tup_id, poly_tup_expr) : (export_binds ++ rest))
146 \end{code}
147
148
149 %************************************************************************
150 %*                                                                      *
151 \subsection{Adding inline pragmas}
152 %*                                                                      *
153 %************************************************************************
154
155 \begin{code}
156 mkInline :: Bool -> CoreExpr -> CoreExpr
157 mkInline True  body = Note InlineMe body
158 mkInline False body = body
159
160 addLocalInlines :: [(a, Id, Id)] -> NameSet -> [(Id,CoreExpr)] -> [(Id,CoreExpr)]
161 addLocalInlines exports inlines pairs
162   = [(bndr, mkInline (bndr `elemVarSet` local_inlines) rhs) | (bndr,rhs) <- pairs]
163   where
164     local_inlines = mkVarSet [l | (_,g,l) <- exports, idName g `elemNameSet` inlines]
165 \end{code}
166
167
168 %************************************************************************
169 %*                                                                      *
170 \subsection[addAutoScc]{Adding automatic sccs}
171 %*                                                                      *
172 %************************************************************************
173
174 \begin{code}
175 data AutoScc
176         = TopLevel
177         | TopLevelAddSccs (Id -> Maybe Id)
178         | NoSccs
179
180 addSccs :: AutoScc -> [(a,Id,Id)] -> AutoScc
181 addSccs auto_scc@(TopLevelAddSccs _) exports = auto_scc
182 addSccs NoSccs   exports = NoSccs
183 addSccs TopLevel exports 
184   = TopLevelAddSccs (\id -> case [ exp | (_,exp,loc) <- exports, loc == id ] of
185                                 (exp:_)  | opt_AutoSccsOnAllToplevs || 
186                                             (isUserExportedId exp && 
187                                              opt_AutoSccsOnExportedToplevs)
188                                         -> Just exp
189                                 _ -> Nothing)
190
191 addAutoScc :: AutoScc           -- if needs be, decorate toplevs?
192            -> (Id, CoreExpr)
193            -> DsM (Id, CoreExpr)
194
195 addAutoScc (TopLevelAddSccs auto_scc_fn) pair@(bndr, core_expr) 
196  | do_auto_scc && worthSCC core_expr
197      = getModuleAndGroupDs `thenDs` \ (mod,grp) ->
198        returnDs (bndr, Note (SCC (mkAutoCC top_bndr mod grp NotCafCC)) core_expr)
199  where do_auto_scc = isJust maybe_auto_scc
200        maybe_auto_scc = auto_scc_fn bndr
201        (Just top_bndr) = maybe_auto_scc
202 addAutoScc _ pair
203      = returnDs pair
204
205 worthSCC (Note (SCC _) _) = False
206 worthSCC (Con _ _)        = False
207 worthSCC core_expr        = True
208 \end{code}
209
210 If profiling and dealing with a dict binding, wrap the dict in "_scc_ DICT <dict>":
211
212 \begin{code}
213 addDictScc var rhs = returnDs rhs
214
215 {- DISABLED for now (need to somehow make up a name for the scc) -- SDM
216   | not ( opt_SccProfilingOn && opt_AutoSccsOnDicts)
217     || not (isDictTy (idType var))
218   = returnDs rhs                                -- That's easy: do nothing
219
220   | otherwise
221   = getModuleAndGroupDs         `thenDs` \ (mod, grp) ->
222         -- ToDo: do -dicts-all flag (mark dict things with individual CCs)
223     returnDs (Note (SCC (mkAllDictsCC mod grp False)) rhs)
224 -}
225 \end{code}