2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 \section{Tidying up Core}
7 module TidyPgm( mkBootModDetails, tidyProgram ) where
9 #include "HsVersions.h"
11 import DynFlags ( DynFlag(..), DynFlags(..), dopt )
13 import CoreUnfold ( noUnfolding, mkTopUnfolding )
14 import CoreFVs ( ruleLhsFreeIds, exprSomeFreeVars )
15 import CoreTidy ( tidyExpr, tidyVarOcc, tidyRules )
16 import PprCore ( pprRules )
17 import CoreLint ( showPass, endPass )
18 import CoreUtils ( exprArity, rhsIsStatic )
21 import Var ( Id, Var )
22 import Id ( idType, idInfo, idName, idCoreRules, isGlobalId,
23 isExportedId, mkVanillaGlobal, isLocalId, isNaughtyRecordSelector,
24 idArity, idCafInfo, idUnfolding, isImplicitId, setIdInfo,
27 import IdInfo {- loads of stuff -}
28 import InstEnv ( Instance, DFunId, instanceDFunId, setInstanceDFunId )
29 import NewDemand ( isBottomingSig, topSig )
30 import BasicTypes ( Arity, isNeverActive, isNonRuleLoopBreaker )
32 import NameSet ( NameSet, elemNameSet )
33 import IfaceEnv ( allocateGlobalBinder )
34 import NameEnv ( filterNameEnv, mapNameEnv )
35 import OccName ( TidyOccEnv, initTidyOccEnv, tidyOccName )
36 import Type ( tidyTopType )
37 import TcType ( isFFITy )
38 import DataCon ( dataConName, dataConFieldLabels, dataConWrapId_maybe )
39 import TyCon ( TyCon, makeTyConAbstract, tyConDataCons, isNewTyCon,
40 newTyConRep, tyConSelIds, isAlgTyCon,
41 isEnumerationTyCon, isOpenTyCon )
42 import Class ( classSelIds )
43 import Module ( Module )
45 import Maybes ( orElse, mapCatMaybes )
46 import ErrUtils ( showPass, dumpIfSet_core )
47 import PackageConfig ( PackageId )
48 import UniqSupply ( splitUniqSupply, uniqFromSupply )
50 import FastTypes hiding ( fastOr )
52 import Data.List ( partition )
53 import Data.Maybe ( isJust )
54 import Data.IORef ( IORef, readIORef, writeIORef )
58 Constructing the TypeEnv, Instances, Rules from which the ModIface is
59 constructed, and which goes on to subsequent modules in --make mode.
61 Most of the interface file is obtained simply by serialising the
62 TypeEnv. One important consequence is that if the *interface file*
63 has pragma info if and only if the final TypeEnv does. This is not so
64 important for *this* module, but it's essential for ghc --make:
65 subsequent compilations must not see (e.g.) the arity if the interface
66 file does not contain arity If they do, they'll exploit the arity;
67 then the arity might change, but the iface file doesn't change =>
68 recompilation does not happen => disaster.
70 For data types, the final TypeEnv will have a TyThing for the TyCon,
71 plus one for each DataCon; the interface file will contain just one
72 data type declaration, but it is de-serialised back into a collection
75 %************************************************************************
79 %************************************************************************
82 Plan A: mkBootModDetails: omit pragmas, make interfaces small
83 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
86 * Drop all WiredIn things from the TypeEnv
87 (we never want them in interface files)
89 * Retain all TyCons and Classes in the TypeEnv, to avoid
90 having to find which ones are mentioned in the
93 * Trim off the constructors of non-exported TyCons, both
94 from the TyCon and from the TypeEnv
96 * Drop non-exported Ids from the TypeEnv
98 * Tidy the types of the DFunIds of Instances,
99 make them into GlobalIds, (they already have External Names)
100 and add them to the TypeEnv
102 * Tidy the types of the (exported) Ids in the TypeEnv,
103 make them into GlobalIds (they already have External Names)
105 * Drop rules altogether
107 * Tidy the bindings, to ensure that the Caf and Arity
108 information is correct for each top-level binder; the
109 code generator needs it. And to ensure that local names have
110 distinct OccNames in case of object-file splitting
113 mkBootModDetails :: HscEnv -> ModGuts -> IO ModDetails
114 -- This is Plan A: make a small type env when typechecking only,
115 -- or when compiling a hs-boot file, or simply when not using -O
117 -- We don't look at the bindings at all -- there aren't any
120 mkBootModDetails hsc_env (ModGuts { mg_module = mod
121 , mg_exports = exports
122 , mg_types = type_env
124 , mg_fam_insts = fam_insts
125 , mg_modBreaks = modBreaks
127 = do { let dflags = hsc_dflags hsc_env
128 ; showPass dflags "Tidy [hoot] type env"
130 ; let { insts' = tidyInstances tidyExternalId insts
131 ; type_env1 = filterNameEnv (not . isWiredInThing) type_env
132 ; type_env2 = mapNameEnv tidyBootThing type_env1
133 ; type_env' = extendTypeEnvWithIds type_env2
134 (map instanceDFunId insts')
136 ; return (ModDetails { md_types = type_env'
138 , md_fam_insts = fam_insts
140 , md_exports = exports
141 , md_modBreaks = modBreaks
142 , md_vect_info = noVectInfo
147 isWiredInThing :: TyThing -> Bool
148 isWiredInThing thing = isWiredInName (getName thing)
150 tidyBootThing :: TyThing -> TyThing
151 -- Just externalise the Ids; keep everything
152 tidyBootThing (AnId id) | isLocalId id = AnId (tidyExternalId id)
153 tidyBootThing thing = thing
155 tidyExternalId :: Id -> Id
156 -- Takes an LocalId with an External Name,
157 -- makes it into a GlobalId with VanillaIdInfo, and tidies its type
158 -- (NB: vanillaIdInfo makes a conservative assumption about Caf-hood.)
160 = ASSERT2( isLocalId id && isExternalName (idName id), ppr id )
161 mkVanillaGlobal (idName id) (tidyTopType (idType id)) vanillaIdInfo
165 %************************************************************************
167 Plan B: tidy bindings, make TypeEnv full of IdInfo
169 %************************************************************************
171 Plan B: include pragmas, make interfaces
172 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
173 * Figure out which Ids are externally visible
175 * Tidy the bindings, externalising appropriate Ids
177 * Drop all Ids from the TypeEnv, and add all the External Ids from
178 the bindings. (This adds their IdInfo to the TypeEnv; and adds
179 floated-out Ids that weren't even in the TypeEnv before.)
181 Step 1: Figure out external Ids
182 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
183 First we figure out which Ids are "external" Ids. An
184 "external" Id is one that is visible from outside the compilation
186 a) the user exported ones
187 b) ones mentioned in the unfoldings, workers,
188 or rules of externally-visible ones
189 This exercise takes a sweep of the bindings bottom to top. Actually,
190 in Step 2 we're also going to need to know which Ids should be
191 exported with their unfoldings, so we produce not an IdSet but an
195 Step 2: Tidy the program
196 ~~~~~~~~~~~~~~~~~~~~~~~~
197 Next we traverse the bindings top to bottom. For each *top-level*
200 1. Make it into a GlobalId; its IdDetails becomes VanillaGlobal,
201 reflecting the fact that from now on we regard it as a global,
204 2. Give it a system-wide Unique.
205 [Even non-exported things need system-wide Uniques because the
206 byte-code generator builds a single Name->BCO symbol table.]
208 We use the NameCache kept in the HscEnv as the
209 source of such system-wide uniques.
211 For external Ids, use the original-name cache in the NameCache
212 to ensure that the unique assigned is the same as the Id had
213 in any previous compilation run.
215 3. If it's an external Id, make it have a External Name, otherwise
216 make it have an Internal Name.
217 This is used by the code generator to decide whether
218 to make the label externally visible
220 4. Give external Ids a "tidy" OccName. This means
221 we can print them in interface files without confusing
222 "x" (unique 5) with "x" (unique 10).
224 5. Give it its UTTERLY FINAL IdInfo; in ptic,
225 * its unfolding, if it should have one
227 * its arity, computed from the number of visible lambdas
229 * its CAF info, computed from what is free in its RHS
232 Finally, substitute these new top-level binders consistently
233 throughout, including in unfoldings. We also tidy binders in
234 RHSs, so that they print nicely in interfaces.
237 tidyProgram :: HscEnv -> ModGuts -> IO (CgGuts, ModDetails)
239 mod_impl@(ModGuts { mg_module = mod, mg_exports = exports,
241 mg_insts = insts, mg_fam_insts = fam_insts,
243 mg_rules = imp_rules,
244 mg_vect_info = vect_info,
245 mg_dir_imps = dir_imps, mg_deps = deps,
246 mg_foreign = foreign_stubs,
247 mg_hpc_info = hpc_info,
248 mg_modBreaks = modBreaks })
250 = do { let dflags = hsc_dflags hsc_env
251 ; showPass dflags "Tidy Core"
253 ; let { omit_prags = dopt Opt_OmitInterfacePragmas dflags
254 ; ext_ids = findExternalIds omit_prags binds
257 | otherwise = findExternalRules binds imp_rules ext_ids
258 -- findExternalRules filters imp_rules to avoid binders that
259 -- aren't externally visible; but the externally-visible binders
260 -- are computed (by findExternalIds) assuming that all orphan
261 -- rules are exported (they get their Exported flag set in the desugarer)
262 -- So in fact we may export more than we need.
263 -- (It's a sort of mutual recursion.)
266 ; (tidy_env, tidy_binds) <- tidyTopBinds hsc_env mod type_env ext_ids
269 ; let { export_set = availsToNameSet exports
270 ; tidy_type_env = tidyTypeEnv omit_prags export_set type_env
272 ; tidy_insts = tidyInstances (lookup_dfun tidy_type_env) insts
273 -- A DFunId will have a binding in tidy_binds, and so
274 -- will now be in final_env, replete with IdInfo
275 -- Its name will be unchanged since it was born, but
276 -- we want Global, IdInfo-rich (or not) DFunId in the
279 ; tidy_rules = tidyRules tidy_env ext_rules
280 -- You might worry that the tidy_env contains IdInfo-rich stuff
281 -- and indeed it does, but if omit_prags is on, ext_rules is
284 ; implicit_binds = getImplicitBinds type_env
285 ; all_tidy_binds = implicit_binds ++ tidy_binds
286 ; alg_tycons = filter isAlgTyCon (typeEnvTyCons type_env)
289 ; endPass dflags "Tidy Core" Opt_D_dump_simpl all_tidy_binds
290 ; dumpIfSet_core dflags Opt_D_dump_simpl
292 (pprRules tidy_rules)
294 ; return (CgGuts { cg_module = mod,
295 cg_tycons = alg_tycons,
296 cg_binds = all_tidy_binds,
297 cg_dir_imps = dir_imps,
298 cg_foreign = foreign_stubs,
299 cg_dep_pkgs = dep_pkgs deps,
300 cg_hpc_info = hpc_info },
302 ModDetails { md_types = tidy_type_env,
303 md_rules = tidy_rules,
304 md_insts = tidy_insts,
305 md_fam_insts = fam_insts,
306 md_exports = exports,
307 md_modBreaks = modBreaks,
308 md_vect_info = vect_info -- is already tidy
312 lookup_dfun type_env dfun_id
313 = case lookupTypeEnv type_env (idName dfun_id) of
314 Just (AnId dfun_id') -> dfun_id'
315 other -> pprPanic "lookup_dfun" (ppr dfun_id)
317 tidyTypeEnv :: Bool -> NameSet -> TypeEnv -> [CoreBind] -> TypeEnv
319 -- The competed type environment is gotten from
320 -- Dropping any wired-in things, and then
321 -- a) keeping the types and classes
322 -- b) removing all Ids,
323 -- c) adding Ids with correct IdInfo, including unfoldings,
324 -- gotten from the bindings
325 -- From (c) we keep only those Ids with External names;
326 -- the CoreTidy pass makes sure these are all and only
327 -- the externally-accessible ones
328 -- This truncates the type environment to include only the
329 -- exported Ids and things needed from them, which saves space
331 tidyTypeEnv omit_prags exports type_env tidy_binds
332 = let type_env1 = filterNameEnv keep_it type_env
333 type_env2 = extendTypeEnvWithIds type_env1 final_ids
334 type_env3 | omit_prags = mapNameEnv trim_thing type_env2
335 | otherwise = type_env2
339 final_ids = [ id | id <- bindersOfBinds tidy_binds,
340 isExternalName (idName id)]
342 -- We keep GlobalIds, because they won't appear
343 -- in the bindings from which final_ids are derived!
344 -- (The bindings bind LocalIds.)
345 keep_it thing | isWiredInThing thing = False
346 keep_it (AnId id) = isGlobalId id -- Keep GlobalIds (e.g. class ops)
347 keep_it other = True -- Keep all TyCons, DataCons, and Classes
351 ATyCon tc | mustExposeTyCon exports tc -> thing
352 | otherwise -> ATyCon (makeTyConAbstract tc)
354 AnId id | isImplicitId id -> thing
355 | otherwise -> AnId (id `setIdInfo` vanillaIdInfo)
359 mustExposeTyCon :: NameSet -- Exports
360 -> TyCon -- The tycon
361 -> Bool -- Can its rep be hidden?
362 -- We are compiling without -O, and thus trying to write as little as
363 -- possible into the interface file. But we must expose the details of
364 -- any data types whose constructors or fields are exported
365 mustExposeTyCon exports tc
366 | not (isAlgTyCon tc) -- Synonyms
368 | isEnumerationTyCon tc -- For an enumeration, exposing the constructors
369 = True -- won't lead to the need for further exposure
370 -- (This includes data types with no constructors.)
371 | isOpenTyCon tc -- open type family
373 | otherwise -- Newtype, datatype
374 = any exported_con (tyConDataCons tc)
375 -- Expose rep if any datacon or field is exported
377 || (isNewTyCon tc && isFFITy (snd (newTyConRep tc)))
378 -- Expose the rep for newtypes if the rep is an FFI type.
379 -- For a very annoying reason. 'Foreign import' is meant to
380 -- be able to look through newtypes transparently, but it
381 -- can only do that if it can "see" the newtype representation
383 exported_con con = any (`elemNameSet` exports)
384 (dataConName con : dataConFieldLabels con)
386 tidyInstances :: (DFunId -> DFunId) -> [Instance] -> [Instance]
387 tidyInstances tidy_dfun ispecs
390 tidy ispec = setInstanceDFunId ispec $
391 tidy_dfun (instanceDFunId ispec)
393 getImplicitBinds :: TypeEnv -> [CoreBind]
394 getImplicitBinds type_env
395 = map get_defn (concatMap implicit_con_ids (typeEnvTyCons type_env)
396 ++ concatMap other_implicit_ids (typeEnvElts type_env))
397 -- Put the constructor wrappers first, because
398 -- other implicit bindings (notably the fromT functions arising
399 -- from generics) use the constructor wrappers. At least that's
400 -- what External Core likes
402 implicit_con_ids tc = mapCatMaybes dataConWrapId_maybe (tyConDataCons tc)
404 other_implicit_ids (ATyCon tc) = filter (not . isNaughtyRecordSelector) (tyConSelIds tc)
405 -- The "naughty" ones are not real functions at all
406 -- They are there just so we can get decent error messages
407 -- See Note [Naughty record selectors] in MkId.lhs
408 other_implicit_ids (AClass cl) = classSelIds cl
409 other_implicit_ids other = []
411 get_defn :: Id -> CoreBind
412 get_defn id = NonRec id (tidyExpr emptyTidyEnv rhs)
414 rhs = unfoldingTemplate (idUnfolding id)
415 -- Don't forget to tidy the body ! Otherwise you get silly things like
416 -- \ tpl -> case tpl of tpl -> (tpl,tpl) -> tpl
420 %************************************************************************
422 \subsection{Step 1: finding externals}
424 %************************************************************************
427 findExternalIds :: Bool
429 -> IdEnv Bool -- In domain => external
430 -- Range = True <=> show unfolding
431 -- Step 1 from the notes above
432 findExternalIds omit_prags binds
434 = mkVarEnv [ (id,False) | id <- bindersOfBinds binds, isExportedId id ]
437 = foldr find emptyVarEnv binds
439 find (NonRec id rhs) needed
440 | need_id needed id = addExternal (id,rhs) needed
442 find (Rec prs) needed = find_prs prs needed
444 -- For a recursive group we have to look for a fixed point
446 | null needed_prs = needed
447 | otherwise = find_prs other_prs new_needed
449 (needed_prs, other_prs) = partition (need_pr needed) prs
450 new_needed = foldr addExternal needed needed_prs
452 -- The 'needed' set contains the Ids that are needed by earlier
453 -- interface file emissions. If the Id isn't in this set, and isn't
454 -- exported, there's no need to emit anything
455 need_id needed_set id = id `elemVarEnv` needed_set || isExportedId id
456 need_pr needed_set (id,rhs) = need_id needed_set id
458 addExternal :: (Id,CoreExpr) -> IdEnv Bool -> IdEnv Bool
459 -- The Id is needed; extend the needed set
460 -- with it and its dependents (free vars etc)
461 addExternal (id,rhs) needed
462 = extendVarEnv (foldVarSet add_occ needed new_needed_ids)
465 add_occ id needed | id `elemVarEnv` needed = needed
466 | otherwise = extendVarEnv needed id False
467 -- "False" because we don't know we need the Id's unfolding
468 -- Don't override existing bindings; we might have already set it to True
470 new_needed_ids = worker_ids `unionVarSet`
471 unfold_ids `unionVarSet`
475 dont_inline = isNeverActive (inlinePragInfo idinfo)
476 loop_breaker = isNonRuleLoopBreaker (occInfo idinfo)
477 bottoming_fn = isBottomingSig (newStrictnessInfo idinfo `orElse` topSig)
478 spec_ids = specInfoFreeVars (specInfo idinfo)
479 worker_info = workerInfo idinfo
481 -- Stuff to do with the Id's unfolding
482 -- The simplifier has put an up-to-date unfolding
483 -- in the IdInfo, but the RHS will do just as well
484 unfolding = unfoldingInfo idinfo
485 rhs_is_small = not (neverUnfold unfolding)
487 -- We leave the unfolding there even if there is a worker
488 -- In GHCI the unfolding is used by importers
489 -- When writing an interface file, we omit the unfolding
490 -- if there is a worker
491 show_unfold = not bottoming_fn && -- Not necessary
494 rhs_is_small -- Small enough
496 unfold_ids | show_unfold = exprSomeFreeVars isLocalId rhs
497 | otherwise = emptyVarSet
499 worker_ids = case worker_info of
500 HasWorker work_id _ -> unitVarSet work_id
501 otherwise -> emptyVarSet
506 findExternalRules :: [CoreBind]
507 -> [CoreRule] -- Non-local rules (i.e. ones for imported fns)
508 -> IdEnv a -- Ids that are exported, so we need their rules
510 -- The complete rules are gotten by combining
511 -- a) the non-local rules
512 -- b) rules embedded in the top-level Ids
513 findExternalRules binds non_local_rules ext_ids
514 = filter (not . internal_rule) (non_local_rules ++ local_rules)
517 | id <- bindersOfBinds binds,
518 id `elemVarEnv` ext_ids,
519 rule <- idCoreRules id
523 = any internal_id (varSetElems (ruleLhsFreeIds rule))
524 -- Don't export a rule whose LHS mentions a locally-defined
525 -- Id that is completely internal (i.e. not visible to an
528 internal_id id = not (id `elemVarEnv` ext_ids)
533 %************************************************************************
535 \subsection{Step 2: top-level tidying}
537 %************************************************************************
541 -- TopTidyEnv: when tidying we need to know
542 -- * nc_var: The NameCache, containing a unique supply and any pre-ordained Names.
543 -- These may have arisen because the
544 -- renamer read in an interface file mentioning M.$wf, say,
545 -- and assigned it unique r77. If, on this compilation, we've
546 -- invented an Id whose name is $wf (but with a different unique)
547 -- we want to rename it to have unique r77, so that we can do easy
548 -- comparisons with stuff from the interface file
550 -- * occ_env: The TidyOccEnv, which tells us which local occurrences
553 -- * subst_env: A Var->Var mapping that substitutes the new Var for the old
555 tidyTopBinds :: HscEnv
558 -> IdEnv Bool -- Domain = Ids that should be external
559 -- True <=> their unfolding is external too
561 -> IO (TidyEnv, [CoreBind])
563 tidyTopBinds hsc_env mod type_env ext_ids binds
564 = tidy init_env binds
566 nc_var = hsc_NC hsc_env
568 -- We also make sure to avoid any exported binders. Consider
569 -- f{-u1-} = 1 -- Local decl
571 -- f{-u2-} = 2 -- Exported decl
573 -- The second exported decl must 'get' the name 'f', so we
574 -- have to put 'f' in the avoids list before we get to the first
575 -- decl. tidyTopId then does a no-op on exported binders.
576 init_env = (initTidyOccEnv avoids, emptyVarEnv)
577 avoids = [getOccName name | bndr <- typeEnvIds type_env,
578 let name = idName bndr,
580 -- In computing our "avoids" list, we must include
582 -- all things with global names (assigned once and for
583 -- all by the renamer)
584 -- since their names are "taken".
585 -- The type environment is a convenient source of such things.
587 this_pkg = thisPackage (hsc_dflags hsc_env)
589 tidy env [] = return (env, [])
590 tidy env (b:bs) = do { (env1, b') <- tidyTopBind this_pkg mod nc_var ext_ids env b
591 ; (env2, bs') <- tidy env1 bs
592 ; return (env2, b':bs') }
594 ------------------------
595 tidyTopBind :: PackageId
597 -> IORef NameCache -- For allocating new unique names
598 -> IdEnv Bool -- Domain = Ids that should be external
599 -- True <=> their unfolding is external too
600 -> TidyEnv -> CoreBind
601 -> IO (TidyEnv, CoreBind)
603 tidyTopBind this_pkg mod nc_var ext_ids tidy_env1@(occ_env1,subst1) (NonRec bndr rhs)
604 = do { (occ_env2, name') <- tidyTopName mod nc_var ext_ids occ_env1 bndr
605 ; let { (bndr', rhs') = tidyTopPair ext_ids tidy_env2 caf_info name' (bndr, rhs)
606 ; subst2 = extendVarEnv subst1 bndr bndr'
607 ; tidy_env2 = (occ_env2, subst2) }
608 ; return (tidy_env2, NonRec bndr' rhs') }
610 caf_info = hasCafRefs this_pkg subst1 (idArity bndr) rhs
612 tidyTopBind this_pkg mod nc_var ext_ids tidy_env1@(occ_env1,subst1) (Rec prs)
613 = do { (occ_env2, names') <- tidyTopNames mod nc_var ext_ids occ_env1 bndrs
614 ; let { prs' = zipWith (tidyTopPair ext_ids tidy_env2 caf_info)
616 ; subst2 = extendVarEnvList subst1 (bndrs `zip` map fst prs')
617 ; tidy_env2 = (occ_env2, subst2) }
618 ; return (tidy_env2, Rec prs') }
622 -- the CafInfo for a recursive group says whether *any* rhs in
623 -- the group may refer indirectly to a CAF (because then, they all do).
625 | or [ mayHaveCafRefs (hasCafRefs this_pkg subst1 (idArity bndr) rhs)
626 | (bndr,rhs) <- prs ] = MayHaveCafRefs
627 | otherwise = NoCafRefs
629 --------------------------------------------------------------------
631 -- This is where we set names to local/global based on whether they really are
632 -- externally visible (see comment at the top of this module). If the name
633 -- was previously local, we have to give it a unique occurrence name if
634 -- we intend to externalise it.
635 tidyTopNames mod nc_var ext_ids occ_env [] = return (occ_env, [])
636 tidyTopNames mod nc_var ext_ids occ_env (id:ids)
637 = do { (occ_env1, name) <- tidyTopName mod nc_var ext_ids occ_env id
638 ; (occ_env2, names) <- tidyTopNames mod nc_var ext_ids occ_env1 ids
639 ; return (occ_env2, name:names) }
641 tidyTopName :: Module -> IORef NameCache -> VarEnv Bool -> TidyOccEnv
642 -> Id -> IO (TidyOccEnv, Name)
643 tidyTopName mod nc_var ext_ids occ_env id
644 | global && internal = return (occ_env, localiseName name)
646 | global && external = return (occ_env, name)
647 -- Global names are assumed to have been allocated by the renamer,
648 -- so they already have the "right" unique
649 -- And it's a system-wide unique too
651 -- Now we get to the real reason that all this is in the IO Monad:
652 -- we have to update the name cache in a nice atomic fashion
654 | local && internal = do { nc <- readIORef nc_var
655 ; let (nc', new_local_name) = mk_new_local nc
656 ; writeIORef nc_var nc'
657 ; return (occ_env', new_local_name) }
658 -- Even local, internal names must get a unique occurrence, because
659 -- if we do -split-objs we externalise the name later, in the code generator
661 -- Similarly, we must make sure it has a system-wide Unique, because
662 -- the byte-code generator builds a system-wide Name->BCO symbol table
664 | local && external = do { nc <- readIORef nc_var
665 ; let (nc', new_external_name) = mk_new_external nc
666 ; writeIORef nc_var nc'
667 ; return (occ_env', new_external_name) }
670 external = id `elemVarEnv` ext_ids
671 global = isExternalName name
673 internal = not external
674 loc = nameSrcSpan name
676 (occ_env', occ') = tidyOccName occ_env (nameOccName name)
678 mk_new_local nc = (nc { nsUniqs = us2 }, mkInternalName uniq occ' loc)
680 (us1, us2) = splitUniqSupply (nsUniqs nc)
681 uniq = uniqFromSupply us1
683 mk_new_external nc = allocateGlobalBinder nc mod occ' loc
684 -- If we want to externalise a currently-local name, check
685 -- whether we have already assigned a unique for it.
686 -- If so, use it; if not, extend the table.
687 -- All this is done by allcoateGlobalBinder.
688 -- This is needed when *re*-compiling a module in GHCi; we must
689 -- use the same name for externally-visible things as we did before.
692 -----------------------------------------------------------
693 tidyTopPair :: VarEnv Bool
694 -> TidyEnv -- The TidyEnv is used to tidy the IdInfo
695 -- It is knot-tied: don't look at it!
698 -> (Id, CoreExpr) -- Binder and RHS before tidying
700 -- This function is the heart of Step 2
701 -- The rec_tidy_env is the one to use for the IdInfo
702 -- It's necessary because when we are dealing with a recursive
703 -- group, a variable late in the group might be mentioned
704 -- in the IdInfo of one early in the group
706 tidyTopPair ext_ids rhs_tidy_env caf_info name' (bndr, rhs)
707 | isGlobalId bndr -- Injected binding for record selector, etc
708 = (bndr, tidyExpr rhs_tidy_env rhs)
712 bndr' = mkVanillaGlobal name' ty' idinfo'
713 ty' = tidyTopType (idType bndr)
714 rhs' = tidyExpr rhs_tidy_env rhs
715 idinfo' = tidyTopIdInfo rhs_tidy_env (isJust maybe_external)
716 (idInfo bndr) unfold_info arity
719 -- Expose an unfolding if ext_ids tells us to
720 -- Remember that ext_ids maps an Id to a Bool:
721 -- True to show the unfolding, False to hide it
722 maybe_external = lookupVarEnv ext_ids bndr
723 show_unfold = maybe_external `orElse` False
724 unfold_info | show_unfold = mkTopUnfolding rhs'
725 | otherwise = noUnfolding
727 -- Usually the Id will have an accurate arity on it, because
728 -- the simplifier has just run, but not always.
729 -- One case I found was when the last thing the simplifier
730 -- did was to let-bind a non-atomic argument and then float
731 -- it to the top level. So it seems more robust just to
733 arity = exprArity rhs
736 -- tidyTopIdInfo creates the final IdInfo for top-level
737 -- binders. There are two delicate pieces:
739 -- * Arity. After CoreTidy, this arity must not change any more.
740 -- Indeed, CorePrep must eta expand where necessary to make
741 -- the manifest arity equal to the claimed arity.
743 -- * CAF info. This must also remain valid through to code generation.
744 -- We add the info here so that it propagates to all
745 -- occurrences of the binders in RHSs, and hence to occurrences in
746 -- unfoldings, which are inside Ids imported by GHCi. Ditto RULES.
747 -- CoreToStg makes use of this when constructing SRTs.
749 tidyTopIdInfo tidy_env is_external idinfo unfold_info arity caf_info
750 | not is_external -- For internal Ids (not externally visible)
751 = vanillaIdInfo -- we only need enough info for code generation
752 -- Arity and strictness info are enough;
753 -- c.f. CoreTidy.tidyLetBndr
754 `setCafInfo` caf_info
756 `setAllStrictnessInfo` newStrictnessInfo idinfo
758 | otherwise -- Externally-visible Ids get the whole lot
760 `setCafInfo` caf_info
762 `setAllStrictnessInfo` newStrictnessInfo idinfo
763 `setInlinePragInfo` inlinePragInfo idinfo
764 `setUnfoldingInfo` unfold_info
765 `setWorkerInfo` tidyWorker tidy_env (workerInfo idinfo)
766 -- NB: we throw away the Rules
767 -- They have already been extracted by findExternalRules
771 ------------ Worker --------------
772 tidyWorker tidy_env (HasWorker work_id wrap_arity)
773 = HasWorker (tidyVarOcc tidy_env work_id) wrap_arity
774 tidyWorker tidy_env other
778 %************************************************************************
780 \subsection{Figuring out CafInfo for an expression}
782 %************************************************************************
784 hasCafRefs decides whether a top-level closure can point into the dynamic heap.
785 We mark such things as `MayHaveCafRefs' because this information is
786 used to decide whether a particular closure needs to be referenced
789 There are two reasons for setting MayHaveCafRefs:
790 a) The RHS is a CAF: a top-level updatable thunk.
791 b) The RHS refers to something that MayHaveCafRefs
793 Possible improvement: In an effort to keep the number of CAFs (and
794 hence the size of the SRTs) down, we could also look at the expression and
795 decide whether it requires a small bounded amount of heap, so we can ignore
796 it as a CAF. In these cases however, we would need to use an additional
797 CAF list to keep track of non-collectable CAFs.
800 hasCafRefs :: PackageId -> VarEnv Var -> Arity -> CoreExpr -> CafInfo
801 hasCafRefs this_pkg p arity expr
802 | is_caf || mentions_cafs
804 | otherwise = NoCafRefs
806 mentions_cafs = isFastTrue (cafRefs p expr)
807 is_caf = not (arity > 0 || rhsIsStatic this_pkg expr)
809 -- NB. we pass in the arity of the expression, which is expected
810 -- to be calculated by exprArity. This is because exprArity
811 -- knows how much eta expansion is going to be done by
812 -- CorePrep later on, and we don't want to duplicate that
813 -- knowledge in rhsIsStatic below.
816 -- imported Ids first:
817 | not (isLocalId id) = fastBool (mayHaveCafRefs (idCafInfo id))
818 -- now Ids local to this module:
820 case lookupVarEnv p id of
821 Just id' -> fastBool (mayHaveCafRefs (idCafInfo id'))
822 Nothing -> fastBool False
824 cafRefs p (Lit l) = fastBool False
825 cafRefs p (App f a) = fastOr (cafRefs p f) (cafRefs p) a
826 cafRefs p (Lam x e) = cafRefs p e
827 cafRefs p (Let b e) = fastOr (cafRefss p (rhssOfBind b)) (cafRefs p) e
828 cafRefs p (Case e bndr _ alts) = fastOr (cafRefs p e) (cafRefss p) (rhssOfAlts alts)
829 cafRefs p (Note n e) = cafRefs p e
830 cafRefs p (Cast e co) = cafRefs p e
831 cafRefs p (Type t) = fastBool False
833 cafRefss p [] = fastBool False
834 cafRefss p (e:es) = fastOr (cafRefs p e) (cafRefss p) es
836 -- hack for lazy-or over FastBool.
837 fastOr a f x = fastBool (isFastTrue a || isFastTrue (f x))