Initial commit for Pedro's new generic default methods
[ghc-hetmet.git] / compiler / rename / RnBinds.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[RnBinds]{Renaming and dependency analysis of bindings}
5
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).
10
11 \begin{code}
12 module RnBinds (
13    -- Renaming top-level bindings
14    rnTopBinds, rnTopBindsLHS, rnTopBindsRHS, 
15
16    -- Renaming local bindings
17    rnLocalBindsAndThen, rnLocalValBindsLHS, rnLocalValBindsRHS,
18
19    -- Other bindings
20    rnMethodBinds, renameSigs, mkSigTvFn,
21    rnMatchGroup, rnGRHSs,
22    makeMiniFixityEnv, MiniFixityEnv,
23    misplacedSigErr
24    ) where
25
26 import {-# SOURCE #-} RnExpr( rnLExpr, rnStmts )
27
28 import HsSyn
29 import RdrHsSyn
30 import RnHsSyn
31 import TcRnMonad
32 import RnTypes        ( rnHsSigType, rnLHsType, checkPrecMatch)
33 import RnPat          (rnPats, rnBindPat,
34                        NameMaker, localRecNameMaker, topRecNameMaker, applyNameMaker
35                       )
36                       
37 import RnEnv
38 import DynFlags
39 import Name
40 import NameEnv
41 import NameSet
42 import RdrName          ( RdrName, rdrNameOcc )
43 import SrcLoc
44 import ListSetOps       ( findDupsEq )
45 import BasicTypes       ( RecFlag(..) )
46 import Digraph          ( SCC(..), stronglyConnCompFromEdgedVertices )
47 import Bag
48 import Outputable
49 import FastString
50 import Data.List        ( partition )
51 import Maybes           ( orElse )
52 import Control.Monad
53 \end{code}
54
55 -- ToDo: Put the annotations into the monad, so that they arrive in the proper
56 -- place and can be used when complaining.
57
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
61 \begin{verbatim}
62 f x = y where a = x
63               y = x
64 \end{verbatim}
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.
73
74 ToDo: deal with case where a single monobinds binds the same variable
75 twice.
76
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).
80
81
82 %************************************************************************
83 %*                                                                      *
84 %* naming conventions                                                   *
85 %*                                                                      *
86 %************************************************************************
87
88 \subsection[name-conventions]{Name conventions}
89
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.
96
97 Conventions for variable names are as follows:
98 \begin{itemize}
99 \item
100 new code is given a prime to distinguish it from the old.
101
102 \item
103 a set of variables defined in @Exp@ is written @dvExp@
104
105 \item
106 a set of variables free in @Exp@ is written @fvExp@
107 \end{itemize}
108
109 %************************************************************************
110 %*                                                                      *
111 %* analysing polymorphic bindings (HsBindGroup, HsBind)
112 %*                                                                      *
113 %************************************************************************
114
115 \subsubsection[dep-HsBinds]{Polymorphic bindings}
116
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.
121
122 Monomorphic bindings contain information that is returned in a tuple
123 (a @FlatMonoBinds@) containing:
124
125 \begin{enumerate}
126 \item
127 a unique @Int@ that serves as the ``vertex tag'' for this binding.
128
129 \item
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.
132
133 \item
134 the free variables of the body. These are referred to as @fvBody@.
135
136 \item
137 the definition's actual code. This is referred to as just @code@.
138 \end{enumerate}
139
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.
143
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.
149
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).
154
155 %************************************************************************
156 %*                                                                      *
157 \subsubsection{ Top-level bindings}
158 %*                                                                      *
159 %************************************************************************
160
161 \begin{code}
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
169
170 rnTopBindsRHS :: HsValBindsLR Name RdrName 
171               -> RnM (HsValBinds Name, DefUses)
172 rnTopBindsRHS binds
173   = do { is_boot <- tcIsHsBoot
174        ; if is_boot 
175          then rnTopBindsBoot binds
176          else rnValBindsRHS noTrimFVs -- don't trim free vars
177                             Nothing   -- Allow SPEC prags for imports
178                             binds }
179
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
182 --
183 -- Never used when there are fixity declarations
184 rnTopBinds :: HsValBinds RdrName 
185            -> RnM (HsValBinds Name, DefUses)
186 rnTopBinds b
187   = do { nl <- rnTopBindsLHS emptyFsEnv b
188        ; let bound_names = collectHsValBinders nl
189        ; bindLocalNames bound_names $ 
190          rnValBindsRHS noTrimFVs (Just (mkNameSet bound_names)) nl }
191        
192
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)
201 \end{code}
202
203
204 %*********************************************************
205 %*                                                      *
206                 HsLocalBinds
207 %*                                                      *
208 %*********************************************************
209
210 \begin{code}
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
219
220 rnLocalBindsAndThen (HsValBinds val_binds) thing_inside
221   = rnLocalValBindsAndThen val_binds $ \ val_binds' -> 
222       thing_inside (HsValBinds val_binds')
223
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)
228
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)
233
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)
239 \end{code}
240
241
242 %************************************************************************
243 %*                                                                      *
244                 ValBinds
245 %*                                                                      *
246 %************************************************************************
247
248 \begin{code}
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.
258          -- 
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,
262          --   import A(f)
263          --   f = ...
264          -- should not produce a shadowing warning (but it will produce
265          -- an ambiguity warning if you use f), but
266          --   import A(f)
267          --   g = let f = ... in f
268          -- should.
269        ; binds' <- rnValBindsLHS (localRecNameMaker fix_env) binds 
270        ; let bound_names = collectHsValBinders binds'
271        ; envs <- getRdrEnvs
272        ; checkDupAndShadowedNames envs bound_names
273        ; return (bound_names, binds') }
274
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 }
284   where
285     bndrs = collectHsBindsBinders mbinds
286     doc   = text "In the binding group for:" <+> pprWithCommas ppr bndrs
287
288 rnValBindsLHS _ b = pprPanic "rnValBindsLHSFromDoc" (ppr b)
289
290 -- General version used both from the top-level and for local things
291 -- Assumes the LHS vars are in scope
292 --
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)
301
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)
307               where
308                 valbind' = ValBindsOut anal_binds sigs'
309                 valbind'_dus = usesOnly (hsSigsFVs sigs') `plusDU` anal_dus
310        }
311
312 rnValBindsRHS _ _ b = pprPanic "rnValBindsRHS" (ppr b)
313
314 noTrimFVs :: FreeVars -> FreeVars
315 noTrimFVs fvs = fvs
316
317 -- Wrapper for local binds
318 --
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
321 --
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
328   where
329     trim fvs = intersectNameSet bound_names fvs 
330         -- Only keep the names the names from this group
331
332 -- for local binds
333 -- wrapper that does both the left- and right-hand sides 
334 --
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]
343
344               -- (B) Rename the LHSes 
345         ; (bound_names, new_lhs) <- rnLocalValBindsLHS new_fixities binds
346
347               --     ...and bring them (and their fixities) into scope
348         ; bindLocalNamesFV bound_names              $
349           addLocalFixities new_fixities bound_names $ do
350
351         {      -- (C) Do the RHS and thing inside
352           (binds', dus) <- rnLocalValBindsRHS (mkNameSet bound_names) new_lhs 
353         ; (result, result_fvs) <- thing_inside binds'
354
355                 -- Report unused bindings based on the (accurate) 
356                 -- findUses.  E.g.
357                 --      let x = x in 3
358                 -- should report 'x' unused
359         ; let real_uses = findUses dus result_fvs
360         ; warnUnusedLocalBinds bound_names real_uses
361
362         ; let
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:
372                 --      x = 3
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
377                 --
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' }
380
381         ; return (result, all_uses) }}
382                 -- The bound names are pruned out of all_uses
383                 -- by the bindLocalNamesFV call above
384
385 rnLocalValBindsAndThen bs _ = pprPanic "rnLocalValBindsAndThen" (ppr bs)
386
387
388 -- Process the fixity declarations, making a FastString -> (Located Fixity) map
389 -- (We keep the location around for reporting duplicate fixity declarations.)
390 -- 
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.
394
395 makeMiniFixityEnv :: [LFixitySig RdrName] -> RnM MiniFixityEnv
396
397 makeMiniFixityEnv decls = foldlM add_one emptyFsEnv decls
398  where
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 };
406
407        case lookupFsEnv env fs of
408          Nothing -> return $ extendFsEnv env fs fix_item
409          Just (L loc' _) -> do
410            { setSrcSpan loc $ 
411              addErrAt name_loc (dupFixityDecl loc' name)
412            ; return env}
413      }
414
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]
419
420 ---------------------
421
422 -- renaming a single bind
423
424 rnBindLHS :: NameMaker
425           -> SDoc 
426           -> LHsBind RdrName
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)
431
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
440                             
441 rnBindLHS name_maker _ (L loc bind@(FunBind { fun_id = name@(L nameLoc _) }))
442   = setSrcSpan loc $ 
443     do { newname <- applyNameMaker name_maker name
444        ; return (L loc (bind { fun_id = L nameLoc newname })) } 
445
446 rnBindLHS _ _ b = pprPanic "rnBindLHS" (ppr b)
447
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
454                                    , pat_rhs = grhss 
455                                       -- pat fvs were stored in bind_fvs
456                                       -- after processing the LHS          
457                                    , bind_fvs = pat_fvs }))
458   = setSrcSpan loc $ 
459     do  { let bndrs = collectPatBinders pat
460
461         ; (grhss', fvs) <- rnGRHSs PatBindRhs grhss
462                 -- No scoped type variables for pattern bindings
463         ; let all_fvs = pat_fvs `plusFV` fvs
464               fvs'    = trim all_fvs
465
466         ; fvs' `seq` -- See Note [Free-variable space leak]
467           return (L loc (bind { pat_rhs  = grhss' 
468                               , bind_fvs = fvs' }),
469                   bndrs, all_fvs) }
470
471 rnBind sig_fn trim 
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
476   = setSrcSpan loc $ 
477     do  { let plain_name = unLoc name
478
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
483
484         ; when is_infix $ checkPrecMatch plain_name matches'
485
486         ; fvs' `seq` -- See Note [Free-variable space leak]
487
488           return (L loc (bind { fun_matches = matches'
489                               , bind_fvs   = fvs' }), 
490                   [plain_name], fvs)
491       }
492
493 rnBind _ _ b = pprPanic "rnBind" (ppr b)
494
495 {-
496 Note [Free-variable space leak]
497 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
498 We have
499     fvs' = trim fvs
500 and we seq fvs' before turning it as part of a record.
501
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
505 trac ticket #1136.
506 -}
507
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)
515   where
516     sccs = stronglyConnCompFromEdgedVertices edges
517
518     keyd_nodes = bagToList binds_w_dus `zip` [0::Int ..]
519
520     edges = [ (node, key, [key | n <- nameSetToList uses,
521                                  Just key <- [lookupNameEnv key_map n] ])
522             | (node@(_,_,uses), key) <- keyd_nodes ]
523
524     key_map :: NameEnv Int      -- Which binding it comes from
525     key_map = mkNameEnv [(bndr, key) | ((_, bndrs, _), key) <- keyd_nodes
526                                      , bndr <- bndrs ]
527
528     get_binds (AcyclicSCC (bind, _, _)) = (NonRecursive, unitBag bind)
529     get_binds (CyclicSCC  binds_w_dus)  = (Recursive, listToBag [b | (b,_,_) <- binds_w_dus])
530
531     get_du (AcyclicSCC (_, bndrs, uses)) = (Just (mkNameSet bndrs), uses)
532     get_du (CyclicSCC  binds_w_dus)      = (Just defs, uses)
533         where
534           defs = mkNameSet [b | (_,bs,_) <- binds_w_dus, b <- bs]
535           uses = unionManyNameSets [u | (_,_,u) <- binds_w_dus]
536
537
538 ---------------------
539 -- Bind the top-level forall'd type variables in the sigs.
540 -- E.g  f :: a -> a
541 --      f = rhs
542 --      The 'a' scopes over the rhs
543 --
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]
547 --           y :: [(a,a)] -> a
548 --           (x,y) = e
549 --      In e, 'a' will be in scope, and it'll be the one from 'y'!
550
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..
554 mkSigTvFn sigs
555   = \n -> lookupNameEnv env n `orElse` []
556   where
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
563 \end{code}
564
565
566 @rnMethodBinds@ is used for the method bindings of a class and an instance
567 declaration.   Like @rnBinds@ but without dependency analysis.
568
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:
571 \begin{verbatim}
572         instance Foo (T a) where
573            op x = ...
574 \end{verbatim}
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
579 a binder.
580
581 \begin{code}
582 rnMethodBinds :: Name                   -- Class name
583               -> (Name -> [Name])       -- Signature tyvar function
584               -> [Name]                 -- Names for generic type variables
585               -> LHsBinds RdrName
586               -> RnM (LHsBinds Name, FreeVars)
587
588 rnMethodBinds cls sig_fn gen_tyvars binds
589   = do { checkDupRdrNames meth_names
590              -- Check that the same method is not given twice in the
591              -- same instance decl      instance C T where
592              --                       f x = ...
593              --                       g y = ...
594              --                       f x = ...
595              -- We must use checkDupRdrNames because the Name of the
596              -- method is the Name of the class selector, whose SrcSpan
597              -- points to the class declaration; and we use rnMethodBinds
598              -- for instance decls too
599
600        ; foldlM do_one (emptyBag, emptyFVs) (bagToList binds) }
601   where 
602     meth_names  = collectMethodBinders binds
603     do_one (binds,fvs) bind 
604        = do { (bind', fvs_bind) <- rnMethodBind cls sig_fn gen_tyvars bind
605             ; return (binds `unionBags` bind', fvs_bind `plusFV` fvs) }
606
607 rnMethodBind :: Name
608               -> (Name -> [Name])
609               -> [Name]
610               -> LHsBindLR RdrName RdrName
611               -> RnM (Bag (LHsBindLR Name Name), FreeVars)
612 rnMethodBind cls sig_fn gen_tyvars 
613              (L loc bind@(FunBind { fun_id = name, fun_infix = is_infix 
614                                   , fun_matches = MatchGroup matches _ }))
615   = setSrcSpan loc $ do
616     sel_name <- wrapLocM (lookupInstDeclBndr cls) name
617     let plain_name = unLoc sel_name
618         -- We use the selector name as the binder
619
620     (new_matches, fvs) <- bindSigTyVarsFV (sig_fn plain_name) $
621                           mapFvRn (rn_match (FunRhs plain_name is_infix)) matches
622     let new_group = MatchGroup new_matches placeHolderType
623
624     when is_infix $ checkPrecMatch plain_name new_group
625     return (unitBag (L loc (bind { fun_id      = sel_name 
626                                  , fun_matches = new_group
627                                  , bind_fvs    = fvs })),
628              fvs `addOneFV` plain_name)
629         -- The 'fvs' field isn't used for method binds
630   where
631         -- Truly gruesome; bring into scope the correct members of the generic 
632         -- type variables.  See comments in RnSource.rnSourceDecl(ClassDecl)
633     rn_match info match@(L _ (Match (L _ (TypePat ty) : _) _ _))
634         = extendTyVarEnvFVRn gen_tvs    $
635           rnMatch info match
636         where
637           tvs     = map (rdrNameOcc.unLoc) (extractHsTyRdrTyVars ty)
638           gen_tvs = [tv | tv <- gen_tyvars, nameOccName tv `elem` tvs] 
639
640     rn_match info match = rnMatch info match
641
642 -- Can't handle method pattern-bindings which bind multiple methods.
643 rnMethodBind _ _ _ (L loc bind@(PatBind {})) = do
644     addErrAt loc (methodBindErr bind)
645     return (emptyBag, emptyFVs)
646
647 rnMethodBind _ _ _ b = pprPanic "rnMethodBind" (ppr b)
648 \end{code}
649
650
651
652 %************************************************************************
653 %*                                                                      *
654 \subsubsection[dep-Sigs]{Signatures (and user-pragmas for values)}
655 %*                                                                      *
656 %************************************************************************
657
658 @renameSigs@ checks for:
659 \begin{enumerate}
660 \item more than one sig for one thing;
661 \item signatures given for things not bound here;
662 \end{enumerate}
663 %
664 At the moment we don't gather free-var info from the types in
665 signatures.  We'd only need this if we wanted to report unused tyvars.
666
667 \begin{code}
668 renameSigs :: Maybe NameSet             -- If (Just ns) complain if the sig isn't for one of ns
669            -> (Sig Name -> Bool)        -- Complain about the wrong kind of signature if this is False
670            -> [LSig RdrName]
671            -> RnM [LSig Name]
672 -- Renames the signatures and performs error checks
673 renameSigs mb_names ok_sig sigs 
674   = do  { mapM_ dupSigDeclErr (findDupsEq eqHsSig sigs)  -- Duplicate
675                 -- Check for duplicates on RdrName version, 
676                 -- because renamed version has unboundName for
677                 -- not-in-scope binders, which gives bogus dup-sig errors
678                 -- NB: in a class decl, a 'generic' sig is not considered 
679                 --     equal to an ordinary sig, so we allow, say
680                 --           class C a where
681                 --             op :: a -> a
682                 --             generic op :: Eq a => a -> a
683                 
684         ; sigs' <- mapM (wrapLocM (renameSig mb_names)) sigs
685
686         ; let (good_sigs, bad_sigs) = partition (ok_sig . unLoc) sigs'
687         ; mapM_ misplacedSigErr bad_sigs                 -- Misplaced
688
689         ; return good_sigs } 
690
691 ----------------------
692 -- We use lookupSigOccRn in the signatures, which is a little bit unsatisfactory
693 -- because this won't work for:
694 --      instance Foo T where
695 --        {-# INLINE op #-}
696 --        Baz.op = ...
697 -- We'll just rename the INLINE prag to refer to whatever other 'op'
698 -- is in scope.  (I'm assuming that Baz.op isn't in scope unqualified.)
699 -- Doesn't seem worth much trouble to sort this.
700
701 renameSig :: Maybe NameSet -> Sig RdrName -> RnM (Sig Name)
702 -- FixitySig is renamed elsewhere.
703 renameSig _ (IdSig x)
704   = return (IdSig x)      -- Actually this never occurs
705 renameSig mb_names sig@(TypeSig v ty)
706   = do  { new_v <- lookupSigOccRn mb_names sig v
707         ; new_ty <- rnHsSigType (quotes (ppr v)) ty
708         ; return (TypeSig new_v new_ty) }
709
710 renameSig mb_names sig@(GenericSig v ty)
711   = do  { new_v <- lookupSigOccRn mb_names sig v
712         ; new_ty <- rnHsSigType (quotes (ppr v)) ty
713         ; return (GenericSig new_v new_ty) } -- JPM: ?
714
715 renameSig _ (SpecInstSig ty)
716   = do  { new_ty <- rnLHsType (text "A SPECIALISE instance pragma") ty
717         ; return (SpecInstSig new_ty) }
718
719 -- {-# SPECIALISE #-} pragmas can refer to imported Ids
720 -- so, in the top-level case (when mb_names is Nothing)
721 -- we use lookupOccRn.  If there's both an imported and a local 'f'
722 -- then the SPECIALISE pragma is ambiguous, unlike alll other signatures
723 renameSig mb_names sig@(SpecSig v ty inl)
724   = do  { new_v <- case mb_names of
725                      Just {} -> lookupSigOccRn mb_names sig v
726                      Nothing -> lookupLocatedOccRn v
727         ; new_ty <- rnHsSigType (quotes (ppr v)) ty
728         ; return (SpecSig new_v new_ty inl) }
729
730 renameSig mb_names sig@(InlineSig v s)
731   = do  { new_v <- lookupSigOccRn mb_names sig v
732         ; return (InlineSig new_v s) }
733
734 renameSig mb_names sig@(FixSig (FixitySig v f))
735   = do  { new_v <- lookupSigOccRn mb_names sig v
736         ; return (FixSig (FixitySig new_v f)) }
737 \end{code}
738
739
740 %************************************************************************
741 %*                                                                      *
742 \subsection{Match}
743 %*                                                                      *
744 %************************************************************************
745
746 \begin{code}
747 rnMatchGroup :: HsMatchContext Name -> MatchGroup RdrName -> RnM (MatchGroup Name, FreeVars)
748 rnMatchGroup ctxt (MatchGroup ms _) 
749   = do { (new_ms, ms_fvs) <- mapFvRn (rnMatch ctxt) ms
750        ; return (MatchGroup new_ms placeHolderType, ms_fvs) }
751
752 rnMatch :: HsMatchContext Name -> LMatch RdrName -> RnM (LMatch Name, FreeVars)
753 rnMatch ctxt  = wrapLocFstM (rnMatch' ctxt)
754
755 rnMatch' :: HsMatchContext Name -> Match RdrName -> RnM (Match Name, FreeVars)
756 rnMatch' ctxt match@(Match pats maybe_rhs_sig grhss)
757   = do  {       -- Result type signatures are no longer supported
758           case maybe_rhs_sig of 
759                 Nothing -> return ()
760                 Just (L loc ty) -> addErrAt loc (resSigErr ctxt match ty)
761
762                -- Now the main event
763                -- note that there are no local ficity decls for matches
764         ; rnPats ctxt pats      $ \ pats' -> do
765         { (grhss', grhss_fvs) <- rnGRHSs ctxt grhss
766
767         ; return (Match pats' Nothing grhss', grhss_fvs) }}
768         -- The bindPatSigTyVarsFV and rnPatsAndThen will remove the bound FVs
769
770 resSigErr :: HsMatchContext Name -> Match RdrName -> HsType RdrName -> SDoc 
771 resSigErr ctxt match ty
772    = vcat [ ptext (sLit "Illegal result type signature") <+> quotes (ppr ty)
773           , nest 2 $ ptext (sLit "Result signatures are no longer supported in pattern matches")
774           , pprMatchInCtxt ctxt match ]
775 \end{code}
776
777
778 %************************************************************************
779 %*                                                                      *
780 \subsubsection{Guarded right-hand sides (GRHSs)}
781 %*                                                                      *
782 %************************************************************************
783
784 \begin{code}
785 rnGRHSs :: HsMatchContext Name -> GRHSs RdrName -> RnM (GRHSs Name, FreeVars)
786
787 rnGRHSs ctxt (GRHSs grhss binds)
788   = rnLocalBindsAndThen binds   $ \ binds' -> do
789     (grhss', fvGRHSs) <- mapFvRn (rnGRHS ctxt) grhss
790     return (GRHSs grhss' binds', fvGRHSs)
791
792 rnGRHS :: HsMatchContext Name -> LGRHS RdrName -> RnM (LGRHS Name, FreeVars)
793 rnGRHS ctxt = wrapLocFstM (rnGRHS' ctxt)
794
795 rnGRHS' :: HsMatchContext Name -> GRHS RdrName -> RnM (GRHS Name, FreeVars)
796 rnGRHS' ctxt (GRHS guards rhs)
797   = do  { pattern_guards_allowed <- xoptM Opt_PatternGuards
798         ; ((guards', rhs'), fvs) <- rnStmts (PatGuard ctxt) guards $ \ _ ->
799                                     rnLExpr rhs
800
801         ; unless (pattern_guards_allowed || is_standard_guard guards')
802                  (addWarn (nonStdGuardErr guards'))
803
804         ; return (GRHS guards' rhs', fvs) }
805   where
806         -- Standard Haskell 1.4 guards are just a single boolean
807         -- expression, rather than a list of qualifiers as in the
808         -- Glasgow extension
809     is_standard_guard []                     = True
810     is_standard_guard [L _ (ExprStmt _ _ _)] = True
811     is_standard_guard _                      = False
812 \end{code}
813
814 %************************************************************************
815 %*                                                                      *
816 \subsection{Error messages}
817 %*                                                                      *
818 %************************************************************************
819
820 \begin{code}
821 dupSigDeclErr :: [LSig RdrName] -> RnM ()
822 dupSigDeclErr sigs@(L loc sig : _)
823   = addErrAt loc $
824         vcat [ptext (sLit "Duplicate") <+> what_it_is <> colon,
825               nest 2 (vcat (map ppr_sig sigs))]
826   where
827     what_it_is = hsSigDoc sig
828     ppr_sig (L loc sig) = ppr loc <> colon <+> ppr sig
829 dupSigDeclErr [] = panic "dupSigDeclErr"
830
831 misplacedSigErr :: LSig Name -> RnM ()
832 misplacedSigErr (L loc sig)
833   = addErrAt loc $
834     sep [ptext (sLit "Misplaced") <+> hsSigDoc sig <> colon, ppr sig]
835
836 methodBindErr :: HsBindLR RdrName RdrName -> SDoc
837 methodBindErr mbind
838  =  hang (ptext (sLit "Pattern bindings (except simple variables) not allowed in instance declarations"))
839        2 (ppr mbind)
840
841 bindsInHsBootFile :: LHsBindsLR Name RdrName -> SDoc
842 bindsInHsBootFile mbinds
843   = hang (ptext (sLit "Bindings in hs-boot files are not allowed"))
844        2 (ppr mbinds)
845
846 nonStdGuardErr :: [LStmtLR Name Name] -> SDoc
847 nonStdGuardErr guards
848   = hang (ptext (sLit "accepting non-standard pattern guards (use -XPatternGuards to suppress this message)"))
849        4 (interpp'SP guards)
850 \end{code}