2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 \section[Desugar]{@deSugar@: the main function}
7 module Desugar ( deSugar, deSugarExpr ) where
9 #include "HsVersions.h"
11 import CmdLineOpts ( DynFlag(..), DynFlags(..), dopt, opt_SccProfilingOn )
12 import DriverPhases ( isHsBoot )
13 import HscTypes ( ModGuts(..), ModGuts, HscEnv(..), GhciMode(..),
14 Dependencies(..), TypeEnv, IsBootInterface )
15 import HsSyn ( RuleDecl(..), RuleBndr(..), HsExpr(..), LHsExpr,
16 HsBindGroup(..), LRuleDecl, HsBind(..) )
17 import TcRnTypes ( TcGblEnv(..), ImportAvails(..) )
18 import MkIface ( mkUsageInfo )
19 import Id ( Id, setIdExported, idName, idIsFrom )
20 import Name ( Name, isExternalName )
22 import PprCore ( pprIdRules, pprCoreExpr )
23 import CoreSubst ( substExpr, mkSubst )
25 import DsExpr ( dsLExpr )
26 import DsBinds ( dsHsBinds, 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, delModuleEnv, moduleFS )
32 import RdrName ( GlobalRdrEnv )
36 import Bag ( Bag, isEmptyBag, emptyBag, bagToList )
37 import CoreLint ( showPass, endPass )
38 import CoreFVs ( ruleRhsFreeVars )
39 import Packages ( PackageState(thPackageId), PackageIdH(..) )
40 import ErrUtils ( doIfSet, dumpIfSet_dyn, pprBagOfWarnings,
41 errorsFound, WarnMsg )
42 import ListSetOps ( insertList )
44 import UniqSupply ( mkSplitUniqSupply )
45 import SrcLoc ( Located(..), unLoc )
46 import DATA_IOREF ( readIORef )
48 import Util ( sortLe )
51 %************************************************************************
53 %* The main function: deSugar
55 %************************************************************************
58 deSugar :: HscEnv -> TcGblEnv -> IO (Bag WarnMsg, Maybe ModGuts)
59 -- Can modify PCS by faulting in more declarations
62 tcg_env@(TcGblEnv { tcg_mod = mod,
64 tcg_type_env = type_env,
65 tcg_imports = imports,
66 tcg_exports = exports,
68 tcg_inst_uses = dfun_uses_var,
71 tcg_rdr_env = rdr_env,
72 tcg_fix_env = fix_env,
73 tcg_deprecs = deprecs,
78 = do { showPass dflags "Desugar"
80 -- Desugar the program
81 ; ((all_prs, ds_rules, ds_fords), warns)
82 <- initDs hsc_env mod rdr_env type_env $ do
83 { core_prs <- dsHsBinds auto_scc binds []
84 ; (ds_fords, foreign_prs) <- dsForeigns fords
85 ; let all_prs = foreign_prs ++ core_prs
86 local_bndrs = mkVarSet (map fst all_prs)
87 ; ds_rules <- mappM (dsRule mod local_bndrs) rules
88 ; return (all_prs, ds_rules, ds_fords) }
92 -- If warnings are considered errors, leave.
93 ; if errorsFound dflags (warns, emptyBag)
94 then return (warns, Nothing)
97 { -- Add export flags to bindings
98 keep_alive <- readIORef keep_var
99 ; let final_prs = addExportFlags ghci_mode exports keep_alive
101 ds_binds = [Rec final_prs]
102 -- Notice that we put the whole lot in a big Rec, even the foreign binds
103 -- When compiling PrelFloat, which defines data Float = F# Float#
104 -- we want F# to be in scope in the foreign marshalling code!
105 -- You might think it doesn't matter, but the simplifier brings all top-level
106 -- things into the in-scope set before simplifying; so we get no unfolding for F#!
108 -- Lint result if necessary
109 ; endPass dflags "Desugar" Opt_D_dump_ds ds_binds
112 ; doIfSet (dopt Opt_D_dump_ds dflags)
113 (printDump (ppr_ds_rules ds_rules))
115 ; dfun_uses <- readIORef dfun_uses_var -- What dfuns are used
116 ; th_used <- readIORef th_var -- Whether TH is used
117 ; let used_names = allUses dus `unionNameSets` dfun_uses
118 thPackage = thPackageId (pkgState dflags)
119 pkgs | ExtPackage th_id <- thPackage, th_used
120 = insertList th_id (imp_dep_pkgs imports)
122 = imp_dep_pkgs imports
124 dep_mods = moduleEnvElts (delModuleEnv (imp_dep_mods imports) mod)
125 -- M.hi-boot can be in the imp_dep_mods, but we must remove
126 -- it before recording the modules on which this one depends!
127 -- (We want to retain M.hi-boot in imp_dep_mods so that
128 -- loadHiBootInterface can see if M's direct imports depend
129 -- on M.hi-boot, and hence that we should do the hi-boot consistency
132 dir_imp_mods = imp_mods imports
134 ; usages <- mkUsageInfo hsc_env dir_imp_mods dep_mods used_names
137 -- Modules don't compare lexicographically usually,
138 -- but we want them to do so here.
139 le_mod :: Module -> Module -> Bool
140 le_mod m1 m2 = moduleFS m1 <= moduleFS m2
141 le_dep_mod :: (Module, IsBootInterface) -> (Module, IsBootInterface) -> Bool
142 le_dep_mod (m1,_) (m2,_) = m1 `le_mod` m2
144 deps = Deps { dep_mods = sortLe le_dep_mod dep_mods,
145 dep_pkgs = sortLe (<=) pkgs,
146 dep_orphs = sortLe le_mod (imp_orphs imports) }
147 -- sort to get into canonical order
151 mg_boot = isHsBoot hsc_src,
152 mg_exports = exports,
155 mg_dir_imps = [m | (m,_,_) <- moduleEnvElts dir_imp_mods],
156 mg_rdr_env = rdr_env,
157 mg_fix_env = fix_env,
158 mg_deprecs = deprecs,
163 mg_foreign = ds_fords }
165 ; return (warns, Just mod_guts)
169 dflags = hsc_dflags hsc_env
170 ghci_mode = hsc_mode hsc_env
171 auto_scc | opt_SccProfilingOn = TopLevel
174 deSugarExpr :: HscEnv
175 -> Module -> GlobalRdrEnv -> TypeEnv
178 deSugarExpr hsc_env this_mod rdr_env type_env tc_expr
179 = do { showPass dflags "Desugar"
180 ; us <- mkSplitUniqSupply 'd'
183 ; (core_expr, ds_warns) <- initDs hsc_env this_mod rdr_env type_env $
186 -- Display any warnings
187 -- Note: if -Werror is used, we don't signal an error here.
188 ; doIfSet (not (isEmptyBag ds_warns))
189 (printErrs (pprBagOfWarnings ds_warns))
192 ; dumpIfSet_dyn dflags Opt_D_dump_ds "Desugared" (pprCoreExpr core_expr)
197 dflags = hsc_dflags hsc_env
201 -- Set the no-discard flag if either
202 -- a) the Id is exported
203 -- b) it's mentioned in the RHS of an orphan rule
204 -- c) it's in the keep-alive set
206 -- It means that the binding won't be discarded EVEN if the binding
207 -- ends up being trivial (v = w) -- the simplifier would usually just
208 -- substitute w for v throughout, but we don't apply the substitution to
209 -- the rules (maybe we should?), so this substitution would make the rule
212 -- You might wonder why exported Ids aren't already marked as such;
213 -- it's just because the type checker is rather busy already and
214 -- I didn't want to pass in yet another mapping.
216 addExportFlags ghci_mode exports keep_alive prs rules
217 = [(add_export bndr, rhs) | (bndr,rhs) <- prs]
220 | dont_discard bndr = setIdExported bndr
223 orph_rhs_fvs = unionVarSets [ ruleRhsFreeVars rule
224 | IdCoreRule _ is_orphan_rule rule <- rules,
226 -- An orphan rule keeps alive the free vars of its right-hand side.
227 -- Non-orphan rules are (later, after gentle simplification)
228 -- attached to the Id and that keeps the rhs free vars alive
230 dont_discard bndr = is_exported name
231 || name `elemNameSet` keep_alive
232 || bndr `elemVarSet` orph_rhs_fvs
236 -- In interactive mode, we don't want to discard any top-level
237 -- entities at all (eg. do not inline them away during
238 -- simplification), and retain them all in the TypeEnv so they are
239 -- available from the command line.
241 -- isExternalName separates the user-defined top-level names from those
242 -- introduced by the type checker.
243 is_exported :: Name -> Bool
244 is_exported | ghci_mode == Interactive = isExternalName
245 | otherwise = (`elemNameSet` exports)
247 ppr_ds_rules [] = empty
249 = text "" $$ text "-------------- DESUGARED RULES -----------------" $$
255 %************************************************************************
257 %* Desugaring transformation rules
259 %************************************************************************
262 dsRule :: Module -> IdSet -> LRuleDecl Id -> DsM IdCoreRule
263 dsRule mod in_scope (L loc (HsRule name act vars lhs rhs))
265 ds_lhs all_vars lhs `thenDs` \ (fn, args) ->
266 dsLExpr rhs `thenDs` \ core_rhs ->
267 returnDs (IdCoreRule fn (is_orphan fn) (Rule name act tpl_vars args core_rhs))
269 tpl_vars = [var | RuleBndr (L _ var) <- vars]
270 all_vars = mkInScopeSet (extendVarSetList in_scope tpl_vars)
271 is_orphan id = not (idIsFrom mod id)
272 -- NB we can't use isLocalId in the orphan test,
273 -- because isLocalId isn't true of class methods
279 (HsLet [HsBindGroup dict_binds _ _] body) -> (dict_binds, body)
280 other -> (emptyBag, lhs)
282 mappM ds_dict_bind (bagToList dict_binds) `thenDs` \ dict_binds' ->
283 dsLExpr body `thenDs` \ body' ->
285 -- Substitute the dict bindings eagerly,
286 -- and take the body apart into a (f args) form
288 subst = mkSubst all_vars emptyVarEnv (mkVarEnv id_pairs)
289 id_pairs = [(id, substExpr subst rhs) | (id,rhs) <- dict_binds']
290 -- Note recursion here... substitution won't terminate
291 -- if there is genuine recursion... which there isn't
293 body'' = substExpr subst body'
296 -- Now unpack the resulting body
298 pair = case collectArgs body'' of
299 (Var fn, args) -> (fn, args)
300 other -> pprPanic "dsRule" (ppr lhs)
304 ds_dict_bind (L _ (VarBind id rhs)) =
305 dsLExpr rhs `thenDs` \ rhs' ->