[project @ 2002-09-13 15:17:15 by simonpj]
[ghc-hetmet.git] / ghc / compiler / deSugar / Desugar.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[Desugar]{@deSugar@: the main function}
5
6 \begin{code}
7 module Desugar ( deSugar, deSugarExpr ) where
8
9 #include "HsVersions.h"
10
11 import CmdLineOpts      ( DynFlag(..), dopt, opt_SccProfilingOn )
12 import HscTypes         ( ModGuts(..), ModGuts, HscEnv(..), ExternalPackageState(..), 
13                           PersistentCompilerState(..), 
14                           lookupType, unQualInScope )
15 import HsSyn            ( MonoBinds, RuleDecl(..), RuleBndr(..), 
16                           HsExpr(..), HsBinds(..), MonoBinds(..) )
17 import TcHsSyn          ( TypecheckedRuleDecl, TypecheckedHsExpr )
18 import TcRnTypes        ( TcGblEnv(..), ImportAvails(imp_mods) )
19 import MkIface          ( mkUsageInfo )
20 import Id               ( Id )
21 import CoreSyn
22 import PprCore          ( pprIdRules, pprCoreExpr )
23 import Subst            ( substExpr, mkSubst, mkInScopeSet )
24 import DsMonad
25 import DsExpr           ( dsExpr )
26 import DsBinds          ( dsMonoBinds, AutoScc(..) )
27 import DsForeign        ( dsForeigns )
28 import DsExpr           ()      -- Forces DsExpr to be compiled; DsBinds only
29                                 -- depends on DsExpr.hi-boot.
30 import Module           ( Module, moduleEnvElts )
31 import Id               ( Id )
32 import NameEnv          ( lookupNameEnv )
33 import VarEnv
34 import VarSet
35 import Bag              ( isEmptyBag, mapBag )
36 import CoreLint         ( showPass, endPass )
37 import ErrUtils         ( doIfSet, dumpIfSet_dyn, pprBagOfWarnings, addShortWarnLocLine )
38 import Outputable
39 import qualified Pretty
40 import UniqSupply       ( mkSplitUniqSupply )
41 import SrcLoc           ( SrcLoc )
42 import FastString
43 import DATA_IOREF       ( readIORef )
44 \end{code}
45
46 %************************************************************************
47 %*                                                                      *
48 %*              The main function: deSugar
49 %*                                                                      *
50 %************************************************************************
51
52 \begin{code}
53 deSugar :: HscEnv -> PersistentCompilerState
54         -> TcGblEnv -> IO ModGuts
55
56 deSugar hsc_env pcs
57         (TcGblEnv { tcg_mod      = mod,
58                     tcg_type_env = type_env,
59                     tcg_usages   = usage_var,
60                     tcg_imports  = imports,
61                     tcg_exports  = exports,
62                     tcg_rdr_env  = rdr_env,
63                     tcg_fix_env  = fix_env,
64                     tcg_deprecs  = deprecs,
65                     tcg_insts    = insts,
66                     tcg_binds    = binds,
67                     tcg_fords    = fords,
68                     tcg_rules    = rules })
69   = do  { showPass dflags "Desugar"
70         ; us <- mkSplitUniqSupply 'd'
71         ; usages <- readIORef usage_var 
72
73         -- Do desugaring
74         ; let ((ds_binds, ds_rules, ds_fords), ds_warns) 
75                 = initDs dflags us lookup mod
76                          (dsProgram binds rules fords)
77         
78               warn_doc = pprBagOfWarnings (mapBag mk_warn ds_warns)
79
80         -- Display any warnings
81         ; doIfSet (not (isEmptyBag ds_warns))
82                   (printErrs warn_doc)
83
84         -- Lint result if necessary
85         ; endPass dflags "Desugar" Opt_D_dump_ds ds_binds
86
87         -- Dump output
88         ; doIfSet (dopt Opt_D_dump_ds dflags) 
89                   (printDump (ppr_ds_rules ds_rules))
90
91         ; let 
92              mod_guts = ModGuts {       
93                 mg_module   = mod,
94                 mg_exports  = exports,
95                 mg_usages   = mkUsageInfo hsc_env eps imports usages,
96                 mg_dir_imps = [m | (m,_) <- moduleEnvElts (imp_mods imports)],
97                 mg_rdr_env  = rdr_env,
98                 mg_fix_env  = fix_env,
99                 mg_deprecs  = deprecs,
100                 mg_types    = type_env,
101                 mg_insts    = insts,
102                 mg_rules    = ds_rules,
103                 mg_binds    = ds_binds,
104                 mg_foreign  = ds_fords }
105         
106         ; return mod_guts
107         }
108
109   where
110     dflags       = hsc_dflags hsc_env
111     print_unqual = unQualInScope rdr_env
112
113         -- Desugarer warnings are SDocs; here we
114         -- add the info about whether or not to print unqualified
115     mk_warn :: (SrcLoc,SDoc) -> (SrcLoc, Pretty.Doc)
116     mk_warn (loc, sdoc) = addShortWarnLocLine loc print_unqual sdoc
117
118         -- The lookup function passed to initDs is used for well-known Ids, 
119         -- such as fold, build, cons etc, so the chances are
120         -- it'll be found in the package symbol table.  That's
121         -- why we don't merge all these tables
122     eps      = pcs_EPS pcs
123     pte      = eps_PTE eps
124     hpt      = hsc_HPT hsc_env
125     lookup n = case lookupType hpt pte n of {
126                  Just v -> v ;
127                  other -> 
128                case lookupNameEnv type_env n of
129                  Just v -> v ;
130                  other         -> pprPanic "Desugar: lookup:" (ppr n)
131                }
132
133 deSugarExpr :: HscEnv
134             -> PersistentCompilerState
135             -> Module -> PrintUnqualified
136             -> TypecheckedHsExpr
137             -> IO CoreExpr
138 deSugarExpr hsc_env pcs mod_name unqual tc_expr
139   = do  { showPass dflags "Desugar"
140         ; us <- mkSplitUniqSupply 'd'
141
142         -- Do desugaring
143         ; let (core_expr, ds_warns) = initDs dflags us lookup mod_name (dsExpr tc_expr)    
144               warn_doc = pprBagOfWarnings (mapBag mk_warn ds_warns)
145               mk_warn :: (SrcLoc,SDoc) -> (SrcLoc, Pretty.Doc)
146               mk_warn (loc,sdoc) = addShortWarnLocLine loc unqual sdoc
147
148         -- Display any warnings
149         ; doIfSet (not (isEmptyBag ds_warns))
150                   (printErrs warn_doc)
151
152         -- Dump output
153         ; dumpIfSet_dyn dflags Opt_D_dump_ds "Desugared" (pprCoreExpr core_expr)
154
155         ; return core_expr
156         }
157   where
158     dflags   = hsc_dflags hsc_env
159     hpt      = hsc_HPT hsc_env
160     pte      = eps_PTE (pcs_EPS pcs)
161     lookup n = case lookupType hpt pte n of
162                  Just v -> v 
163                  other  -> pprPanic "Desugar: lookup:" (ppr n)
164
165 dsProgram all_binds rules fo_decls
166   = dsMonoBinds auto_scc all_binds []   `thenDs` \ core_prs ->
167     dsForeigns fo_decls                 `thenDs` \ (ds_fords, foreign_binds) ->
168     let
169         ds_binds      = [Rec (foreign_binds ++ core_prs)]
170         -- Notice that we put the whole lot in a big Rec, even the foreign binds
171         -- When compiling PrelFloat, which defines data Float = F# Float#
172         -- we want F# to be in scope in the foreign marshalling code!
173         -- You might think it doesn't matter, but the simplifier brings all top-level
174         -- things into the in-scope set before simplifying; so we get no unfolding for F#!
175
176         local_binders = mkVarSet (bindersOfBinds ds_binds)
177     in
178     mapDs (dsRule local_binders) rules  `thenDs` \ ds_rules ->
179     returnDs (ds_binds, ds_rules, ds_fords)
180   where
181     auto_scc | opt_SccProfilingOn = TopLevel
182              | otherwise          = NoSccs
183
184 ppr_ds_rules [] = empty
185 ppr_ds_rules rules
186   = text "" $$ text "-------------- DESUGARED RULES -----------------" $$
187     pprIdRules rules
188 \end{code}
189
190
191
192 %************************************************************************
193 %*                                                                      *
194 %*              Desugaring transformation rules
195 %*                                                                      *
196 %************************************************************************
197
198 \begin{code}
199 dsRule :: IdSet -> TypecheckedRuleDecl -> DsM (Id, CoreRule)
200 dsRule in_scope (IfaceRuleOut fun rule) -- Built-in rules come this way
201   = returnDs (fun, rule)
202
203 dsRule in_scope (HsRule name act vars lhs rhs loc)
204   = putSrcLocDs loc             $
205     ds_lhs all_vars lhs         `thenDs` \ (fn, args) ->
206     dsExpr rhs                  `thenDs` \ core_rhs ->
207     returnDs (fn, Rule name act tpl_vars args core_rhs)
208   where
209     tpl_vars = [var | RuleBndr var <- vars]
210     all_vars = mkInScopeSet (in_scope `unionVarSet` mkVarSet tpl_vars)
211
212 ds_lhs all_vars lhs
213   = let
214         (dict_binds, body) = case lhs of
215                 (HsLet (MonoBind dict_binds _ _) body) -> (dict_binds, body)
216                 other                                  -> (EmptyMonoBinds, lhs)
217     in
218     ds_dict_binds dict_binds    `thenDs` \ dict_binds' ->
219     dsExpr body                 `thenDs` \ body' ->
220
221         -- Substitute the dict bindings eagerly,
222         -- and take the body apart into a (f args) form
223     let
224         subst_env = mkSubstEnv [id                   | (id,rhs) <- dict_binds']
225                                [ContEx subst_env rhs | (id,rhs) <- dict_binds']
226                         -- Note recursion here... substitution won't terminate
227                         -- if there is genuine recursion... which there isn't
228
229         subst = mkSubst all_vars subst_env
230         body'' = substExpr subst body'
231     in
232         
233         -- Now unpack the resulting body
234     let
235         pair = case collectArgs body'' of
236                         (Var fn, args) -> (fn, args)
237                         other          -> pprPanic "dsRule" (ppr lhs)
238     in
239     returnDs pair
240
241 ds_dict_binds EmptyMonoBinds       = returnDs []
242 ds_dict_binds (AndMonoBinds b1 b2) = ds_dict_binds b1   `thenDs` \ env1 ->
243                                      ds_dict_binds b2   `thenDs` \ env2 ->
244                                      returnDs (env1 ++ env2)
245 ds_dict_binds (VarMonoBind id rhs) = dsExpr rhs         `thenDs` \ rhs' ->
246                                      returnDs [(id,rhs')]
247 \end{code}