2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 \section[RnBinds]{Renaming and dependency analysis of bindings}
6 This module does renaming and dependency analysis on value bindings in
7 the abstract syntax. It does {\em not} do cycle-checks on class or
8 type-synonym declarations; those cannot be done at this stage because
9 they may be affected by renaming (which isn't fully worked out yet).
13 -- Renaming top-level bindings
14 rnTopBinds, rnTopBindsLHS, rnTopBindsRHS,
16 -- Renaming local bindings
17 rnLocalBindsAndThen, rnLocalValBindsLHS, rnLocalValBindsRHS,
20 rnMethodBinds, renameSigs, mkSigTvFn,
21 rnMatchGroup, rnGRHSs,
22 makeMiniFixityEnv, MiniFixityEnv,
26 import {-# SOURCE #-} RnExpr( rnLExpr, rnStmts )
32 import RnTypes ( rnHsSigType, rnLHsType, checkPrecMatch)
33 import RnPat (rnPats, rnBindPat,
34 NameMaker, localRecNameMaker, topRecNameMaker, applyNameMaker
42 import RdrName ( RdrName, rdrNameOcc )
44 import ListSetOps ( findDupsEq )
45 import BasicTypes ( RecFlag(..) )
46 import Digraph ( SCC(..), stronglyConnCompFromEdgedVertices )
50 import Data.List ( partition )
51 import Maybes ( orElse )
55 -- ToDo: Put the annotations into the monad, so that they arrive in the proper
56 -- place and can be used when complaining.
58 The code tree received by the function @rnBinds@ contains definitions
59 in where-clauses which are all apparently mutually recursive, but which may
60 not really depend upon each other. For example, in the top level program
65 the definitions of @a@ and @y@ do not depend on each other at all.
66 Unfortunately, the typechecker cannot always check such definitions.
67 \footnote{Mycroft, A. 1984. Polymorphic type schemes and recursive
68 definitions. In Proceedings of the International Symposium on Programming,
69 Toulouse, pp. 217-39. LNCS 167. Springer Verlag.}
70 However, the typechecker usually can check definitions in which only the
71 strongly connected components have been collected into recursive bindings.
72 This is precisely what the function @rnBinds@ does.
74 ToDo: deal with case where a single monobinds binds the same variable
77 The vertag tag is a unique @Int@; the tags only need to be unique
78 within one @MonoBinds@, so that unique-Int plumbing is done explicitly
79 (heavy monad machinery not needed).
82 %************************************************************************
84 %* naming conventions *
86 %************************************************************************
88 \subsection[name-conventions]{Name conventions}
90 The basic algorithm involves walking over the tree and returning a tuple
91 containing the new tree plus its free variables. Some functions, such
92 as those walking polymorphic bindings (HsBinds) and qualifier lists in
93 list comprehensions (@Quals@), return the variables bound in local
94 environments. These are then used to calculate the free variables of the
95 expression evaluated in these environments.
97 Conventions for variable names are as follows:
100 new code is given a prime to distinguish it from the old.
103 a set of variables defined in @Exp@ is written @dvExp@
106 a set of variables free in @Exp@ is written @fvExp@
109 %************************************************************************
111 %* analysing polymorphic bindings (HsBindGroup, HsBind)
113 %************************************************************************
115 \subsubsection[dep-HsBinds]{Polymorphic bindings}
117 Non-recursive expressions are reconstructed without any changes at top
118 level, although their component expressions may have to be altered.
119 However, non-recursive expressions are currently not expected as
120 \Haskell{} programs, and this code should not be executed.
122 Monomorphic bindings contain information that is returned in a tuple
123 (a @FlatMonoBinds@) containing:
127 a unique @Int@ that serves as the ``vertex tag'' for this binding.
130 the name of a function or the names in a pattern. These are a set
131 referred to as @dvLhs@, the defined variables of the left hand side.
134 the free variables of the body. These are referred to as @fvBody@.
137 the definition's actual code. This is referred to as just @code@.
140 The function @nonRecDvFv@ returns two sets of variables. The first is
141 the set of variables defined in the set of monomorphic bindings, while the
142 second is the set of free variables in those bindings.
144 The set of variables defined in a non-recursive binding is just the
145 union of all of them, as @union@ removes duplicates. However, the
146 free variables in each successive set of cumulative bindings is the
147 union of those in the previous set plus those of the newest binding after
148 the defined variables of the previous set have been removed.
150 @rnMethodBinds@ deals only with the declarations in class and
151 instance declarations. It expects only to see @FunMonoBind@s, and
152 it expects the global environment to contain bindings for the binders
153 (which are all class operations).
155 %************************************************************************
157 \subsubsection{ Top-level bindings}
159 %************************************************************************
162 -- for top-level bindings, we need to make top-level names,
163 -- so we have a different entry point than for local bindings
164 rnTopBindsLHS :: MiniFixityEnv
165 -> HsValBinds RdrName
166 -> RnM (HsValBindsLR Name RdrName)
167 rnTopBindsLHS fix_env binds
168 = rnValBindsLHS (topRecNameMaker fix_env) binds
170 rnTopBindsRHS :: HsValBindsLR Name RdrName
171 -> RnM (HsValBinds Name, DefUses)
173 = do { is_boot <- tcIsHsBoot
175 then rnTopBindsBoot binds
176 else rnValBindsRHS noTrimFVs -- don't trim free vars
177 Nothing -- Allow SPEC prags for imports
180 -- Wrapper if we don't need to do anything in between the left and right,
181 -- or anything else in the scope of the left
183 -- Never used when there are fixity declarations
184 rnTopBinds :: HsValBinds RdrName
185 -> RnM (HsValBinds Name, DefUses)
187 = do { nl <- rnTopBindsLHS emptyFsEnv b
188 ; let bound_names = collectHsValBinders nl
189 ; bindLocalNames bound_names $
190 rnValBindsRHS noTrimFVs (Just (mkNameSet bound_names)) nl }
193 rnTopBindsBoot :: HsValBindsLR Name RdrName -> RnM (HsValBinds Name, DefUses)
194 -- A hs-boot file has no bindings.
195 -- Return a single HsBindGroup with empty binds and renamed signatures
196 rnTopBindsBoot (ValBindsIn mbinds sigs)
197 = do { checkErr (isEmptyLHsBinds mbinds) (bindsInHsBootFile mbinds)
198 ; sigs' <- renameSigs Nothing okHsBootSig sigs
199 ; return (ValBindsOut [] sigs', usesOnly (hsSigsFVs sigs')) }
200 rnTopBindsBoot b = pprPanic "rnTopBindsBoot" (ppr b)
204 %*********************************************************
208 %*********************************************************
211 rnLocalBindsAndThen :: HsLocalBinds RdrName
212 -> (HsLocalBinds Name -> RnM (result, FreeVars))
213 -> RnM (result, FreeVars)
214 -- This version (a) assumes that the binding vars are *not* already in scope
215 -- (b) removes the binders from the free vars of the thing inside
216 -- The parser doesn't produce ThenBinds
217 rnLocalBindsAndThen EmptyLocalBinds thing_inside
218 = thing_inside EmptyLocalBinds
220 rnLocalBindsAndThen (HsValBinds val_binds) thing_inside
221 = rnLocalValBindsAndThen val_binds $ \ val_binds' ->
222 thing_inside (HsValBinds val_binds')
224 rnLocalBindsAndThen (HsIPBinds binds) thing_inside = do
225 (binds',fv_binds) <- rnIPBinds binds
226 (thing, fvs_thing) <- thing_inside (HsIPBinds binds')
227 return (thing, fvs_thing `plusFV` fv_binds)
229 rnIPBinds :: HsIPBinds RdrName -> RnM (HsIPBinds Name, FreeVars)
230 rnIPBinds (IPBinds ip_binds _no_dict_binds) = do
231 (ip_binds', fvs_s) <- mapAndUnzipM (wrapLocFstM rnIPBind) ip_binds
232 return (IPBinds ip_binds' emptyTcEvBinds, plusFVs fvs_s)
234 rnIPBind :: IPBind RdrName -> RnM (IPBind Name, FreeVars)
235 rnIPBind (IPBind n expr) = do
236 name <- newIPNameRn n
237 (expr',fvExpr) <- rnLExpr expr
238 return (IPBind name expr', fvExpr)
242 %************************************************************************
246 %************************************************************************
249 -- Renaming local binding gropus
250 -- Does duplicate/shadow check
251 rnLocalValBindsLHS :: MiniFixityEnv
252 -> HsValBinds RdrName
253 -> RnM ([Name], HsValBindsLR Name RdrName)
254 rnLocalValBindsLHS fix_env binds
255 = do { -- Do error checking: we need to check for dups here because we
256 -- don't don't bind all of the variables from the ValBinds at once
257 -- with bindLocatedLocals any more.
259 -- Note that we don't want to do this at the top level, since
260 -- sorting out duplicates and shadowing there happens elsewhere.
261 -- The behavior is even different. For example,
264 -- should not produce a shadowing warning (but it will produce
265 -- an ambiguity warning if you use f), but
267 -- g = let f = ... in f
269 ; binds' <- rnValBindsLHS (localRecNameMaker fix_env) binds
270 ; let bound_names = collectHsValBinders binds'
272 ; checkDupAndShadowedNames envs bound_names
273 ; return (bound_names, binds') }
275 -- renames the left-hand sides
276 -- generic version used both at the top level and for local binds
277 -- does some error checking, but not what gets done elsewhere at the top level
278 rnValBindsLHS :: NameMaker
279 -> HsValBinds RdrName
280 -> RnM (HsValBindsLR Name RdrName)
281 rnValBindsLHS topP (ValBindsIn mbinds sigs)
282 = do { mbinds' <- mapBagM (rnBindLHS topP doc) mbinds
283 ; return $ ValBindsIn mbinds' sigs }
285 bndrs = collectHsBindsBinders mbinds
286 doc = text "In the binding group for:" <+> pprWithCommas ppr bndrs
288 rnValBindsLHS _ b = pprPanic "rnValBindsLHSFromDoc" (ppr b)
290 -- General version used both from the top-level and for local things
291 -- Assumes the LHS vars are in scope
293 -- Does not bind the local fixity declarations
294 rnValBindsRHS :: (FreeVars -> FreeVars) -- for trimming free var sets
295 -- The trimming function trims the free vars we attach to a
296 -- binding so that it stays reasonably small
297 -> Maybe NameSet -- Names bound by the LHSes
298 -- Nothing if expect sigs for imports
299 -> HsValBindsLR Name RdrName
300 -> RnM (HsValBinds Name, DefUses)
302 rnValBindsRHS trim mb_bound_names (ValBindsIn mbinds sigs)
303 = do { sigs' <- renameSigs mb_bound_names okBindSig sigs
304 ; binds_w_dus <- mapBagM (rnBind (mkSigTvFn sigs') trim) mbinds
305 ; case depAnalBinds binds_w_dus of
306 (anal_binds, anal_dus) -> return (valbind', valbind'_dus)
308 valbind' = ValBindsOut anal_binds sigs'
309 valbind'_dus = usesOnly (hsSigsFVs sigs') `plusDU` anal_dus
312 rnValBindsRHS _ _ b = pprPanic "rnValBindsRHS" (ppr b)
314 noTrimFVs :: FreeVars -> FreeVars
317 -- Wrapper for local binds
319 -- The *client* of this function is responsible for checking for unused binders;
320 -- it doesn't (and can't: we don't have the thing inside the binds) happen here
322 -- The client is also responsible for bringing the fixities into scope
323 rnLocalValBindsRHS :: NameSet -- names bound by the LHSes
324 -> HsValBindsLR Name RdrName
325 -> RnM (HsValBinds Name, DefUses)
326 rnLocalValBindsRHS bound_names binds
327 = rnValBindsRHS trim (Just bound_names) binds
329 trim fvs = intersectNameSet bound_names fvs
330 -- Only keep the names the names from this group
333 -- wrapper that does both the left- and right-hand sides
335 -- here there are no local fixity decls passed in;
336 -- the local fixity decls come from the ValBinds sigs
337 rnLocalValBindsAndThen :: HsValBinds RdrName
338 -> (HsValBinds Name -> RnM (result, FreeVars))
339 -> RnM (result, FreeVars)
340 rnLocalValBindsAndThen binds@(ValBindsIn _ sigs) thing_inside
341 = do { -- (A) Create the local fixity environment
342 new_fixities <- makeMiniFixityEnv [L loc sig | L loc (FixSig sig) <- sigs]
344 -- (B) Rename the LHSes
345 ; (bound_names, new_lhs) <- rnLocalValBindsLHS new_fixities binds
347 -- ...and bring them (and their fixities) into scope
348 ; bindLocalNamesFV bound_names $
349 addLocalFixities new_fixities bound_names $ do
351 { -- (C) Do the RHS and thing inside
352 (binds', dus) <- rnLocalValBindsRHS (mkNameSet bound_names) new_lhs
353 ; (result, result_fvs) <- thing_inside binds'
355 -- Report unused bindings based on the (accurate)
358 -- should report 'x' unused
359 ; let real_uses = findUses dus result_fvs
360 ; warnUnusedLocalBinds bound_names real_uses
363 -- The variables "used" in the val binds are:
364 -- (1) the uses of the binds (allUses)
365 -- (2) the FVs of the thing-inside
366 all_uses = allUses dus `plusFV` result_fvs
367 -- Note [Unused binding hack]
368 -- ~~~~~~~~~~~~~~~~~~~~~~~~~~
369 -- Note that *in contrast* to the above reporting of
370 -- unused bindings, (1) above uses duUses to return *all*
371 -- the uses, even if the binding is unused. Otherwise consider:
373 -- y = let p = x in 'x' -- NB: p not used
374 -- If we don't "see" the dependency of 'y' on 'x', we may put the
375 -- bindings in the wrong order, and the type checker will complain
376 -- that x isn't in scope
378 -- But note that this means we won't report 'x' as unused,
379 -- whereas we would if we had { x = 3; p = x; y = 'x' }
381 ; return (result, all_uses) }}
382 -- The bound names are pruned out of all_uses
383 -- by the bindLocalNamesFV call above
385 rnLocalValBindsAndThen bs _ = pprPanic "rnLocalValBindsAndThen" (ppr bs)
388 -- Process the fixity declarations, making a FastString -> (Located Fixity) map
389 -- (We keep the location around for reporting duplicate fixity declarations.)
391 -- Checks for duplicates, but not that only locally defined things are fixed.
392 -- Note: for local fixity declarations, duplicates would also be checked in
393 -- check_sigs below. But we also use this function at the top level.
395 makeMiniFixityEnv :: [LFixitySig RdrName] -> RnM MiniFixityEnv
397 makeMiniFixityEnv decls = foldlM add_one emptyFsEnv decls
399 add_one env (L loc (FixitySig (L name_loc name) fixity)) = do
400 { -- this fixity decl is a duplicate iff
401 -- the ReaderName's OccName's FastString is already in the env
402 -- (we only need to check the local fix_env because
403 -- definitions of non-local will be caught elsewhere)
404 let { fs = occNameFS (rdrNameOcc name)
405 ; fix_item = L loc fixity };
407 case lookupFsEnv env fs of
408 Nothing -> return $ extendFsEnv env fs fix_item
409 Just (L loc' _) -> do
411 addErrAt name_loc (dupFixityDecl loc' name)
415 dupFixityDecl :: SrcSpan -> RdrName -> SDoc
416 dupFixityDecl loc rdr_name
417 = vcat [ptext (sLit "Multiple fixity declarations for") <+> quotes (ppr rdr_name),
418 ptext (sLit "also at ") <+> ppr loc]
420 ---------------------
422 -- renaming a single bind
424 rnBindLHS :: NameMaker
427 -- returns the renamed left-hand side,
428 -- and the FreeVars *of the LHS*
429 -- (i.e., any free variables of the pattern)
430 -> RnM (LHsBindLR Name RdrName)
432 rnBindLHS name_maker _ (L loc bind@(PatBind { pat_lhs = pat }))
433 = setSrcSpan loc $ do
434 -- we don't actually use the FV processing of rnPatsAndThen here
435 (pat',pat'_fvs) <- rnBindPat name_maker pat
436 return (L loc (bind { pat_lhs = pat', bind_fvs = pat'_fvs }))
437 -- We temporarily store the pat's FVs in bind_fvs;
438 -- gets updated to the FVs of the whole bind
439 -- when doing the RHS below
441 rnBindLHS name_maker _ (L loc bind@(FunBind { fun_id = name@(L nameLoc _) }))
443 do { newname <- applyNameMaker name_maker name
444 ; return (L loc (bind { fun_id = L nameLoc newname })) }
446 rnBindLHS _ _ b = pprPanic "rnBindLHS" (ppr b)
448 -- assumes the left-hands-side vars are in scope
449 rnBind :: (Name -> [Name]) -- Signature tyvar function
450 -> (FreeVars -> FreeVars) -- Trimming function for rhs free vars
451 -> LHsBindLR Name RdrName
452 -> RnM (LHsBind Name, [Name], Uses)
453 rnBind _ trim (L loc bind@(PatBind { pat_lhs = pat
455 -- pat fvs were stored in bind_fvs
456 -- after processing the LHS
457 , bind_fvs = pat_fvs }))
459 do { let bndrs = collectPatBinders pat
461 ; (grhss', fvs) <- rnGRHSs PatBindRhs grhss
462 -- No scoped type variables for pattern bindings
463 ; let all_fvs = pat_fvs `plusFV` fvs
466 ; fvs' `seq` -- See Note [Free-variable space leak]
467 return (L loc (bind { pat_rhs = grhss'
468 , bind_fvs = fvs' }),
472 (L loc bind@(FunBind { fun_id = name
473 , fun_infix = is_infix
474 , fun_matches = matches }))
475 -- invariant: no free vars here when it's a FunBind
477 do { let plain_name = unLoc name
479 ; (matches', fvs) <- bindSigTyVarsFV (sig_fn plain_name) $
480 -- bindSigTyVars tests for Opt_ScopedTyVars
481 rnMatchGroup (FunRhs plain_name is_infix) matches
482 ; let fvs' = trim fvs
484 ; when is_infix $ checkPrecMatch plain_name matches'
486 ; fvs' `seq` -- See Note [Free-variable space leak]
488 return (L loc (bind { fun_matches = matches'
489 , bind_fvs = fvs' }),
493 rnBind _ _ b = pprPanic "rnBind" (ppr b)
496 Note [Free-variable space leak]
497 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
500 and we seq fvs' before turning it as part of a record.
502 The reason is that trim is sometimes something like
503 \xs -> intersectNameSet (mkNameSet bound_names) xs
504 and we don't want to retain the list bound_names. This showed up in
508 ---------------------
509 depAnalBinds :: Bag (LHsBind Name, [Name], Uses)
510 -> ([(RecFlag, LHsBinds Name)], DefUses)
511 -- Dependency analysis; this is important so that
512 -- unused-binding reporting is accurate
513 depAnalBinds binds_w_dus
514 = (map get_binds sccs, map get_du sccs)
516 sccs = stronglyConnCompFromEdgedVertices edges
518 keyd_nodes = bagToList binds_w_dus `zip` [0::Int ..]
520 edges = [ (node, key, [key | n <- nameSetToList uses,
521 Just key <- [lookupNameEnv key_map n] ])
522 | (node@(_,_,uses), key) <- keyd_nodes ]
524 key_map :: NameEnv Int -- Which binding it comes from
525 key_map = mkNameEnv [(bndr, key) | ((_, bndrs, _), key) <- keyd_nodes
528 get_binds (AcyclicSCC (bind, _, _)) = (NonRecursive, unitBag bind)
529 get_binds (CyclicSCC binds_w_dus) = (Recursive, listToBag [b | (b,_,_) <- binds_w_dus])
531 get_du (AcyclicSCC (_, bndrs, uses)) = (Just (mkNameSet bndrs), uses)
532 get_du (CyclicSCC binds_w_dus) = (Just defs, uses)
534 defs = mkNameSet [b | (_,bs,_) <- binds_w_dus, b <- bs]
535 uses = unionManyNameSets [u | (_,_,u) <- binds_w_dus]
538 ---------------------
539 -- Bind the top-level forall'd type variables in the sigs.
542 -- The 'a' scopes over the rhs
544 -- NB: there'll usually be just one (for a function binding)
545 -- but if there are many, one may shadow the rest; too bad!
546 -- e.g x :: [a] -> [a]
549 -- In e, 'a' will be in scope, and it'll be the one from 'y'!
551 mkSigTvFn :: [LSig Name] -> (Name -> [Name])
552 -- Return a lookup function that maps an Id Name to the names
553 -- of the type variables that should scope over its body..
555 = \n -> lookupNameEnv env n `orElse` []
557 env :: NameEnv [Name]
558 env = mkNameEnv [ (name, map hsLTyVarName ltvs)
559 | L _ (TypeSig (L _ name)
560 (L _ (HsForAllTy Explicit ltvs _ _))) <- sigs]
561 -- Note the pattern-match on "Explicit"; we only bind
562 -- type variables from signatures with an explicit top-level for-all
566 @rnMethodBinds@ is used for the method bindings of a class and an instance
567 declaration. Like @rnBinds@ but without dependency analysis.
569 NOTA BENE: we record each {\em binder} of a method-bind group as a free variable.
570 That's crucial when dealing with an instance decl:
572 instance Foo (T a) where
575 This might be the {\em sole} occurrence of @op@ for an imported class @Foo@,
576 and unless @op@ occurs we won't treat the type signature of @op@ in the class
577 decl for @Foo@ as a source of instance-decl gates. But we should! Indeed,
578 in many ways the @op@ in an instance decl is just like an occurrence, not
582 rnMethodBinds :: Name -- Class name
583 -> (Name -> [Name]) -- Signature tyvar function
584 -> [Name] -- Names for generic type variables
586 -> RnM (LHsBinds Name, FreeVars)
588 rnMethodBinds cls sig_fn gen_tyvars binds
589 = foldlM do_one (emptyBag,emptyFVs) (bagToList binds)
591 do_one (binds,fvs) bind
592 = do { (bind', fvs_bind) <- rnMethodBind cls sig_fn gen_tyvars bind
593 ; return (binds `unionBags` bind', fvs_bind `plusFV` fvs) }
598 -> LHsBindLR RdrName RdrName
599 -> RnM (Bag (LHsBindLR Name Name), FreeVars)
600 rnMethodBind cls sig_fn gen_tyvars
601 (L loc bind@(FunBind { fun_id = name, fun_infix = is_infix
602 , fun_matches = MatchGroup matches _ }))
603 = setSrcSpan loc $ do
604 sel_name <- wrapLocM (lookupInstDeclBndr cls) name
605 let plain_name = unLoc sel_name
606 -- We use the selector name as the binder
608 (new_matches, fvs) <- bindSigTyVarsFV (sig_fn plain_name) $
609 mapFvRn (rn_match (FunRhs plain_name is_infix)) matches
610 let new_group = MatchGroup new_matches placeHolderType
612 when is_infix $ checkPrecMatch plain_name new_group
613 return (unitBag (L loc (bind { fun_id = sel_name
614 , fun_matches = new_group
615 , bind_fvs = fvs })),
616 fvs `addOneFV` plain_name)
617 -- The 'fvs' field isn't used for method binds
619 -- Truly gruesome; bring into scope the correct members of the generic
620 -- type variables. See comments in RnSource.rnSourceDecl(ClassDecl)
621 rn_match info match@(L _ (Match (L _ (TypePat ty) : _) _ _))
622 = extendTyVarEnvFVRn gen_tvs $
625 tvs = map (rdrNameOcc.unLoc) (extractHsTyRdrTyVars ty)
626 gen_tvs = [tv | tv <- gen_tyvars, nameOccName tv `elem` tvs]
628 rn_match info match = rnMatch info match
630 -- Can't handle method pattern-bindings which bind multiple methods.
631 rnMethodBind _ _ _ (L loc bind@(PatBind {})) = do
632 addErrAt loc (methodBindErr bind)
633 return (emptyBag, emptyFVs)
635 rnMethodBind _ _ _ b = pprPanic "rnMethodBind" (ppr b)
640 %************************************************************************
642 \subsubsection[dep-Sigs]{Signatures (and user-pragmas for values)}
644 %************************************************************************
646 @renameSigs@ checks for:
648 \item more than one sig for one thing;
649 \item signatures given for things not bound here;
652 At the moment we don't gather free-var info from the types in
653 signatures. We'd only need this if we wanted to report unused tyvars.
656 renameSigs :: Maybe NameSet -- If (Just ns) complain if the sig isn't for one of ns
657 -> (Sig Name -> Bool) -- Complain about the wrong kind of signature if this is False
660 -- Renames the signatures and performs error checks
661 renameSigs mb_names ok_sig sigs
662 = do { mapM_ dupSigDeclErr (findDupsEq eqHsSig sigs) -- Duplicate
663 -- Check for duplicates on RdrName version,
664 -- because renamed version has unboundName for
665 -- not-in-scope binders, which gives bogus dup-sig errors
667 ; sigs' <- mapM (wrapLocM (renameSig mb_names)) sigs
669 ; let (good_sigs, bad_sigs) = partition (ok_sig . unLoc) sigs'
670 ; mapM_ misplacedSigErr bad_sigs -- Misplaced
674 ----------------------
675 -- We use lookupSigOccRn in the signatures, which is a little bit unsatisfactory
676 -- because this won't work for:
677 -- instance Foo T where
680 -- We'll just rename the INLINE prag to refer to whatever other 'op'
681 -- is in scope. (I'm assuming that Baz.op isn't in scope unqualified.)
682 -- Doesn't seem worth much trouble to sort this.
684 renameSig :: Maybe NameSet -> Sig RdrName -> RnM (Sig Name)
685 -- FixitySig is renamed elsewhere.
686 renameSig _ (IdSig x)
687 = return (IdSig x) -- Actually this never occurs
688 renameSig mb_names sig@(TypeSig v ty)
689 = do { new_v <- lookupSigOccRn mb_names sig v
690 ; new_ty <- rnHsSigType (quotes (ppr v)) ty
691 ; return (TypeSig new_v new_ty) }
693 renameSig _ (SpecInstSig ty)
694 = do { new_ty <- rnLHsType (text "A SPECIALISE instance pragma") ty
695 ; return (SpecInstSig new_ty) }
697 -- {-# SPECIALISE #-} pragmas can refer to imported Ids
698 -- so, in the top-level case (when mb_names is Nothing)
699 -- we use lookupOccRn. If there's both an imported and a local 'f'
700 -- then the SPECIALISE pragma is ambiguous, unlike alll other signatures
701 renameSig mb_names sig@(SpecSig v ty inl)
702 = do { new_v <- case mb_names of
703 Just {} -> lookupSigOccRn mb_names sig v
704 Nothing -> lookupLocatedOccRn v
705 ; new_ty <- rnHsSigType (quotes (ppr v)) ty
706 ; return (SpecSig new_v new_ty inl) }
708 renameSig mb_names sig@(InlineSig v s)
709 = do { new_v <- lookupSigOccRn mb_names sig v
710 ; return (InlineSig new_v s) }
712 renameSig mb_names sig@(FixSig (FixitySig v f))
713 = do { new_v <- lookupSigOccRn mb_names sig v
714 ; return (FixSig (FixitySig new_v f)) }
718 %************************************************************************
722 %************************************************************************
725 rnMatchGroup :: HsMatchContext Name -> MatchGroup RdrName -> RnM (MatchGroup Name, FreeVars)
726 rnMatchGroup ctxt (MatchGroup ms _)
727 = do { (new_ms, ms_fvs) <- mapFvRn (rnMatch ctxt) ms
728 ; return (MatchGroup new_ms placeHolderType, ms_fvs) }
730 rnMatch :: HsMatchContext Name -> LMatch RdrName -> RnM (LMatch Name, FreeVars)
731 rnMatch ctxt = wrapLocFstM (rnMatch' ctxt)
733 rnMatch' :: HsMatchContext Name -> Match RdrName -> RnM (Match Name, FreeVars)
734 rnMatch' ctxt match@(Match pats maybe_rhs_sig grhss)
735 = do { -- Result type signatures are no longer supported
736 case maybe_rhs_sig of
738 Just (L loc ty) -> addErrAt loc (resSigErr ctxt match ty)
740 -- Now the main event
741 -- note that there are no local ficity decls for matches
742 ; rnPats ctxt pats $ \ pats' -> do
743 { (grhss', grhss_fvs) <- rnGRHSs ctxt grhss
745 ; return (Match pats' Nothing grhss', grhss_fvs) }}
746 -- The bindPatSigTyVarsFV and rnPatsAndThen will remove the bound FVs
748 resSigErr :: HsMatchContext Name -> Match RdrName -> HsType RdrName -> SDoc
749 resSigErr ctxt match ty
750 = vcat [ ptext (sLit "Illegal result type signature") <+> quotes (ppr ty)
751 , nest 2 $ ptext (sLit "Result signatures are no longer supported in pattern matches")
752 , pprMatchInCtxt ctxt match ]
756 %************************************************************************
758 \subsubsection{Guarded right-hand sides (GRHSs)}
760 %************************************************************************
763 rnGRHSs :: HsMatchContext Name -> GRHSs RdrName -> RnM (GRHSs Name, FreeVars)
765 rnGRHSs ctxt (GRHSs grhss binds)
766 = rnLocalBindsAndThen binds $ \ binds' -> do
767 (grhss', fvGRHSs) <- mapFvRn (rnGRHS ctxt) grhss
768 return (GRHSs grhss' binds', fvGRHSs)
770 rnGRHS :: HsMatchContext Name -> LGRHS RdrName -> RnM (LGRHS Name, FreeVars)
771 rnGRHS ctxt = wrapLocFstM (rnGRHS' ctxt)
773 rnGRHS' :: HsMatchContext Name -> GRHS RdrName -> RnM (GRHS Name, FreeVars)
774 rnGRHS' ctxt (GRHS guards rhs)
775 = do { pattern_guards_allowed <- xoptM Opt_PatternGuards
776 ; ((guards', rhs'), fvs) <- rnStmts (PatGuard ctxt) guards $ \ _ ->
779 ; unless (pattern_guards_allowed || is_standard_guard guards')
780 (addWarn (nonStdGuardErr guards'))
782 ; return (GRHS guards' rhs', fvs) }
784 -- Standard Haskell 1.4 guards are just a single boolean
785 -- expression, rather than a list of qualifiers as in the
787 is_standard_guard [] = True
788 is_standard_guard [L _ (ExprStmt _ _ _)] = True
789 is_standard_guard _ = False
792 %************************************************************************
794 \subsection{Error messages}
796 %************************************************************************
799 dupSigDeclErr :: [LSig RdrName] -> RnM ()
800 dupSigDeclErr sigs@(L loc sig : _)
802 vcat [ptext (sLit "Duplicate") <+> what_it_is <> colon,
803 nest 2 (vcat (map ppr_sig sigs))]
805 what_it_is = hsSigDoc sig
806 ppr_sig (L loc sig) = ppr loc <> colon <+> ppr sig
807 dupSigDeclErr [] = panic "dupSigDeclErr"
809 misplacedSigErr :: LSig Name -> RnM ()
810 misplacedSigErr (L loc sig)
812 sep [ptext (sLit "Misplaced") <+> hsSigDoc sig <> colon, ppr sig]
814 methodBindErr :: HsBindLR RdrName RdrName -> SDoc
816 = hang (ptext (sLit "Pattern bindings (except simple variables) not allowed in instance declarations"))
819 bindsInHsBootFile :: LHsBindsLR Name RdrName -> SDoc
820 bindsInHsBootFile mbinds
821 = hang (ptext (sLit "Bindings in hs-boot files are not allowed"))
824 nonStdGuardErr :: [LStmtLR Name Name] -> SDoc
825 nonStdGuardErr guards
826 = hang (ptext (sLit "accepting non-standard pattern guards (use -XPatternGuards to suppress this message)"))
827 4 (interpp'SP guards)