5d9dbb885a0a38badb0312aa31ba3bdf0e345234
[ghc-hetmet.git] / compiler / typecheck / TcBinds.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5 \section[TcBinds]{TcBinds}
6
7 \begin{code}
8 module TcBinds ( tcLocalBinds, tcTopBinds, 
9                  tcHsBootSigs, tcMonoBinds, 
10                  TcPragFun, tcSpecPrag, tcPrags, mkPragFun, 
11                  TcSigInfo(..), TcSigFun, mkTcSigFun,
12                  badBootDeclErr ) where
13
14 #include "HsVersions.h"
15
16 import {-# SOURCE #-} TcMatches ( tcGRHSsPat, tcMatchesFun )
17 import {-# SOURCE #-} TcExpr  ( tcMonoExpr )
18
19 import DynFlags
20 import HsSyn
21 import TcHsSyn
22
23 import TcRnMonad
24 import Inst
25 import TcEnv
26 import TcUnify
27 import TcSimplify
28 import TcHsType
29 import TcPat
30 import TcMType
31 import TcType
32 import {- Kind parts of -} Type
33 import VarEnv
34 import TysPrim
35 import Id
36 import IdInfo
37 import Var ( TyVar )
38 import Name
39 import NameSet
40 import NameEnv
41 import VarSet
42 import SrcLoc
43 import Bag
44 import ErrUtils
45 import Digraph
46 import Maybes
47 import List
48 import Util
49 import BasicTypes
50 import Outputable
51 \end{code}
52
53
54 %************************************************************************
55 %*                                                                      *
56 \subsection{Type-checking bindings}
57 %*                                                                      *
58 %************************************************************************
59
60 @tcBindsAndThen@ typechecks a @HsBinds@.  The "and then" part is because
61 it needs to know something about the {\em usage} of the things bound,
62 so that it can create specialisations of them.  So @tcBindsAndThen@
63 takes a function which, given an extended environment, E, typechecks
64 the scope of the bindings returning a typechecked thing and (most
65 important) an LIE.  It is this LIE which is then used as the basis for
66 specialising the things bound.
67
68 @tcBindsAndThen@ also takes a "combiner" which glues together the
69 bindings and the "thing" to make a new "thing".
70
71 The real work is done by @tcBindWithSigsAndThen@.
72
73 Recursive and non-recursive binds are handled in essentially the same
74 way: because of uniques there are no scoping issues left.  The only
75 difference is that non-recursive bindings can bind primitive values.
76
77 Even for non-recursive binding groups we add typings for each binder
78 to the LVE for the following reason.  When each individual binding is
79 checked the type of its LHS is unified with that of its RHS; and
80 type-checking the LHS of course requires that the binder is in scope.
81
82 At the top-level the LIE is sure to contain nothing but constant
83 dictionaries, which we resolve at the module level.
84
85 \begin{code}
86 tcTopBinds :: HsValBinds Name -> TcM (LHsBinds TcId, TcLclEnv)
87         -- Note: returning the TcLclEnv is more than we really
88         --       want.  The bit we care about is the local bindings
89         --       and the free type variables thereof
90 tcTopBinds binds
91   = do  { (ValBindsOut prs _, env) <- tcValBinds TopLevel binds getLclEnv
92         ; return (foldr (unionBags . snd) emptyBag prs, env) }
93         -- The top level bindings are flattened into a giant 
94         -- implicitly-mutually-recursive LHsBinds
95
96 tcHsBootSigs :: HsValBinds Name -> TcM [Id]
97 -- A hs-boot file has only one BindGroup, and it only has type
98 -- signatures in it.  The renamer checked all this
99 tcHsBootSigs (ValBindsOut binds sigs)
100   = do  { checkTc (null binds) badBootDeclErr
101         ; mapM (addLocM tc_boot_sig) (filter isVanillaLSig sigs) }
102   where
103     tc_boot_sig (TypeSig (L _ name) ty)
104       = do { sigma_ty <- tcHsSigType (FunSigCtxt name) ty
105            ; return (mkVanillaGlobal name sigma_ty vanillaIdInfo) }
106         -- Notice that we make GlobalIds, not LocalIds
107 tcHsBootSigs groups = pprPanic "tcHsBootSigs" (ppr groups)
108
109 badBootDeclErr :: Message
110 badBootDeclErr = ptext SLIT("Illegal declarations in an hs-boot file")
111
112 ------------------------
113 tcLocalBinds :: HsLocalBinds Name -> TcM thing
114              -> TcM (HsLocalBinds TcId, thing)
115
116 tcLocalBinds EmptyLocalBinds thing_inside 
117   = do  { thing <- thing_inside
118         ; return (EmptyLocalBinds, thing) }
119
120 tcLocalBinds (HsValBinds binds) thing_inside
121   = do  { (binds', thing) <- tcValBinds NotTopLevel binds thing_inside
122         ; return (HsValBinds binds', thing) }
123
124 tcLocalBinds (HsIPBinds (IPBinds ip_binds _)) thing_inside
125   = do  { (thing, lie) <- getLIE thing_inside
126         ; (avail_ips, ip_binds') <- mapAndUnzipM (wrapLocSndM tc_ip_bind) ip_binds
127
128         -- If the binding binds ?x = E, we  must now 
129         -- discharge any ?x constraints in expr_lie
130         ; dict_binds <- tcSimplifyIPs avail_ips lie
131         ; return (HsIPBinds (IPBinds ip_binds' dict_binds), thing) }
132   where
133         -- I wonder if we should do these one at at time
134         -- Consider     ?x = 4
135         --              ?y = ?x + 1
136     tc_ip_bind (IPBind ip expr)
137       = newFlexiTyVarTy argTypeKind             `thenM` \ ty ->
138         newIPDict (IPBindOrigin ip) ip ty       `thenM` \ (ip', ip_inst) ->
139         tcMonoExpr expr ty                      `thenM` \ expr' ->
140         returnM (ip_inst, (IPBind ip' expr'))
141
142 ------------------------
143 tcValBinds :: TopLevelFlag 
144            -> HsValBinds Name -> TcM thing
145            -> TcM (HsValBinds TcId, thing) 
146
147 tcValBinds top_lvl (ValBindsIn binds sigs) thing_inside
148   = pprPanic "tcValBinds" (ppr binds)
149
150 tcValBinds top_lvl (ValBindsOut binds sigs) thing_inside
151   = do  {       -- Typecheck the signature
152         ; let { prag_fn = mkPragFun sigs
153               ; ty_sigs = filter isVanillaLSig sigs
154               ; sig_fn  = mkTcSigFun ty_sigs }
155
156         ; poly_ids <- mapM tcTySig ty_sigs
157                 -- No recovery from bad signatures, because the type sigs
158                 -- may bind type variables, so proceeding without them
159                 -- can lead to a cascade of errors
160                 -- ToDo: this means we fall over immediately if any type sig
161                 -- is wrong, which is over-conservative, see Trac bug #745
162
163                 -- Extend the envt right away with all 
164                 -- the Ids declared with type signatures
165         ; gla_exts     <- doptM Opt_GlasgowExts
166         ; (binds', thing) <- tcExtendIdEnv poly_ids $
167                              tc_val_binds gla_exts top_lvl sig_fn prag_fn 
168                                           binds thing_inside
169
170         ; return (ValBindsOut binds' sigs, thing) }
171
172 ------------------------
173 tc_val_binds :: Bool -> TopLevelFlag -> TcSigFun -> TcPragFun
174              -> [(RecFlag, LHsBinds Name)] -> TcM thing
175              -> TcM ([(RecFlag, LHsBinds TcId)], thing)
176 -- Typecheck a whole lot of value bindings,
177 -- one strongly-connected component at a time
178
179 tc_val_binds gla_exts top_lvl sig_fn prag_fn [] thing_inside
180   = do  { thing <- thing_inside
181         ; return ([], thing) }
182
183 tc_val_binds gla_exts top_lvl sig_fn prag_fn (group : groups) thing_inside
184   = do  { (group', (groups', thing))
185                 <- tc_group gla_exts top_lvl sig_fn prag_fn group $ 
186                    tc_val_binds gla_exts top_lvl sig_fn prag_fn groups thing_inside
187         ; return (group' ++ groups', thing) }
188
189 ------------------------
190 tc_group :: Bool -> TopLevelFlag -> TcSigFun -> TcPragFun
191          -> (RecFlag, LHsBinds Name) -> TcM thing
192          -> TcM ([(RecFlag, LHsBinds TcId)], thing)
193
194 -- Typecheck one strongly-connected component of the original program.
195 -- We get a list of groups back, because there may 
196 -- be specialisations etc as well
197
198 tc_group gla_exts top_lvl sig_fn prag_fn (NonRecursive, binds) thing_inside
199         -- A single non-recursive binding
200         -- We want to keep non-recursive things non-recursive
201         -- so that we desugar unlifted bindings correctly
202  =  do  { (binds, thing) <- tc_haskell98 top_lvl sig_fn prag_fn NonRecursive binds thing_inside
203         ; return ([(NonRecursive, b) | b <- binds], thing) }
204
205 tc_group gla_exts top_lvl sig_fn prag_fn (Recursive, binds) thing_inside
206   | not gla_exts        -- Recursive group, normal Haskell 98 route
207   = do  { (binds1, thing) <- tc_haskell98 top_lvl sig_fn prag_fn Recursive binds thing_inside
208         ; return ([(Recursive, unionManyBags binds1)], thing) }
209
210   | otherwise           -- Recursive group, with gla-exts
211   =     -- To maximise polymorphism (with -fglasgow-exts), we do a new 
212         -- strongly-connected-component analysis, this time omitting 
213         -- any references to variables with type signatures.
214         --
215         -- Notice that the bindInsts thing covers *all* the bindings in the original
216         -- group at once; an earlier one may use a later one!
217     do  { traceTc (text "tc_group rec" <+> pprLHsBinds binds)
218         ; (binds1,thing) <- bindLocalInsts top_lvl $
219                             go (stronglyConnComp (mkEdges sig_fn binds))
220         ; return ([(Recursive, unionManyBags binds1)], thing) }
221                 -- Rec them all together
222   where
223 --  go :: SCC (LHsBind Name) -> TcM ([LHsBind TcId], [TcId], thing)
224     go (scc:sccs) = do  { (binds1, ids1) <- tc_scc scc
225                         ; (binds2, ids2, thing) <- tcExtendIdEnv ids1 $ go sccs
226                         ; return (binds1 ++ binds2, ids1 ++ ids2, thing) }
227     go []         = do  { thing <- thing_inside; return ([], [], thing) }
228
229     tc_scc (AcyclicSCC bind) = tc_sub_group NonRecursive (unitBag bind)
230     tc_scc (CyclicSCC binds) = tc_sub_group Recursive    (listToBag binds)
231
232     tc_sub_group = tcPolyBinds top_lvl sig_fn prag_fn Recursive
233
234 tc_haskell98 top_lvl sig_fn prag_fn rec_flag binds thing_inside
235   = bindLocalInsts top_lvl $ do
236     { (binds1, ids) <- tcPolyBinds top_lvl sig_fn prag_fn rec_flag rec_flag binds
237     ; thing <- tcExtendIdEnv ids thing_inside
238     ; return (binds1, ids, thing) }
239
240 ------------------------
241 bindLocalInsts :: TopLevelFlag -> TcM ([LHsBinds TcId], [TcId], a) -> TcM ([LHsBinds TcId], a)
242 bindLocalInsts top_lvl thing_inside
243   | isTopLevel top_lvl = do { (binds, ids, thing) <- thing_inside; return (binds, thing) }
244         -- For the top level don't bother will all this bindInstsOfLocalFuns stuff. 
245         -- All the top level things are rec'd together anyway, so it's fine to
246         -- leave them to the tcSimplifyTop, and quite a bit faster too
247
248   | otherwise   -- Nested case
249   = do  { ((binds, ids, thing), lie) <- getLIE thing_inside
250         ; lie_binds <- bindInstsOfLocalFuns lie ids
251         ; return (binds ++ [lie_binds], thing) }
252
253 ------------------------
254 mkEdges :: TcSigFun -> LHsBinds Name
255         -> [(LHsBind Name, BKey, [BKey])]
256
257 type BKey  = Int -- Just number off the bindings
258
259 mkEdges sig_fn binds
260   = [ (bind, key, [key | n <- nameSetToList (bind_fvs (unLoc bind)),
261                          Just key <- [lookupNameEnv key_map n], no_sig n ])
262     | (bind, key) <- keyd_binds
263     ]
264   where
265     no_sig :: Name -> Bool
266     no_sig n = isNothing (sig_fn n)
267
268     keyd_binds = bagToList binds `zip` [0::BKey ..]
269
270     key_map :: NameEnv BKey     -- Which binding it comes from
271     key_map = mkNameEnv [(bndr, key) | (L _ bind, key) <- keyd_binds
272                                      , bndr <- bindersOfHsBind bind ]
273
274 bindersOfHsBind :: HsBind Name -> [Name]
275 bindersOfHsBind (PatBind { pat_lhs = pat })  = collectPatBinders pat
276 bindersOfHsBind (FunBind { fun_id = L _ f }) = [f]
277
278 ------------------------
279 tcPolyBinds :: TopLevelFlag -> TcSigFun -> TcPragFun
280             -> RecFlag                  -- Whether the group is really recursive
281             -> RecFlag                  -- Whether it's recursive after breaking
282                                         -- dependencies based on type signatures
283             -> LHsBinds Name
284             -> TcM ([LHsBinds TcId], [TcId])
285
286 -- Typechecks a single bunch of bindings all together, 
287 -- and generalises them.  The bunch may be only part of a recursive
288 -- group, because we use type signatures to maximise polymorphism
289 --
290 -- Returns a list because the input may be a single non-recursive binding,
291 -- in which case the dependency order of the resulting bindings is
292 -- important.  
293 -- 
294 -- Knows nothing about the scope of the bindings
295
296 tcPolyBinds top_lvl sig_fn prag_fn rec_group rec_tc binds
297   = let 
298         bind_list    = bagToList binds
299         binder_names = collectHsBindBinders binds
300         loc          = getLoc (head bind_list)
301                 -- TODO: location a bit awkward, but the mbinds have been
302                 --       dependency analysed and may no longer be adjacent
303     in
304         -- SET UP THE MAIN RECOVERY; take advantage of any type sigs
305     setSrcSpan loc                              $
306     recoverM (recoveryCode binder_names sig_fn) $ do 
307
308   { traceTc (ptext SLIT("------------------------------------------------"))
309   ; traceTc (ptext SLIT("Bindings for") <+> ppr binder_names)
310
311         -- TYPECHECK THE BINDINGS
312   ; ((binds', mono_bind_infos), lie_req) 
313         <- getLIE (tcMonoBinds bind_list sig_fn rec_tc)
314   ; traceTc (text "temp" <+> (ppr binds' $$ ppr lie_req))
315
316         -- CHECK FOR UNLIFTED BINDINGS
317         -- These must be non-recursive etc, and are not generalised
318         -- They desugar to a case expression in the end
319   ; zonked_mono_tys <- zonkTcTypes (map getMonoType mono_bind_infos)
320   ; is_strict <- checkStrictBinds top_lvl rec_group binds' 
321                                   zonked_mono_tys mono_bind_infos
322   ; if is_strict then
323     do  { extendLIEs lie_req
324         ; let exports = zipWith mk_export mono_bind_infos zonked_mono_tys
325               mk_export (name, Nothing,  mono_id) mono_ty = ([], mkLocalId name mono_ty, mono_id, [])
326               mk_export (name, Just sig, mono_id) mono_ty = ([], sig_id sig,             mono_id, [])
327                         -- ToDo: prags for unlifted bindings
328
329         ; return ( [unitBag $ L loc $ AbsBinds [] [] exports binds'],
330                    [poly_id | (_, poly_id, _, _) <- exports]) } -- Guaranteed zonked
331
332     else do     -- The normal lifted case: GENERALISE
333   { dflags <- getDOpts 
334   ; (tyvars_to_gen, dicts, dict_binds)
335         <- addErrCtxt (genCtxt (bndrNames mono_bind_infos)) $
336            generalise dflags top_lvl bind_list sig_fn mono_bind_infos lie_req
337
338         -- BUILD THE POLYMORPHIC RESULT IDs
339   ; let dict_ids = map instToId dicts
340   ; exports <- mapM (mkExport prag_fn tyvars_to_gen (map idType dict_ids))
341                     mono_bind_infos
342
343   ; let poly_ids = [poly_id | (_, poly_id, _, _) <- exports]
344   ; traceTc (text "binding:" <+> ppr (poly_ids `zip` map idType poly_ids))
345
346   ; let abs_bind = L loc $ AbsBinds tyvars_to_gen
347                                     dict_ids exports
348                                     (dict_binds `unionBags` binds')
349
350   ; return ([unitBag abs_bind], poly_ids)       -- poly_ids are guaranteed zonked by mkExport
351   } }
352
353
354 --------------
355 mkExport :: TcPragFun -> [TyVar] -> [TcType] -> MonoBindInfo
356          -> TcM ([TyVar], Id, Id, [LPrag])
357 -- mkExport generates exports with 
358 --      zonked type variables, 
359 --      zonked poly_ids
360 -- The former is just because no further unifications will change
361 -- the quantified type variables, so we can fix their final form
362 -- right now.
363 -- The latter is needed because the poly_ids are used to extend the
364 -- type environment; see the invariant on TcEnv.tcExtendIdEnv 
365
366 -- Pre-condition: the inferred_tvs are already zonked
367
368 mkExport prag_fn inferred_tvs dict_tys (poly_name, mb_sig, mono_id)
369   = do  { (tvs, poly_id) <- mk_poly_id mb_sig
370
371         ; poly_id' <- zonkId poly_id
372         ; prags <- tcPrags poly_id' (prag_fn poly_name)
373                 -- tcPrags requires a zonked poly_id
374
375         ; return (tvs, poly_id', mono_id, prags) }
376   where
377     poly_ty = mkForAllTys inferred_tvs (mkFunTys dict_tys (idType mono_id))
378
379     mk_poly_id Nothing    = return (inferred_tvs, mkLocalId poly_name poly_ty)
380     mk_poly_id (Just sig) = do { tvs <- mapM zonk_tv (sig_tvs sig)
381                                ; return (tvs,  sig_id sig) }
382
383     zonk_tv tv = do { ty <- zonkTcTyVar tv; return (tcGetTyVar "mkExport" ty) }
384
385 ------------------------
386 type TcPragFun = Name -> [LSig Name]
387
388 mkPragFun :: [LSig Name] -> TcPragFun
389 mkPragFun sigs = \n -> lookupNameEnv env n `orElse` []
390         where
391           prs = [(expectJust "mkPragFun" (sigName sig), sig) 
392                 | sig <- sigs, isPragLSig sig]
393           env = foldl add emptyNameEnv prs
394           add env (n,p) = extendNameEnv_Acc (:) singleton env n p
395
396 tcPrags :: Id -> [LSig Name] -> TcM [LPrag]
397 tcPrags poly_id prags = mapM (wrapLocM tc_prag) prags
398   where
399     tc_prag prag = addErrCtxt (pragSigCtxt prag) $ 
400                    tcPrag poly_id prag
401
402 pragSigCtxt prag = hang (ptext SLIT("In the pragma")) 2 (ppr prag)
403
404 tcPrag :: TcId -> Sig Name -> TcM Prag
405 -- Pre-condition: the poly_id is zonked
406 -- Reason: required by tcSubExp
407 tcPrag poly_id (SpecSig orig_name hs_ty inl) = tcSpecPrag poly_id hs_ty inl
408 tcPrag poly_id (SpecInstSig hs_ty)           = tcSpecPrag poly_id hs_ty defaultInlineSpec
409 tcPrag poly_id (InlineSig v inl)             = return (InlinePrag inl)
410
411
412 tcSpecPrag :: TcId -> LHsType Name -> InlineSpec -> TcM Prag
413 tcSpecPrag poly_id hs_ty inl
414   = do  { spec_ty <- tcHsSigType (FunSigCtxt (idName poly_id)) hs_ty
415         ; (co_fn, lie) <- getLIE (tcSubExp (idType poly_id) spec_ty)
416         ; extendLIEs lie
417         ; let const_dicts = map instToId lie
418         ; return (SpecPrag (mkHsWrap co_fn (HsVar poly_id)) spec_ty const_dicts inl) }
419         -- Most of the work of specialisation is done by 
420         -- the desugarer, guided by the SpecPrag
421   
422 --------------
423 -- If typechecking the binds fails, then return with each
424 -- signature-less binder given type (forall a.a), to minimise 
425 -- subsequent error messages
426 recoveryCode binder_names sig_fn
427   = do  { traceTc (text "tcBindsWithSigs: error recovery" <+> ppr binder_names)
428         ; poly_ids <- mapM mk_dummy binder_names
429         ; return ([], poly_ids) }
430   where
431     mk_dummy name 
432         | isJust (sig_fn name) = tcLookupId name        -- Had signature; look it up
433         | otherwise            = return (mkLocalId name forall_a_a)    -- No signature
434
435 forall_a_a :: TcType
436 forall_a_a = mkForAllTy alphaTyVar (mkTyVarTy alphaTyVar)
437
438
439 -- Check that non-overloaded unlifted bindings are
440 --      a) non-recursive,
441 --      b) not top level, 
442 --      c) not a multiple-binding group (more or less implied by (a))
443
444 checkStrictBinds :: TopLevelFlag -> RecFlag
445                  -> LHsBinds TcId -> [TcType] -> [MonoBindInfo]
446                  -> TcM Bool
447 checkStrictBinds top_lvl rec_group mbind mono_tys infos
448   | unlifted || bang_pat
449   = do  { checkTc (isNotTopLevel top_lvl)
450                   (strictBindErr "Top-level" unlifted mbind)
451         ; checkTc (isNonRec rec_group)
452                   (strictBindErr "Recursive" unlifted mbind)
453         ; checkTc (isSingletonBag mbind)
454                   (strictBindErr "Multiple" unlifted mbind) 
455         ; mapM_ check_sig infos
456         ; return True }
457   | otherwise
458   = return False
459   where
460     unlifted = any isUnLiftedType mono_tys
461     bang_pat = anyBag (isBangHsBind . unLoc) mbind
462     check_sig (_, Just sig, _) = checkTc (null (sig_tvs sig) && null (sig_theta sig))
463                                          (badStrictSig unlifted sig)
464     check_sig other            = return ()
465
466 strictBindErr flavour unlifted mbind
467   = hang (text flavour <+> msg <+> ptext SLIT("aren't allowed:")) 
468          4 (pprLHsBinds mbind)
469   where
470     msg | unlifted  = ptext SLIT("bindings for unlifted types")
471         | otherwise = ptext SLIT("bang-pattern bindings")
472
473 badStrictSig unlifted sig
474   = hang (ptext SLIT("Illegal polymorphic signature in") <+> msg)
475          4 (ppr sig)
476   where
477     msg | unlifted  = ptext SLIT("an unlifted binding")
478         | otherwise = ptext SLIT("a bang-pattern binding")
479 \end{code}
480
481
482 %************************************************************************
483 %*                                                                      *
484 \subsection{tcMonoBind}
485 %*                                                                      *
486 %************************************************************************
487
488 @tcMonoBinds@ deals with a perhaps-recursive group of HsBinds.
489 The signatures have been dealt with already.
490
491 \begin{code}
492 tcMonoBinds :: [LHsBind Name]
493             -> TcSigFun
494             -> RecFlag  -- Whether the binding is recursive for typechecking purposes
495                         -- i.e. the binders are mentioned in their RHSs, and
496                         --      we are not resuced by a type signature
497             -> TcM (LHsBinds TcId, [MonoBindInfo])
498
499 tcMonoBinds [L b_loc (FunBind { fun_id = L nm_loc name, fun_infix = inf, 
500                                 fun_matches = matches, bind_fvs = fvs })]
501             sig_fn              -- Single function binding,
502             NonRecursive        -- binder isn't mentioned in RHS,
503   | Nothing <- sig_fn name      -- ...with no type signature
504   =     -- In this very special case we infer the type of the
505         -- right hand side first (it may have a higher-rank type)
506         -- and *then* make the monomorphic Id for the LHS
507         -- e.g.         f = \(x::forall a. a->a) -> <body>
508         --      We want to infer a higher-rank type for f
509     setSrcSpan b_loc    $
510     do  { ((co_fn, matches'), rhs_ty) <- tcInfer (tcMatchesFun name matches)
511
512                 -- Check for an unboxed tuple type
513                 --      f = (# True, False #)
514                 -- Zonk first just in case it's hidden inside a meta type variable
515                 -- (This shows up as a (more obscure) kind error 
516                 --  in the 'otherwise' case of tcMonoBinds.)
517         ; zonked_rhs_ty <- zonkTcType rhs_ty
518         ; checkTc (not (isUnboxedTupleType zonked_rhs_ty))
519                   (unboxedTupleErr name zonked_rhs_ty)
520
521         ; mono_name <- newLocalName name
522         ; let mono_id = mkLocalId mono_name zonked_rhs_ty
523         ; return (unitBag (L b_loc (FunBind { fun_id = L nm_loc mono_id, fun_infix = inf,
524                                               fun_matches = matches', bind_fvs = fvs,
525                                               fun_co_fn = co_fn, fun_tick = Nothing })),
526                   [(name, Nothing, mono_id)]) }
527
528 tcMonoBinds [L b_loc (FunBind { fun_id = L nm_loc name, fun_infix = inf, 
529                                 fun_matches = matches, bind_fvs = fvs })]
530             sig_fn              -- Single function binding
531             non_rec     
532   | Just scoped_tvs <- sig_fn name      -- ...with a type signature
533   =     -- When we have a single function binding, with a type signature
534         -- we can (a) use genuine, rigid skolem constants for the type variables
535         --        (b) bring (rigid) scoped type variables into scope
536     setSrcSpan b_loc    $
537     do  { tc_sig <- tcInstSig True name scoped_tvs
538         ; mono_name <- newLocalName name
539         ; let mono_ty = sig_tau tc_sig
540               mono_id = mkLocalId mono_name mono_ty
541               rhs_tvs = [ (name, mkTyVarTy tv)
542                         | (name, tv) <- sig_scoped tc_sig `zip` sig_tvs tc_sig ]
543
544         ; (co_fn, matches') <- tcExtendTyVarEnv2 rhs_tvs    $
545                                tcMatchesFun mono_name matches mono_ty
546
547         ; let fun_bind' = FunBind { fun_id = L nm_loc mono_id, 
548                                     fun_infix = inf, fun_matches = matches',
549                                     bind_fvs = placeHolderNames, fun_co_fn = co_fn, 
550                                     fun_tick = Nothing }
551         ; return (unitBag (L b_loc fun_bind'),
552                   [(name, Just tc_sig, mono_id)]) }
553
554 tcMonoBinds binds sig_fn non_rec
555   = do  { tc_binds <- mapM (wrapLocM (tcLhs sig_fn)) binds
556
557         -- Bring the monomorphic Ids, into scope for the RHSs
558         ; let mono_info  = getMonoBindInfo tc_binds
559               rhs_id_env = [(name,mono_id) | (name, Nothing, mono_id) <- mono_info]
560                                 -- A monomorphic binding for each term variable that lacks 
561                                 -- a type sig.  (Ones with a sig are already in scope.)
562
563         ; binds' <- tcExtendIdEnv2    rhs_id_env $
564                     traceTc (text "tcMonoBinds" <+> vcat [ ppr n <+> ppr id <+> ppr (idType id) 
565                                                          | (n,id) <- rhs_id_env]) `thenM_`
566                     mapM (wrapLocM tcRhs) tc_binds
567         ; return (listToBag binds', mono_info) }
568
569 ------------------------
570 -- tcLhs typechecks the LHS of the bindings, to construct the environment in which
571 -- we typecheck the RHSs.  Basically what we are doing is this: for each binder:
572 --      if there's a signature for it, use the instantiated signature type
573 --      otherwise invent a type variable
574 -- You see that quite directly in the FunBind case.
575 -- 
576 -- But there's a complication for pattern bindings:
577 --      data T = MkT (forall a. a->a)
578 --      MkT f = e
579 -- Here we can guess a type variable for the entire LHS (which will be refined to T)
580 -- but we want to get (f::forall a. a->a) as the RHS environment.
581 -- The simplest way to do this is to typecheck the pattern, and then look up the
582 -- bound mono-ids.  Then we want to retain the typechecked pattern to avoid re-doing
583 -- it; hence the TcMonoBind data type in which the LHS is done but the RHS isn't
584
585 data TcMonoBind         -- Half completed; LHS done, RHS not done
586   = TcFunBind  MonoBindInfo  (Located TcId) Bool (MatchGroup Name) 
587   | TcPatBind [MonoBindInfo] (LPat TcId) (GRHSs Name) TcSigmaType
588
589 type MonoBindInfo = (Name, Maybe TcSigInfo, TcId)
590         -- Type signature (if any), and
591         -- the monomorphic bound things
592
593 bndrNames :: [MonoBindInfo] -> [Name]
594 bndrNames mbi = [n | (n,_,_) <- mbi]
595
596 getMonoType :: MonoBindInfo -> TcTauType
597 getMonoType (_,_,mono_id) = idType mono_id
598
599 tcLhs :: TcSigFun -> HsBind Name -> TcM TcMonoBind
600 tcLhs sig_fn (FunBind { fun_id = L nm_loc name, fun_infix = inf, fun_matches = matches })
601   = do  { mb_sig <- tcInstSig_maybe sig_fn name
602         ; mono_name <- newLocalName name
603         ; mono_ty   <- mk_mono_ty mb_sig
604         ; let mono_id = mkLocalId mono_name mono_ty
605         ; return (TcFunBind (name, mb_sig, mono_id) (L nm_loc mono_id) inf matches) }
606   where
607     mk_mono_ty (Just sig) = return (sig_tau sig)
608     mk_mono_ty Nothing    = newFlexiTyVarTy argTypeKind
609
610 tcLhs sig_fn bind@(PatBind { pat_lhs = pat, pat_rhs = grhss })
611   = do  { mb_sigs <- mapM (tcInstSig_maybe sig_fn) names
612         ; mono_pat_binds <- doptM Opt_MonoPatBinds
613                 -- With -fmono-pat-binds, we do no generalisation of pattern bindings
614                 -- But the signature can still be polymoprhic!
615                 --      data T = MkT (forall a. a->a)
616                 --      x :: forall a. a->a
617                 --      MkT x = <rhs>
618                 -- The function get_sig_ty decides whether the pattern-bound variables
619                 -- should have exactly the type in the type signature (-fmono-pat-binds), 
620                 -- or the instantiated version (-fmono-pat-binds)
621
622         ; let nm_sig_prs  = names `zip` mb_sigs
623               get_sig_ty | mono_pat_binds = idType . sig_id
624                          | otherwise      = sig_tau
625               tau_sig_env = mkNameEnv [ (name, get_sig_ty sig) 
626                                       | (name, Just sig) <- nm_sig_prs]
627               sig_tau_fn  = lookupNameEnv tau_sig_env
628
629               tc_pat exp_ty = tcLetPat sig_tau_fn pat exp_ty $
630                               mapM lookup_info nm_sig_prs
631
632                 -- After typechecking the pattern, look up the binder
633                 -- names, which the pattern has brought into scope.
634               lookup_info :: (Name, Maybe TcSigInfo) -> TcM MonoBindInfo
635               lookup_info (name, mb_sig) = do { mono_id <- tcLookupId name
636                                               ; return (name, mb_sig, mono_id) }
637
638         ; ((pat', infos), pat_ty) <- addErrCtxt (patMonoBindsCtxt pat grhss) $
639                                      tcInfer tc_pat
640
641         ; return (TcPatBind infos pat' grhss pat_ty) }
642   where
643     names = collectPatBinders pat
644
645
646 tcLhs sig_fn other_bind = pprPanic "tcLhs" (ppr other_bind)
647         -- AbsBind, VarBind impossible
648
649 -------------------
650 tcRhs :: TcMonoBind -> TcM (HsBind TcId)
651 tcRhs (TcFunBind info fun'@(L _ mono_id) inf matches)
652   = do  { (co_fn, matches') <- tcMatchesFun (idName mono_id) matches 
653                                             (idType mono_id)
654         ; return (FunBind { fun_id = fun', fun_infix = inf, fun_matches = matches',
655                             bind_fvs = placeHolderNames, fun_co_fn = co_fn,
656                             fun_tick = Nothing }) }
657
658 tcRhs bind@(TcPatBind _ pat' grhss pat_ty)
659   = do  { grhss' <- addErrCtxt (patMonoBindsCtxt pat' grhss) $
660                     tcGRHSsPat grhss pat_ty
661         ; return (PatBind { pat_lhs = pat', pat_rhs = grhss', pat_rhs_ty = pat_ty, 
662                             bind_fvs = placeHolderNames }) }
663
664
665 ---------------------
666 getMonoBindInfo :: [Located TcMonoBind] -> [MonoBindInfo]
667 getMonoBindInfo tc_binds
668   = foldr (get_info . unLoc) [] tc_binds
669   where
670     get_info (TcFunBind info _ _ _)  rest = info : rest
671     get_info (TcPatBind infos _ _ _) rest = infos ++ rest
672 \end{code}
673
674
675 %************************************************************************
676 %*                                                                      *
677                 Generalisation
678 %*                                                                      *
679 %************************************************************************
680
681 \begin{code}
682 generalise :: DynFlags -> TopLevelFlag 
683            -> [LHsBind Name] -> TcSigFun 
684            -> [MonoBindInfo] -> [Inst]
685            -> TcM ([TyVar], [Inst], TcDictBinds)
686 -- The returned [TyVar] are all ready to quantify
687
688 generalise dflags top_lvl bind_list sig_fn mono_infos lie_req
689   | isMonoGroup dflags bind_list
690   = do  { extendLIEs lie_req
691         ; return ([], [], emptyBag) }
692
693   | isRestrictedGroup dflags bind_list sig_fn   -- RESTRICTED CASE
694   =     -- Check signature contexts are empty 
695     do  { checkTc (all is_mono_sig sigs)
696                   (restrictedBindCtxtErr bndrs)
697
698         -- Now simplify with exactly that set of tyvars
699         -- We have to squash those Methods
700         ; (qtvs, binds) <- tcSimplifyRestricted doc top_lvl bndrs 
701                                                 tau_tvs lie_req
702
703         -- Check that signature type variables are OK
704         ; final_qtvs <- checkSigsTyVars qtvs sigs
705
706         ; return (final_qtvs, [], binds) }
707
708   | null sigs   -- UNRESTRICTED CASE, NO TYPE SIGS
709   = tcSimplifyInfer doc tau_tvs lie_req
710
711   | otherwise   -- UNRESTRICTED CASE, WITH TYPE SIGS
712   = do  { sig_lie <- unifyCtxts sigs    -- sigs is non-empty; sig_lie is zonked
713         ; let   -- The "sig_avails" is the stuff available.  We get that from
714                 -- the context of the type signature, BUT ALSO the lie_avail
715                 -- so that polymorphic recursion works right (see Note [Polymorphic recursion])
716                 local_meths = [mkMethInst sig mono_id | (_, Just sig, mono_id) <- mono_infos]
717                 sig_avails = sig_lie ++ local_meths
718                 loc = sig_loc (head sigs)
719
720         -- Check that the needed dicts can be
721         -- expressed in terms of the signature ones
722         ; (qtvs, binds) <- tcSimplifyInferCheck loc tau_tvs sig_avails lie_req
723         
724         -- Check that signature type variables are OK
725         ; final_qtvs <- checkSigsTyVars qtvs sigs
726
727         ; returnM (final_qtvs, sig_lie, binds) }
728   where
729     bndrs   = bndrNames mono_infos
730     sigs    = [sig | (_, Just sig, _) <- mono_infos]
731     tau_tvs = foldr (unionVarSet . exactTyVarsOfType . getMonoType) emptyVarSet mono_infos
732                 -- NB: exactTyVarsOfType; see Note [Silly type synonym] 
733                 --     near defn of TcType.exactTyVarsOfType
734     is_mono_sig sig = null (sig_theta sig)
735     doc = ptext SLIT("type signature(s) for") <+> pprBinders bndrs
736
737     mkMethInst (TcSigInfo { sig_id = poly_id, sig_tvs = tvs, 
738                             sig_theta = theta, sig_loc = loc }) mono_id
739       = Method {tci_id = mono_id, tci_oid = poly_id, tci_tys = mkTyVarTys tvs,
740                 tci_theta = theta, tci_loc = loc}
741 \end{code}
742
743 unifyCtxts checks that all the signature contexts are the same
744 The type signatures on a mutually-recursive group of definitions
745 must all have the same context (or none).
746
747 The trick here is that all the signatures should have the same
748 context, and we want to share type variables for that context, so that
749 all the right hand sides agree a common vocabulary for their type
750 constraints
751
752 We unify them because, with polymorphic recursion, their types
753 might not otherwise be related.  This is a rather subtle issue.
754
755 \begin{code}
756 unifyCtxts :: [TcSigInfo] -> TcM [Inst]
757 -- Post-condition: the returned Insts are full zonked
758 unifyCtxts (sig1 : sigs)        -- Argument is always non-empty
759   = do  { mapM unify_ctxt sigs
760         ; theta <- zonkTcThetaType (sig_theta sig1)
761         ; newDictBndrs (sig_loc sig1) theta }
762   where
763     theta1 = sig_theta sig1
764     unify_ctxt :: TcSigInfo -> TcM ()
765     unify_ctxt sig@(TcSigInfo { sig_theta = theta })
766         = setSrcSpan (instLocSpan (sig_loc sig))        $
767           addErrCtxt (sigContextsCtxt sig1 sig)         $
768           unifyTheta theta1 theta
769
770 checkSigsTyVars :: [TcTyVar] -> [TcSigInfo] -> TcM [TcTyVar]
771 checkSigsTyVars qtvs sigs 
772   = do  { gbl_tvs <- tcGetGlobalTyVars
773         ; sig_tvs_s <- mappM (check_sig gbl_tvs) sigs
774
775         ; let   -- Sigh.  Make sure that all the tyvars in the type sigs
776                 -- appear in the returned ty var list, which is what we are
777                 -- going to generalise over.  Reason: we occasionally get
778                 -- silly types like
779                 --      type T a = () -> ()
780                 --      f :: T a
781                 --      f () = ()
782                 -- Here, 'a' won't appear in qtvs, so we have to add it
783                 sig_tvs = foldl extendVarSetList emptyVarSet sig_tvs_s
784                 all_tvs = varSetElems (extendVarSetList sig_tvs qtvs)
785         ; returnM all_tvs }
786   where
787     check_sig gbl_tvs (TcSigInfo {sig_id = id, sig_tvs = tvs, 
788                                   sig_theta = theta, sig_tau = tau})
789       = addErrCtxt (ptext SLIT("In the type signature for") <+> quotes (ppr id))        $
790         addErrCtxtM (sigCtxt id tvs theta tau)                                          $
791         do { tvs' <- checkDistinctTyVars tvs
792            ; ifM (any (`elemVarSet` gbl_tvs) tvs')
793                  (bleatEscapedTvs gbl_tvs tvs tvs') 
794            ; return tvs' }
795
796 checkDistinctTyVars :: [TcTyVar] -> TcM [TcTyVar]
797 -- (checkDistinctTyVars tvs) checks that the tvs from one type signature
798 -- are still all type variables, and all distinct from each other.  
799 -- It returns a zonked set of type variables.
800 -- For example, if the type sig is
801 --      f :: forall a b. a -> b -> b
802 -- we want to check that 'a' and 'b' haven't 
803 --      (a) been unified with a non-tyvar type
804 --      (b) been unified with each other (all distinct)
805
806 checkDistinctTyVars sig_tvs
807   = do  { zonked_tvs <- mapM zonkSigTyVar sig_tvs
808         ; foldlM check_dup emptyVarEnv (sig_tvs `zip` zonked_tvs)
809         ; return zonked_tvs }
810   where
811     check_dup :: TyVarEnv TcTyVar -> (TcTyVar, TcTyVar) -> TcM (TyVarEnv TcTyVar)
812         -- The TyVarEnv maps each zonked type variable back to its
813         -- corresponding user-written signature type variable
814     check_dup acc (sig_tv, zonked_tv)
815         = case lookupVarEnv acc zonked_tv of
816                 Just sig_tv' -> bomb_out sig_tv sig_tv'
817
818                 Nothing -> return (extendVarEnv acc zonked_tv sig_tv)
819
820     bomb_out sig_tv1 sig_tv2
821        = do { env0 <- tcInitTidyEnv
822             ; let (env1, tidy_tv1) = tidyOpenTyVar env0 sig_tv1
823                   (env2, tidy_tv2) = tidyOpenTyVar env1 sig_tv2
824                   msg = ptext SLIT("Quantified type variable") <+> quotes (ppr tidy_tv1) 
825                          <+> ptext SLIT("is unified with another quantified type variable") 
826                          <+> quotes (ppr tidy_tv2)
827             ; failWithTcM (env2, msg) }
828        where
829 \end{code}
830
831
832 @getTyVarsToGen@ decides what type variables to generalise over.
833
834 For a "restricted group" -- see the monomorphism restriction
835 for a definition -- we bind no dictionaries, and
836 remove from tyvars_to_gen any constrained type variables
837
838 *Don't* simplify dicts at this point, because we aren't going
839 to generalise over these dicts.  By the time we do simplify them
840 we may well know more.  For example (this actually came up)
841         f :: Array Int Int
842         f x = array ... xs where xs = [1,2,3,4,5]
843 We don't want to generate lots of (fromInt Int 1), (fromInt Int 2)
844 stuff.  If we simplify only at the f-binding (not the xs-binding)
845 we'll know that the literals are all Ints, and we can just produce
846 Int literals!
847
848 Find all the type variables involved in overloading, the
849 "constrained_tyvars".  These are the ones we *aren't* going to
850 generalise.  We must be careful about doing this:
851
852  (a) If we fail to generalise a tyvar which is not actually
853         constrained, then it will never, ever get bound, and lands
854         up printed out in interface files!  Notorious example:
855                 instance Eq a => Eq (Foo a b) where ..
856         Here, b is not constrained, even though it looks as if it is.
857         Another, more common, example is when there's a Method inst in
858         the LIE, whose type might very well involve non-overloaded
859         type variables.
860   [NOTE: Jan 2001: I don't understand the problem here so I'm doing 
861         the simple thing instead]
862
863  (b) On the other hand, we mustn't generalise tyvars which are constrained,
864         because we are going to pass on out the unmodified LIE, with those
865         tyvars in it.  They won't be in scope if we've generalised them.
866
867 So we are careful, and do a complete simplification just to find the
868 constrained tyvars. We don't use any of the results, except to
869 find which tyvars are constrained.
870
871 Note [Polymorphic recursion]
872 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
873 The game plan for polymorphic recursion in the code above is 
874
875         * Bind any variable for which we have a type signature
876           to an Id with a polymorphic type.  Then when type-checking 
877           the RHSs we'll make a full polymorphic call.
878
879 This fine, but if you aren't a bit careful you end up with a horrendous
880 amount of partial application and (worse) a huge space leak. For example:
881
882         f :: Eq a => [a] -> [a]
883         f xs = ...f...
884
885 If we don't take care, after typechecking we get
886
887         f = /\a -> \d::Eq a -> let f' = f a d
888                                in
889                                \ys:[a] -> ...f'...
890
891 Notice the the stupid construction of (f a d), which is of course
892 identical to the function we're executing.  In this case, the
893 polymorphic recursion isn't being used (but that's a very common case).
894 This can lead to a massive space leak, from the following top-level defn
895 (post-typechecking)
896
897         ff :: [Int] -> [Int]
898         ff = f Int dEqInt
899
900 Now (f dEqInt) evaluates to a lambda that has f' as a free variable; but
901 f' is another thunk which evaluates to the same thing... and you end
902 up with a chain of identical values all hung onto by the CAF ff.
903
904         ff = f Int dEqInt
905
906            = let f' = f Int dEqInt in \ys. ...f'...
907
908            = let f' = let f' = f Int dEqInt in \ys. ...f'...
909                       in \ys. ...f'...
910
911 Etc.
912
913 NOTE: a bit of arity anaysis would push the (f a d) inside the (\ys...),
914 which would make the space leak go away in this case
915
916 Solution: when typechecking the RHSs we always have in hand the
917 *monomorphic* Ids for each binding.  So we just need to make sure that
918 if (Method f a d) shows up in the constraints emerging from (...f...)
919 we just use the monomorphic Id.  We achieve this by adding monomorphic Ids
920 to the "givens" when simplifying constraints.  That's what the "lies_avail"
921 is doing.
922
923 Then we get
924
925         f = /\a -> \d::Eq a -> letrec
926                                  fm = \ys:[a] -> ...fm...
927                                in
928                                fm
929
930
931
932 %************************************************************************
933 %*                                                                      *
934                 Signatures
935 %*                                                                      *
936 %************************************************************************
937
938 Type signatures are tricky.  See Note [Signature skolems] in TcType
939
940 @tcSigs@ checks the signatures for validity, and returns a list of
941 {\em freshly-instantiated} signatures.  That is, the types are already
942 split up, and have fresh type variables installed.  All non-type-signature
943 "RenamedSigs" are ignored.
944
945 The @TcSigInfo@ contains @TcTypes@ because they are unified with
946 the variable's type, and after that checked to see whether they've
947 been instantiated.
948
949 \begin{code}
950 type TcSigFun = Name -> Maybe [Name]    -- Maps a let-binder to the list of
951                                         -- type variables brought into scope
952                                         -- by its type signature.
953                                         -- Nothing => no type signature
954
955 mkTcSigFun :: [LSig Name] -> TcSigFun
956 -- Search for a particular type signature
957 -- Precondition: the sigs are all type sigs
958 -- Precondition: no duplicates
959 mkTcSigFun sigs = lookupNameEnv env
960   where
961     env = mkNameEnv [(name, hsExplicitTvs lhs_ty)
962                     | L span (TypeSig (L _ name) lhs_ty) <- sigs]
963         -- The scoped names are the ones explicitly mentioned
964         -- in the HsForAll.  (There may be more in sigma_ty, because
965         -- of nested type synonyms.  See Note [Scoped] with TcSigInfo.)
966         -- See Note [Only scoped tyvars are in the TyVarEnv]
967
968 ---------------
969 data TcSigInfo
970   = TcSigInfo {
971         sig_id     :: TcId,             --  *Polymorphic* binder for this value...
972
973         sig_scoped :: [Name],           -- Names for any scoped type variables
974                                         -- Invariant: correspond 1-1 with an initial
975                                         -- segment of sig_tvs (see Note [Scoped])
976
977         sig_tvs    :: [TcTyVar],        -- Instantiated type variables
978                                         -- See Note [Instantiate sig]
979
980         sig_theta  :: TcThetaType,      -- Instantiated theta
981         sig_tau    :: TcTauType,        -- Instantiated tau
982         sig_loc    :: InstLoc           -- The location of the signature
983     }
984
985
986 --      Note [Only scoped tyvars are in the TyVarEnv]
987 -- We are careful to keep only the *lexically scoped* type variables in
988 -- the type environment.  Why?  After all, the renamer has ensured
989 -- that only legal occurrences occur, so we could put all type variables
990 -- into the type env.
991 --
992 -- But we want to check that two distinct lexically scoped type variables
993 -- do not map to the same internal type variable.  So we need to know which
994 -- the lexically-scoped ones are... and at the moment we do that by putting
995 -- only the lexically scoped ones into the environment.
996
997
998 --      Note [Scoped]
999 -- There may be more instantiated type variables than scoped 
1000 -- ones.  For example:
1001 --      type T a = forall b. b -> (a,b)
1002 --      f :: forall c. T c
1003 -- Here, the signature for f will have one scoped type variable, c,
1004 -- but two instantiated type variables, c' and b'.  
1005 --
1006 -- We assume that the scoped ones are at the *front* of sig_tvs,
1007 -- and remember the names from the original HsForAllTy in sig_scoped
1008
1009 --      Note [Instantiate sig]
1010 -- It's vital to instantiate a type signature with fresh variables.
1011 -- For example:
1012 --      type S = forall a. a->a
1013 --      f,g :: S
1014 --      f = ...
1015 --      g = ...
1016 -- Here, we must use distinct type variables when checking f,g's right hand sides.
1017 -- (Instantiation is only necessary because of type synonyms.  Otherwise,
1018 -- it's all cool; each signature has distinct type variables from the renamer.)
1019
1020 instance Outputable TcSigInfo where
1021     ppr (TcSigInfo { sig_id = id, sig_tvs = tyvars, sig_theta = theta, sig_tau = tau})
1022         = ppr id <+> ptext SLIT("::") <+> ppr tyvars <+> ppr theta <+> ptext SLIT("=>") <+> ppr tau
1023 \end{code}
1024
1025 \begin{code}
1026 tcTySig :: LSig Name -> TcM TcId
1027 tcTySig (L span (TypeSig (L _ name) ty))
1028   = setSrcSpan span             $
1029     do  { sigma_ty <- tcHsSigType (FunSigCtxt name) ty
1030         ; return (mkLocalId name sigma_ty) }
1031
1032 -------------------
1033 tcInstSig_maybe :: TcSigFun -> Name -> TcM (Maybe TcSigInfo)
1034 -- Instantiate with *meta* type variables; 
1035 -- this signature is part of a multi-signature group
1036 tcInstSig_maybe sig_fn name 
1037   = case sig_fn name of
1038         Nothing  -> return Nothing
1039         Just tvs -> do  { tc_sig <- tcInstSig False name tvs
1040                         ; return (Just tc_sig) }
1041
1042 tcInstSig :: Bool -> Name -> [Name] -> TcM TcSigInfo
1043 -- Instantiate the signature, with either skolems or meta-type variables
1044 -- depending on the use_skols boolean.  This variable is set True
1045 -- when we are typechecking a single function binding; and False for
1046 -- pattern bindings and a group of several function bindings.
1047 -- Reason: in the latter cases, the "skolems" can be unified together, 
1048 --         so they aren't properly rigid in the type-refinement sense.
1049 -- NB: unless we are doing H98, each function with a sig will be done
1050 --     separately, even if it's mutually recursive, so use_skols will be True
1051 --
1052 -- We always instantiate with fresh uniques,
1053 -- although we keep the same print-name
1054 --      
1055 --      type T = forall a. [a] -> [a]
1056 --      f :: T; 
1057 --      f = g where { g :: T; g = <rhs> }
1058 --
1059 -- We must not use the same 'a' from the defn of T at both places!!
1060
1061 tcInstSig use_skols name scoped_names
1062   = do  { poly_id <- tcLookupId name    -- Cannot fail; the poly ids are put into 
1063                                         -- scope when starting the binding group
1064         ; let skol_info = SigSkol (FunSigCtxt name)
1065               inst_tyvars = tcInstSigTyVars use_skols skol_info
1066         ; (tvs, theta, tau) <- tcInstType inst_tyvars (idType poly_id)
1067         ; loc <- getInstLoc (SigOrigin skol_info)
1068         ; return (TcSigInfo { sig_id = poly_id,
1069                               sig_tvs = tvs, sig_theta = theta, sig_tau = tau, 
1070                               sig_scoped = final_scoped_names, sig_loc = loc }) }
1071                 -- Note that the scoped_names and the sig_tvs will have
1072                 -- different Names. That's quite ok; when we bring the 
1073                 -- scoped_names into scope, we just bind them to the sig_tvs
1074   where
1075         -- We also only have scoped type variables when we are instantiating
1076         -- with true skolems
1077     final_scoped_names | use_skols = scoped_names
1078                        | otherwise = []
1079
1080 -------------------
1081 isMonoGroup :: DynFlags -> [LHsBind Name] -> Bool
1082 -- No generalisation at all
1083 isMonoGroup dflags binds
1084   = dopt Opt_MonoPatBinds dflags && any is_pat_bind binds
1085   where
1086     is_pat_bind (L _ (PatBind {})) = True
1087     is_pat_bind other              = False
1088
1089 -------------------
1090 isRestrictedGroup :: DynFlags -> [LHsBind Name] -> TcSigFun -> Bool
1091 isRestrictedGroup dflags binds sig_fn
1092   = mono_restriction && not all_unrestricted
1093   where 
1094     mono_restriction = dopt Opt_MonomorphismRestriction dflags
1095     all_unrestricted = all (unrestricted . unLoc) binds
1096     has_sig n = isJust (sig_fn n)
1097
1098     unrestricted (PatBind {})                                    = False
1099     unrestricted (VarBind { var_id = v })                        = has_sig v
1100     unrestricted (FunBind { fun_id = v, fun_matches = matches }) = unrestricted_match matches 
1101                                                                  || has_sig (unLoc v)
1102
1103     unrestricted_match (MatchGroup (L _ (Match [] _ _) : _) _) = False
1104         -- No args => like a pattern binding
1105     unrestricted_match other              = True
1106         -- Some args => a function binding
1107 \end{code}
1108
1109
1110 %************************************************************************
1111 %*                                                                      *
1112 \subsection[TcBinds-errors]{Error contexts and messages}
1113 %*                                                                      *
1114 %************************************************************************
1115
1116
1117 \begin{code}
1118 -- This one is called on LHS, when pat and grhss are both Name 
1119 -- and on RHS, when pat is TcId and grhss is still Name
1120 patMonoBindsCtxt pat grhss
1121   = hang (ptext SLIT("In a pattern binding:")) 4 (pprPatBind pat grhss)
1122
1123 -----------------------------------------------
1124 sigContextsCtxt sig1 sig2
1125   = vcat [ptext SLIT("When matching the contexts of the signatures for"), 
1126           nest 2 (vcat [ppr id1 <+> dcolon <+> ppr (idType id1),
1127                         ppr id2 <+> dcolon <+> ppr (idType id2)]),
1128           ptext SLIT("The signature contexts in a mutually recursive group should all be identical")]
1129   where
1130     id1 = sig_id sig1
1131     id2 = sig_id sig2
1132
1133
1134 -----------------------------------------------
1135 unboxedTupleErr name ty
1136   = hang (ptext SLIT("Illegal binding of unboxed tuple"))
1137          4 (ppr name <+> dcolon <+> ppr ty)
1138
1139 -----------------------------------------------
1140 restrictedBindCtxtErr binder_names
1141   = hang (ptext SLIT("Illegal overloaded type signature(s)"))
1142        4 (vcat [ptext SLIT("in a binding group for") <+> pprBinders binder_names,
1143                 ptext SLIT("that falls under the monomorphism restriction")])
1144
1145 genCtxt binder_names
1146   = ptext SLIT("When generalising the type(s) for") <+> pprBinders binder_names
1147 \end{code}