[project @ 1998-01-08 18:03:08 by simonm]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcBinds.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1996
3 %
4 \section[TcBinds]{TcBinds}
5
6 \begin{code}
7 module TcBinds ( tcBindsAndThen, tcTopBindsAndThen,
8                  tcPragmaSigs, checkSigTyVars, tcBindWithSigs, 
9                  sigCtxt, sigThetaCtxt, TcSigInfo(..) ) where
10
11 #include "HsVersions.h"
12
13 import {-# SOURCE #-} TcGRHSs ( tcGRHSsAndBinds )
14
15 import HsSyn            ( HsBinds(..), MonoBinds(..), Sig(..), InPat(..),
16                           collectMonoBinders
17                         )
18 import RnHsSyn          ( RenamedHsBinds, RenamedSig(..), 
19                           RenamedMonoBinds
20                         )
21 import TcHsSyn          ( TcHsBinds, TcMonoBinds,
22                           TcExpr, TcIdOcc(..), TcIdBndr, 
23                           tcIdType
24                         )
25
26 import TcMonad
27 import Inst             ( Inst, LIE, emptyLIE, plusLIE, plusLIEs, InstOrigin(..),
28                           newDicts, tyVarsOfInst, instToId, newMethodWithGivenTy,
29                           zonkInst, pprInsts
30                         )
31 import TcEnv            ( tcExtendLocalValEnv, tcLookupLocalValueOK, newLocalId,
32                           tcGetGlobalTyVars, tcExtendGlobalTyVars
33                         )
34 import TcMatches        ( tcMatchesFun )
35 import TcSimplify       ( tcSimplify, tcSimplifyAndCheck )
36 import TcMonoType       ( tcHsType )
37 import TcPat            ( tcPat )
38 import TcSimplify       ( bindInstsOfLocalFuns )
39 import TcType           ( TcType, TcThetaType, TcTauType, 
40                           TcTyVarSet, TcTyVar,
41                           newTyVarTy, newTcTyVar, tcInstSigType, newTyVarTys,
42                           zonkTcType, zonkTcTypes, zonkTcThetaType, zonkTcTyVar
43                         )
44 import Unify            ( unifyTauTy, unifyTauTyLists )
45
46 import Kind             ( isUnboxedTypeKind, mkTypeKind, isTypeKind, mkBoxedTypeKind )
47 import Id               ( GenId, idType, mkUserId )
48 import IdInfo           ( noIdInfo )
49 import Maybes           ( maybeToBool, assocMaybe, catMaybes )
50 import Name             ( getOccName, getSrcLoc, Name )
51 import PragmaInfo       ( PragmaInfo(..) )
52 import Type             ( mkTyVarTy, mkTyVarTys, isTyVarTy, tyVarsOfTypes,
53                           mkSigmaTy, splitSigmaTy, mkForAllTys, mkFunTys, getTyVar, mkDictTy,
54                           splitRhoTy, mkForAllTy, splitForAllTys )
55 import TyVar            ( GenTyVar, TyVar, tyVarKind, mkTyVarSet, minusTyVarSet, emptyTyVarSet,
56                           elementOfTyVarSet, unionTyVarSets, tyVarSetToList )
57 import Bag              ( bagToList, foldrBag, isEmptyBag )
58 import Util             ( isIn, zipEqual, zipWithEqual, zipWith3Equal, hasNoDups, assoc )
59 import Unique           ( Unique )
60 import BasicTypes       ( TopLevelFlag(..), RecFlag(..) )
61 import SrcLoc           ( SrcLoc )
62 import Outputable
63 \end{code}
64
65
66 %************************************************************************
67 %*                                                                      *
68 \subsection{Type-checking bindings}
69 %*                                                                      *
70 %************************************************************************
71
72 @tcBindsAndThen@ typechecks a @HsBinds@.  The "and then" part is because
73 it needs to know something about the {\em usage} of the things bound,
74 so that it can create specialisations of them.  So @tcBindsAndThen@
75 takes a function which, given an extended environment, E, typechecks
76 the scope of the bindings returning a typechecked thing and (most
77 important) an LIE.  It is this LIE which is then used as the basis for
78 specialising the things bound.
79
80 @tcBindsAndThen@ also takes a "combiner" which glues together the
81 bindings and the "thing" to make a new "thing".
82
83 The real work is done by @tcBindWithSigsAndThen@.
84
85 Recursive and non-recursive binds are handled in essentially the same
86 way: because of uniques there are no scoping issues left.  The only
87 difference is that non-recursive bindings can bind primitive values.
88
89 Even for non-recursive binding groups we add typings for each binder
90 to the LVE for the following reason.  When each individual binding is
91 checked the type of its LHS is unified with that of its RHS; and
92 type-checking the LHS of course requires that the binder is in scope.
93
94 At the top-level the LIE is sure to contain nothing but constant
95 dictionaries, which we resolve at the module level.
96
97 \begin{code}
98 tcTopBindsAndThen, tcBindsAndThen
99         :: (RecFlag -> TcMonoBinds s -> this -> that)           -- Combinator
100         -> RenamedHsBinds
101         -> TcM s (this, LIE s)
102         -> TcM s (that, LIE s)
103
104 tcTopBindsAndThen = tc_binds_and_then TopLevel
105 tcBindsAndThen    = tc_binds_and_then NotTopLevel
106
107 tc_binds_and_then top_lvl combiner binds do_next
108   = tcBinds top_lvl binds       `thenTc` \ (mbinds1, binds_lie, env, ids) ->
109     tcSetEnv env                $
110
111         -- Now do whatever happens next, in the augmented envt
112     do_next                     `thenTc` \ (thing, thing_lie) ->
113
114         -- Create specialisations of functions bound here
115         -- Nota Bene: we glom the bindings all together in a single
116         -- recursive group ("recursive" passed to combiner, below)
117         -- so that we can do thsi bindInsts thing once for all the bindings
118         -- and the thing inside.  This saves a quadratic-cost algorithm
119         -- when there's a long sequence of bindings.
120     bindInstsOfLocalFuns (binds_lie `plusLIE` thing_lie) ids    `thenTc` \ (final_lie, mbinds2) ->
121
122         -- All done
123     let
124         final_mbinds = mbinds1 `AndMonoBinds` mbinds2
125     in
126     returnTc (combiner Recursive final_mbinds thing, final_lie)
127
128 tcBinds :: TopLevelFlag
129         -> RenamedHsBinds
130         -> TcM s (TcMonoBinds s, LIE s, TcEnv s, [TcIdBndr s])
131            -- The envt is the envt with binders in scope
132            -- The binders are those bound by this group of bindings
133
134 tcBinds top_lvl EmptyBinds
135   = tcGetEnv            `thenNF_Tc` \ env ->
136     returnTc (EmptyMonoBinds, emptyLIE, env, [])
137
138   -- Short-cut for the rather common case of an empty bunch of bindings
139 tcBinds top_lvl (MonoBind EmptyMonoBinds sigs is_rec)
140   = tcGetEnv            `thenNF_Tc` \ env ->
141     returnTc (EmptyMonoBinds, emptyLIE, env, [])
142
143 tcBinds top_lvl (ThenBinds binds1 binds2)
144   = tcBinds top_lvl binds1        `thenTc` \ (mbinds1, lie1, env1, ids1) ->
145     tcSetEnv env1                 $
146     tcBinds top_lvl binds2        `thenTc` \ (mbinds2, lie2, env2, ids2) ->
147     returnTc (mbinds1 `AndMonoBinds` mbinds2, lie1 `plusLIE` lie2, env2, ids1++ids2)
148     
149 tcBinds top_lvl (MonoBind bind sigs is_rec)
150   = fixTc (\ ~(prag_info_fn, _) ->
151         -- This is the usual prag_info fix; the PragmaInfo field of an Id
152         -- is not inspected till ages later in the compiler, so there
153         -- should be no black-hole problems here.
154
155         -- TYPECHECK THE SIGNATURES
156       mapTc (tcTySig prag_info_fn) ty_sigs              `thenTc` \ tc_ty_sigs ->
157   
158       tcBindWithSigs top_lvl binder_names bind 
159                      tc_ty_sigs is_rec prag_info_fn     `thenTc` \ (poly_binds, poly_lie, poly_ids) ->
160   
161           -- Extend the environment to bind the new polymorphic Ids
162       tcExtendLocalValEnv binder_names poly_ids $
163   
164           -- Build bindings and IdInfos corresponding to user pragmas
165       tcPragmaSigs sigs                 `thenTc` \ (prag_info_fn, prag_binds, prag_lie) ->
166   
167           -- Catch the environment and return
168       tcGetEnv                       `thenNF_Tc` \ env ->
169       returnTc (prag_info_fn, (poly_binds `AndMonoBinds` prag_binds, 
170                                poly_lie `plusLIE` prag_lie, 
171                                env, poly_ids)
172     ) )                                 `thenTc` \ (_, result) ->
173     returnTc result
174   where
175     binder_names = map fst (bagToList (collectMonoBinders bind))
176     ty_sigs      = [sig  | sig@(Sig name _ _) <- sigs]
177 \end{code}
178
179 An aside.  The original version of @tcBindsAndThen@ which lacks a
180 combiner function, appears below.  Though it is perfectly well
181 behaved, it cannot be typed by Haskell, because the recursive call is
182 at a different type to the definition itself.  There aren't too many
183 examples of this, which is why I thought it worth preserving! [SLPJ]
184
185 \begin{pseudocode}
186 tcBindsAndThen
187         :: RenamedHsBinds
188         -> TcM s (thing, LIE s, thing_ty))
189         -> TcM s ((TcHsBinds s, thing), LIE s, thing_ty)
190
191 tcBindsAndThen EmptyBinds do_next
192   = do_next             `thenTc` \ (thing, lie, thing_ty) ->
193     returnTc ((EmptyBinds, thing), lie, thing_ty)
194
195 tcBindsAndThen (ThenBinds binds1 binds2) do_next
196   = tcBindsAndThen binds1 (tcBindsAndThen binds2 do_next)
197         `thenTc` \ ((binds1', (binds2', thing')), lie1, thing_ty) ->
198
199     returnTc ((binds1' `ThenBinds` binds2', thing'), lie1, thing_ty)
200
201 tcBindsAndThen (MonoBind bind sigs is_rec) do_next
202   = tcBindAndThen bind sigs do_next
203 \end{pseudocode}
204
205
206 %************************************************************************
207 %*                                                                      *
208 \subsection{tcBindWithSigs}
209 %*                                                                      *
210 %************************************************************************
211
212 @tcBindWithSigs@ deals with a single binding group.  It does generalisation,
213 so all the clever stuff is in here.
214
215 * binder_names and mbind must define the same set of Names
216
217 * The Names in tc_ty_sigs must be a subset of binder_names
218
219 * The Ids in tc_ty_sigs don't necessarily have to have the same name
220   as the Name in the tc_ty_sig
221
222 \begin{code}
223 tcBindWithSigs  
224         :: TopLevelFlag
225         -> [Name]
226         -> RenamedMonoBinds
227         -> [TcSigInfo s]
228         -> RecFlag
229         -> (Name -> PragmaInfo)
230         -> TcM s (TcMonoBinds s, LIE s, [TcIdBndr s])
231
232 tcBindWithSigs top_lvl binder_names mbind tc_ty_sigs is_rec prag_info_fn
233   = recoverTc (
234         -- If typechecking the binds fails, then return with each
235         -- signature-less binder given type (forall a.a), to minimise subsequent
236         -- error messages
237         newTcTyVar mkBoxedTypeKind              `thenNF_Tc` \ alpha_tv ->
238         let
239           forall_a_a = mkForAllTy alpha_tv (mkTyVarTy alpha_tv)
240           poly_ids   = map mk_dummy binder_names
241           mk_dummy name = case maybeSig tc_ty_sigs name of
242                             Just (TySigInfo _ poly_id _ _ _ _) -> poly_id       -- Signature
243                             Nothing -> mkUserId name forall_a_a NoPragmaInfo    -- No signature
244         in
245         returnTc (EmptyMonoBinds, emptyLIE, poly_ids)
246     ) $
247
248         -- Create a new identifier for each binder, with each being given
249         -- a fresh unique, and a type-variable type.
250         -- For "mono_lies" see comments about polymorphic recursion at the 
251         -- end of the function.
252     mapAndUnzipNF_Tc mk_mono_id binder_names    `thenNF_Tc` \ (mono_lies, mono_ids) ->
253     let
254         mono_lie = plusLIEs mono_lies
255         mono_id_tys = map idType mono_ids
256     in
257
258         -- TYPECHECK THE BINDINGS
259     tcMonoBinds mbind binder_names mono_ids tc_ty_sigs  `thenTc` \ (mbind', lie) ->
260
261         -- CHECK THAT THE SIGNATURES MATCH
262         -- (must do this before getTyVarsToGen)
263     checkSigMatch tc_ty_sigs                            `thenTc` \ sig_theta ->
264         
265         -- COMPUTE VARIABLES OVER WHICH TO QUANTIFY, namely tyvars_to_gen
266         -- The tyvars_not_to_gen are free in the environment, and hence
267         -- candidates for generalisation, but sometimes the monomorphism
268         -- restriction means we can't generalise them nevertheless
269     getTyVarsToGen is_unrestricted mono_id_tys lie      `thenTc` \ (tyvars_not_to_gen, tyvars_to_gen) ->
270
271         -- DEAL WITH TYPE VARIABLE KINDS
272         -- **** This step can do unification => keep other zonking after this ****
273     mapTc defaultUncommittedTyVar (tyVarSetToList tyvars_to_gen)        `thenTc` \ real_tyvars_to_gen_list ->
274     let
275         real_tyvars_to_gen = mkTyVarSet real_tyvars_to_gen_list
276                 -- It's important that the final list 
277                 -- (real_tyvars_to_gen and real_tyvars_to_gen_list) is fully
278                 -- zonked, *including boxity*, because they'll be included in the forall types of
279                 -- the polymorphic Ids, and instances of these Ids will be generated from them.
280                 -- 
281                 -- Also NB that tcSimplify takes zonked tyvars as its arg, hence we pass
282                 -- real_tyvars_to_gen
283                 --
284     in
285
286         -- SIMPLIFY THE LIE
287     tcExtendGlobalTyVars (tyVarSetToList tyvars_not_to_gen) (
288         if null tc_ty_sigs then
289                 -- No signatures, so just simplify the lie
290                 -- NB: no signatures => no polymorphic recursion, so no
291                 -- need to use mono_lies (which will be empty anyway)
292             tcSimplify (text "tcBinds1" <+> ppr binder_names)
293                        top_lvl real_tyvars_to_gen lie   `thenTc` \ (lie_free, dict_binds, lie_bound) ->
294             returnTc (lie_free, dict_binds, map instToId (bagToList lie_bound))
295
296         else
297             zonkTcThetaType sig_theta                   `thenNF_Tc` \ sig_theta' ->
298             newDicts SignatureOrigin sig_theta'         `thenNF_Tc` \ (dicts_sig, dict_ids) ->
299                 -- It's important that sig_theta is zonked, because
300                 -- dict_id is later used to form the type of the polymorphic thing,
301                 -- and forall-types must be zonked so far as their bound variables
302                 -- are concerned
303
304             let
305                 -- The "givens" is the stuff available.  We get that from
306                 -- the context of the type signature, BUT ALSO the mono_lie
307                 -- so that polymorphic recursion works right (see comments at end of fn)
308                 givens = dicts_sig `plusLIE` mono_lie
309             in
310
311                 -- Check that the needed dicts can be expressed in
312                 -- terms of the signature ones
313             tcAddErrCtxt  (bindSigsCtxt tysig_names) $
314             tcAddErrCtxtM (sigThetaCtxt dicts_sig) $
315             tcSimplifyAndCheck
316                 (text "tcBinds2" <+> ppr binder_names)
317                 real_tyvars_to_gen givens lie           `thenTc` \ (lie_free, dict_binds) ->
318
319             returnTc (lie_free, dict_binds, dict_ids)
320
321     )                                           `thenTc` \ (lie_free, dict_binds, dicts_bound) ->
322
323     ASSERT( not (any (isUnboxedTypeKind . tyVarKind) real_tyvars_to_gen_list) )
324                 -- The instCantBeGeneralised stuff in tcSimplify should have
325                 -- already raised an error if we're trying to generalise an unboxed tyvar
326                 -- (NB: unboxed tyvars are always introduced along with a class constraint)
327                 -- and it's better done there because we have more precise origin information.
328                 -- That's why we just use an ASSERT here.
329
330          -- BUILD THE POLYMORPHIC RESULT IDs
331     zonkTcTypes mono_id_tys                     `thenNF_Tc` \ zonked_mono_id_types ->
332     let
333         exports  = zipWith3 mk_export binder_names mono_ids zonked_mono_id_types
334         dict_tys = map tcIdType dicts_bound
335
336         mk_export binder_name mono_id zonked_mono_id_ty
337           | maybeToBool maybe_sig = (sig_tyvars,              TcId sig_poly_id, TcId mono_id)
338           | otherwise             = (real_tyvars_to_gen_list, TcId poly_id,     TcId mono_id)
339           where
340             maybe_sig = maybeSig tc_ty_sigs binder_name
341             Just (TySigInfo _ sig_poly_id sig_tyvars _ _ _) = maybe_sig
342             poly_id = mkUserId binder_name poly_ty (prag_info_fn binder_name)
343             poly_ty = mkForAllTys real_tyvars_to_gen_list $ mkFunTys dict_tys $ zonked_mono_id_ty
344                                 -- It's important to build a fully-zonked poly_ty, because
345                                 -- we'll slurp out its free type variables when extending the
346                                 -- local environment (tcExtendLocalValEnv); if it's not zonked
347                                 -- it appears to have free tyvars that aren't actually free at all.
348     in
349
350          -- BUILD RESULTS
351     returnTc (
352          AbsBinds real_tyvars_to_gen_list
353                   dicts_bound
354                   exports
355                   (dict_binds `AndMonoBinds` mbind'),
356          lie_free,
357          [poly_id | (_, TcId poly_id, _) <- exports]
358     )
359   where
360     no_of_binders = length binder_names
361
362     mk_mono_id binder_name
363       |  theres_a_signature     -- There's a signature; and it's overloaded, 
364       && not (null sig_theta)   -- so make a Method
365       = tcAddSrcLoc sig_loc $
366         newMethodWithGivenTy SignatureOrigin 
367                 (TcId poly_id) (mkTyVarTys sig_tyvars) 
368                 sig_theta sig_tau                       `thenNF_Tc` \ (mono_lie, TcId mono_id) ->
369                                                         -- A bit turgid to have to strip the TcId
370         returnNF_Tc (mono_lie, mono_id)
371
372       | otherwise               -- No signature or not overloaded; 
373       = tcAddSrcLoc (getSrcLoc binder_name) $
374         (if theres_a_signature then
375                 returnNF_Tc sig_tau     -- Non-overloaded signature; use its type
376          else
377                 newTyVarTy kind         -- No signature; use a new type variable
378         )                                       `thenNF_Tc` \ mono_id_ty ->
379
380         newLocalId (getOccName binder_name) mono_id_ty  `thenNF_Tc` \ mono_id ->
381         returnNF_Tc (emptyLIE, mono_id)
382       where
383         maybe_sig          = maybeSig tc_ty_sigs binder_name
384         theres_a_signature = maybeToBool maybe_sig
385         Just (TySigInfo name poly_id sig_tyvars sig_theta sig_tau sig_loc) = maybe_sig
386
387     tysig_names     = [name | (TySigInfo name _ _ _ _ _) <- tc_ty_sigs]
388     is_unrestricted = isUnRestrictedGroup tysig_names mbind
389
390     kind = case is_rec of
391              Recursive -> mkBoxedTypeKind       -- Recursive, so no unboxed types
392              NonRecursive -> mkTypeKind         -- Non-recursive, so we permit unboxed types
393 \end{code}
394
395 Polymorphic recursion
396 ~~~~~~~~~~~~~~~~~~~~~
397 The game plan for polymorphic recursion in the code above is 
398
399         * Bind any variable for which we have a type signature
400           to an Id with a polymorphic type.  Then when type-checking 
401           the RHSs we'll make a full polymorphic call.
402
403 This fine, but if you aren't a bit careful you end up with a horrendous
404 amount of partial application and (worse) a huge space leak. For example:
405
406         f :: Eq a => [a] -> [a]
407         f xs = ...f...
408
409 If we don't take care, after typechecking we get
410
411         f = /\a -> \d::Eq a -> let f' = f a d
412                                in
413                                \ys:[a] -> ...f'...
414
415 Notice the the stupid construction of (f a d), which is of course
416 identical to the function we're executing.  In this case, the
417 polymorphic recursion ins't being used (but that's a very common case).
418
419 This can lead to a massive space leak, from the following top-level defn:
420
421         ff :: [Int] -> [Int]
422         ff = f dEqInt
423
424 Now (f dEqInt) evaluates to a lambda that has f' as a free variable; but
425 f' is another thunk which evaluates to the same thing... and you end
426 up with a chain of identical values all hung onto by the CAF ff.
427
428 Solution: when typechecking the RHSs we always have in hand the
429 *monomorphic* Ids for each binding.  So we just need to make sure that
430 if (Method f a d) shows up in the constraints emerging from (...f...)
431 we just use the monomorphic Id.  We achieve this by adding monomorphic Ids
432 to the "givens" when simplifying constraints.  Thats' what the "mono_lies"
433 is doing.
434
435
436 %************************************************************************
437 %*                                                                      *
438 \subsection{getTyVarsToGen}
439 %*                                                                      *
440 %************************************************************************
441
442 @getTyVarsToGen@ decides what type variables generalise over.
443
444 For a "restricted group" -- see the monomorphism restriction
445 for a definition -- we bind no dictionaries, and
446 remove from tyvars_to_gen any constrained type variables
447
448 *Don't* simplify dicts at this point, because we aren't going
449 to generalise over these dicts.  By the time we do simplify them
450 we may well know more.  For example (this actually came up)
451         f :: Array Int Int
452         f x = array ... xs where xs = [1,2,3,4,5]
453 We don't want to generate lots of (fromInt Int 1), (fromInt Int 2)
454 stuff.  If we simplify only at the f-binding (not the xs-binding)
455 we'll know that the literals are all Ints, and we can just produce
456 Int literals!
457
458 Find all the type variables involved in overloading, the
459 "constrained_tyvars".  These are the ones we *aren't* going to
460 generalise.  We must be careful about doing this:
461
462  (a) If we fail to generalise a tyvar which is not actually
463         constrained, then it will never, ever get bound, and lands
464         up printed out in interface files!  Notorious example:
465                 instance Eq a => Eq (Foo a b) where ..
466         Here, b is not constrained, even though it looks as if it is.
467         Another, more common, example is when there's a Method inst in
468         the LIE, whose type might very well involve non-overloaded
469         type variables.
470
471  (b) On the other hand, we mustn't generalise tyvars which are constrained,
472         because we are going to pass on out the unmodified LIE, with those
473         tyvars in it.  They won't be in scope if we've generalised them.
474
475 So we are careful, and do a complete simplification just to find the
476 constrained tyvars. We don't use any of the results, except to
477 find which tyvars are constrained.
478
479 \begin{code}
480 getTyVarsToGen is_unrestricted mono_id_tys lie
481   = tcGetGlobalTyVars                   `thenNF_Tc` \ free_tyvars ->
482     zonkTcTypes mono_id_tys             `thenNF_Tc` \ zonked_mono_id_tys ->
483     let
484         tyvars_to_gen = tyVarsOfTypes zonked_mono_id_tys `minusTyVarSet` free_tyvars
485     in
486     if is_unrestricted
487     then
488         returnTc (emptyTyVarSet, tyvars_to_gen)
489     else
490         tcSimplify (text "getTVG") NotTopLevel tyvars_to_gen lie    `thenTc` \ (_, _, constrained_dicts) ->
491         let
492           -- ASSERT: dicts_sig is already zonked!
493             constrained_tyvars    = foldrBag (unionTyVarSets . tyVarsOfInst) emptyTyVarSet constrained_dicts
494             reduced_tyvars_to_gen = tyvars_to_gen `minusTyVarSet` constrained_tyvars
495         in
496         returnTc (constrained_tyvars, reduced_tyvars_to_gen)
497 \end{code}
498
499
500 \begin{code}
501 isUnRestrictedGroup :: [Name]           -- Signatures given for these
502                     -> RenamedMonoBinds
503                     -> Bool
504
505 is_elem v vs = isIn "isUnResMono" v vs
506
507 isUnRestrictedGroup sigs (PatMonoBind (VarPatIn v) _ _) = v `is_elem` sigs
508 isUnRestrictedGroup sigs (PatMonoBind other      _ _)   = False
509 isUnRestrictedGroup sigs (VarMonoBind v _)              = v `is_elem` sigs
510 isUnRestrictedGroup sigs (FunMonoBind _ _ _ _)          = True
511 isUnRestrictedGroup sigs (AndMonoBinds mb1 mb2)         = isUnRestrictedGroup sigs mb1 &&
512                                                           isUnRestrictedGroup sigs mb2
513 isUnRestrictedGroup sigs EmptyMonoBinds                 = True
514 \end{code}
515
516 @defaultUncommittedTyVar@ checks for generalisation over unboxed
517 types, and defaults any TypeKind TyVars to BoxedTypeKind.
518
519 \begin{code}
520 defaultUncommittedTyVar tyvar
521   | isTypeKind (tyVarKind tyvar)
522   = newTcTyVar mkBoxedTypeKind                                  `thenNF_Tc` \ boxed_tyvar ->
523     unifyTauTy (mkTyVarTy boxed_tyvar) (mkTyVarTy tyvar)        `thenTc_`
524     returnTc boxed_tyvar
525
526   | otherwise
527   = returnTc tyvar
528 \end{code}
529
530
531 %************************************************************************
532 %*                                                                      *
533 \subsection{tcMonoBind}
534 %*                                                                      *
535 %************************************************************************
536
537 @tcMonoBinds@ deals with a single @MonoBind@.  
538 The signatures have been dealt with already.
539
540 \begin{code}
541 tcMonoBinds :: RenamedMonoBinds 
542             -> [Name] -> [TcIdBndr s]
543             -> [TcSigInfo s]
544             -> TcM s (TcMonoBinds s, LIE s)
545
546 tcMonoBinds mbind binder_names mono_ids tc_ty_sigs
547   = tcExtendLocalValEnv binder_names mono_ids (
548         tc_mono_binds mbind
549     )
550   where
551     sig_names = [name | (TySigInfo name _ _ _ _ _) <- tc_ty_sigs]
552     sig_ids   = [id   | (TySigInfo _   id _ _ _ _) <- tc_ty_sigs]
553
554     tc_mono_binds EmptyMonoBinds = returnTc (EmptyMonoBinds, emptyLIE)
555
556     tc_mono_binds (AndMonoBinds mb1 mb2)
557       = tc_mono_binds mb1               `thenTc` \ (mb1a, lie1) ->
558         tc_mono_binds mb2               `thenTc` \ (mb2a, lie2) ->
559         returnTc (AndMonoBinds mb1a mb2a, lie1 `plusLIE` lie2)
560
561     tc_mono_binds (FunMonoBind name inf matches locn)
562       = tcAddSrcLoc locn                                $
563         tcLookupLocalValueOK "tc_mono_binds" name       `thenNF_Tc` \ id ->
564
565                 -- Before checking the RHS, extend the envt with
566                 -- bindings for the *polymorphic* Ids from any type signatures
567         tcExtendLocalValEnv sig_names sig_ids           $
568         tcMatchesFun name (idType id) matches           `thenTc` \ (matches', lie) ->
569
570         returnTc (FunMonoBind (TcId id) inf matches' locn, lie)
571
572     tc_mono_binds bind@(PatMonoBind pat grhss_and_binds locn)
573       = tcAddSrcLoc locn                        $
574         tcAddErrCtxt (patMonoBindsCtxt bind)    $
575         tcPat pat                               `thenTc` \ (pat2, lie_pat, pat_ty) ->
576
577                 -- Before checking the RHS, but after the pattern, extend the envt with
578                 -- bindings for the *polymorphic* Ids from any type signatures
579         tcExtendLocalValEnv sig_names sig_ids   $
580         tcGRHSsAndBinds pat_ty grhss_and_binds  `thenTc` \ (grhss_and_binds2, lie) ->
581         returnTc (PatMonoBind pat2 grhss_and_binds2 locn,
582                   plusLIE lie_pat lie)
583 \end{code}
584
585 %************************************************************************
586 %*                                                                      *
587 \subsection{Signatures}
588 %*                                                                      *
589 %************************************************************************
590
591 @tcSigs@ checks the signatures for validity, and returns a list of
592 {\em freshly-instantiated} signatures.  That is, the types are already
593 split up, and have fresh type variables installed.  All non-type-signature
594 "RenamedSigs" are ignored.
595
596 The @TcSigInfo@ contains @TcTypes@ because they are unified with
597 the variable's type, and after that checked to see whether they've
598 been instantiated.
599
600 \begin{code}
601 data TcSigInfo s
602   = TySigInfo       
603         Name                    -- N, the Name in corresponding binding
604         (TcIdBndr s)            -- *Polymorphic* binder for this value...
605                                 -- Usually has name = N, but doesn't have to.
606         [TcTyVar s]
607         (TcThetaType s)
608         (TcTauType s)
609         SrcLoc
610
611
612 maybeSig :: [TcSigInfo s] -> Name -> Maybe (TcSigInfo s)
613         -- Search for a particular signature
614 maybeSig [] name = Nothing
615 maybeSig (sig@(TySigInfo sig_name _ _ _ _ _) : sigs) name
616   | name == sig_name = Just sig
617   | otherwise        = maybeSig sigs name
618 \end{code}
619
620
621 \begin{code}
622 tcTySig :: (Name -> PragmaInfo)
623         -> RenamedSig
624         -> TcM s (TcSigInfo s)
625
626 tcTySig prag_info_fn (Sig v ty src_loc)
627  = tcAddSrcLoc src_loc $
628    tcHsType ty                  `thenTc` \ sigma_ty ->
629    tcInstSigType sigma_ty       `thenNF_Tc` \ sigma_ty' ->
630    let
631      poly_id = mkUserId v sigma_ty' (prag_info_fn v)
632      (tyvars', theta', tau') = splitSigmaTy sigma_ty'
633         -- This splitSigmaTy tries hard to make sure that tau' is a type synonym
634         -- wherever possible, which can improve interface files.
635    in
636    returnTc (TySigInfo v poly_id tyvars' theta' tau' src_loc)
637 \end{code}
638
639 @checkSigMatch@ does the next step in checking signature matching.
640 The tau-type part has already been unified.  What we do here is to
641 check that this unification has not over-constrained the (polymorphic)
642 type variables of the original signature type.
643
644 The error message here is somewhat unsatisfactory, but it'll do for
645 now (ToDo).
646
647 \begin{code}
648 checkSigMatch []
649   = returnTc (error "checkSigMatch")
650
651 checkSigMatch tc_ty_sigs@( sig1@(TySigInfo _ id1 _ theta1 _ _) : all_sigs_but_first )
652   =     -- CHECK THAT THE SIGNATURE TYVARS AND TAU_TYPES ARE OK
653         -- Doesn't affect substitution
654     mapTc check_one_sig tc_ty_sigs      `thenTc_`
655
656         -- CHECK THAT ALL THE SIGNATURE CONTEXTS ARE UNIFIABLE
657         -- The type signatures on a mutually-recursive group of definitions
658         -- must all have the same context (or none).
659         --
660         -- We unify them because, with polymorphic recursion, their types
661         -- might not otherwise be related.  This is a rather subtle issue.
662         -- ToDo: amplify
663     mapTc check_one_cxt all_sigs_but_first              `thenTc_`
664
665     returnTc theta1
666   where
667     sig1_dict_tys       = mk_dict_tys theta1
668     n_sig1_dict_tys     = length sig1_dict_tys
669
670     check_one_cxt sig@(TySigInfo _ id _  theta _ src_loc)
671        = tcAddSrcLoc src_loc    $
672          tcAddErrCtxt (sigContextsCtxt id1 id) $
673          checkTc (length this_sig_dict_tys == n_sig1_dict_tys)
674                                 sigContextsErr          `thenTc_`
675          unifyTauTyLists sig1_dict_tys this_sig_dict_tys
676       where
677          this_sig_dict_tys = mk_dict_tys theta
678
679     check_one_sig (TySigInfo name id sig_tyvars _ sig_tau src_loc)
680       = tcAddSrcLoc src_loc     $
681         tcAddErrCtxt (sigCtxt id) $
682         checkSigTyVars sig_tyvars sig_tau
683
684     mk_dict_tys theta = [mkDictTy c ts | (c,ts) <- theta]
685 \end{code}
686
687
688 @checkSigTyVars@ is used after the type in a type signature has been unified with
689 the actual type found.  It then checks that the type variables of the type signature
690 are
691         (a) still all type variables
692                 eg matching signature [a] against inferred type [(p,q)]
693                 [then a will be unified to a non-type variable]
694
695         (b) still all distinct
696                 eg matching signature [(a,b)] against inferred type [(p,p)]
697                 [then a and b will be unified together]
698
699         (c) not mentioned in the environment
700                 eg the signature for f in this:
701
702                         g x = ... where
703                                         f :: a->[a]
704                                         f y = [x,y]
705
706                 Here, f is forced to be monorphic by the free occurence of x.
707
708 Before doing this, the substitution is applied to the signature type variable.
709
710 We used to have the notion of a "DontBind" type variable, which would
711 only be bound to itself or nothing.  Then points (a) and (b) were 
712 self-checking.  But it gave rise to bogus consequential error messages.
713 For example:
714
715    f = (*)      -- Monomorphic
716
717    g :: Num a => a -> a
718    g x = f x x
719
720 Here, we get a complaint when checking the type signature for g,
721 that g isn't polymorphic enough; but then we get another one when
722 dealing with the (Num x) context arising from f's definition;
723 we try to unify x with Int (to default it), but find that x has already
724 been unified with the DontBind variable "a" from g's signature.
725 This is really a problem with side-effecting unification; we'd like to
726 undo g's effects when its type signature fails, but unification is done
727 by side effect, so we can't (easily).
728
729 So we revert to ordinary type variables for signatures, and try to
730 give a helpful message in checkSigTyVars.
731
732 \begin{code}
733 checkSigTyVars :: [TcTyVar s]           -- The original signature type variables
734                -> TcType s              -- signature type (for err msg)
735                -> TcM s [TcTyVar s]     -- Zonked signature type variables
736
737 checkSigTyVars sig_tyvars sig_tau
738   = mapNF_Tc zonkTcTyVar sig_tyvars     `thenNF_Tc` \ sig_tys ->
739     let
740         sig_tyvars' = map (getTyVar "checkSigTyVars") sig_tys
741     in
742
743         -- Check points (a) and (b)
744     checkTcM (all isTyVarTy sig_tys && hasNoDups sig_tyvars')
745              (zonkTcType sig_tau        `thenNF_Tc` \ sig_tau' ->
746               failWithTc (badMatchErr sig_tau sig_tau')
747              )                          `thenTc_`
748
749         -- Check point (c)
750         -- We want to report errors in terms of the original signature tyvars,
751         -- ie sig_tyvars, NOT sig_tyvars'.  sig_tyvars' correspond
752         -- 1-1 with sig_tyvars, so we can just map back.
753     tcGetGlobalTyVars                   `thenNF_Tc` \ globals ->
754     let
755         mono_tyvars' = [sig_tv' | sig_tv' <- sig_tyvars', 
756                                   sig_tv' `elementOfTyVarSet` globals]
757
758         mono_tyvars = map (assoc "checkSigTyVars" (sig_tyvars' `zip` sig_tyvars)) mono_tyvars'
759     in
760     checkTcM (null mono_tyvars')
761              (failWithTc (notAsPolyAsSigErr sig_tau mono_tyvars))       `thenTc_`
762
763     returnTc sig_tyvars'
764 \end{code}
765
766
767 %************************************************************************
768 %*                                                                      *
769 \subsection{SPECIALIZE pragmas}
770 %*                                                                      *
771 %************************************************************************
772
773
774 @tcPragmaSigs@ munches up the "signatures" that arise through *user*
775 pragmas.  It is convenient for them to appear in the @[RenamedSig]@
776 part of a binding because then the same machinery can be used for
777 moving them into place as is done for type signatures.
778
779 \begin{code}
780 tcPragmaSigs :: [RenamedSig]                    -- The pragma signatures
781              -> TcM s (Name -> PragmaInfo,      -- Maps name to the appropriate PragmaInfo
782                        TcMonoBinds s,
783                        LIE s)
784
785 -- For now we just deal with INLINE pragmas
786 tcPragmaSigs sigs = returnTc (prag_fn, EmptyMonoBinds, emptyLIE )
787   where
788     prag_fn name | any has_inline sigs = IWantToBeINLINEd
789                  | otherwise           = NoPragmaInfo
790                  where
791                     has_inline (InlineSig n _) = (n == name)
792                     has_inline other           = False
793                 
794
795 {- 
796 tcPragmaSigs sigs
797   = mapAndUnzip3Tc tcPragmaSig sigs     `thenTc` \ (names_w_id_infos, binds, lies) ->
798     let
799         name_to_info name = foldr ($) noIdInfo
800                                   [info_fn | (n,info_fn) <- names_w_id_infos, n==name]
801     in
802     returnTc (name_to_info,
803               foldr ThenBinds EmptyBinds binds,
804               foldr plusLIE emptyLIE lies)
805 \end{code}
806
807 Here are the easy cases for tcPragmaSigs
808
809 \begin{code}
810 tcPragmaSig (InlineSig name loc)
811   = returnTc ((name, addUnfoldInfo (iWantToBeINLINEd UnfoldAlways)), EmptyBinds, emptyLIE)
812 tcPragmaSig (MagicUnfoldingSig name string loc)
813   = returnTc ((name, addUnfoldInfo (mkMagicUnfolding string)), EmptyBinds, emptyLIE)
814 \end{code}
815
816 The interesting case is for SPECIALISE pragmas.  There are two forms.
817 Here's the first form:
818 \begin{verbatim}
819         f :: Ord a => [a] -> b -> b
820         {-# SPECIALIZE f :: [Int] -> b -> b #-}
821 \end{verbatim}
822
823 For this we generate:
824 \begin{verbatim}
825         f* = /\ b -> let d1 = ...
826                      in f Int b d1
827 \end{verbatim}
828
829 where f* is a SpecPragmaId.  The **sole** purpose of SpecPragmaIds is to
830 retain a right-hand-side that the simplifier will otherwise discard as
831 dead code... the simplifier has a flag that tells it not to discard
832 SpecPragmaId bindings.
833
834 In this case the f* retains a call-instance of the overloaded
835 function, f, (including appropriate dictionaries) so that the
836 specialiser will subsequently discover that there's a call of @f@ at
837 Int, and will create a specialisation for @f@.  After that, the
838 binding for @f*@ can be discarded.
839
840 The second form is this:
841 \begin{verbatim}
842         f :: Ord a => [a] -> b -> b
843         {-# SPECIALIZE f :: [Int] -> b -> b = g #-}
844 \end{verbatim}
845
846 Here @g@ is specified as a function that implements the specialised
847 version of @f@.  Suppose that g has type (a->b->b); that is, g's type
848 is more general than that required.  For this we generate
849 \begin{verbatim}
850         f@Int = /\b -> g Int b
851         f* = f@Int
852 \end{verbatim}
853
854 Here @f@@Int@ is a SpecId, the specialised version of @f@.  It inherits
855 f's export status etc.  @f*@ is a SpecPragmaId, as before, which just serves
856 to prevent @f@@Int@ from being discarded prematurely.  After specialisation,
857 if @f@@Int@ is going to be used at all it will be used explicitly, so the simplifier can
858 discard the f* binding.
859
860 Actually, there is really only point in giving a SPECIALISE pragma on exported things,
861 and the simplifer won't discard SpecIds for exporte things anyway, so maybe this is
862 a bit of overkill.
863
864 \begin{code}
865 tcPragmaSig (SpecSig name poly_ty maybe_spec_name src_loc)
866   = tcAddSrcLoc src_loc                         $
867     tcAddErrCtxt (valSpecSigCtxt name spec_ty)  $
868
869         -- Get and instantiate its alleged specialised type
870     tcHsType poly_ty                            `thenTc` \ sig_sigma ->
871     tcInstSigType  sig_sigma                    `thenNF_Tc` \ sig_ty ->
872     let
873         (sig_tyvars, sig_theta, sig_tau) = splitSigmaTy sig_ty
874         origin = ValSpecOrigin name
875     in
876
877         -- Check that the SPECIALIZE pragma had an empty context
878     checkTc (null sig_theta)
879             (panic "SPECIALIZE non-empty context (ToDo: msg)") `thenTc_`
880
881         -- Get and instantiate the type of the id mentioned
882     tcLookupLocalValueOK "tcPragmaSig" name     `thenNF_Tc` \ main_id ->
883     tcInstSigType [] (idType main_id)           `thenNF_Tc` \ main_ty ->
884     let
885         (main_tyvars, main_rho) = splitForAllTys main_ty
886         (main_theta,main_tau)   = splitRhoTy main_rho
887         main_arg_tys            = mkTyVarTys main_tyvars
888     in
889
890         -- Check that the specialised type is indeed an instance of
891         -- the type of the main function.
892     unifyTauTy sig_tau main_tau         `thenTc_`
893     checkSigTyVars sig_tyvars sig_tau   `thenTc_`
894
895         -- Check that the type variables of the polymorphic function are
896         -- either left polymorphic, or instantiate to ground type.
897         -- Also check that the overloaded type variables are instantiated to
898         -- ground type; or equivalently that all dictionaries have ground type
899     zonkTcTypes main_arg_tys            `thenNF_Tc` \ main_arg_tys' ->
900     zonkTcThetaType main_theta          `thenNF_Tc` \ main_theta' ->
901     tcAddErrCtxt (specGroundnessCtxt main_arg_tys')
902               (checkTc (all isGroundOrTyVarTy main_arg_tys'))           `thenTc_`
903     tcAddErrCtxt (specContextGroundnessCtxt main_theta')
904               (checkTc (and [isGroundTy ty | (_,ty) <- theta']))        `thenTc_`
905
906         -- Build the SpecPragmaId; it is the thing that makes sure we
907         -- don't prematurely dead-code-eliminate the binding we are really interested in.
908     newSpecPragmaId name sig_ty         `thenNF_Tc` \ spec_pragma_id ->
909
910         -- Build a suitable binding; depending on whether we were given
911         -- a value (Maybe Name) to be used as the specialisation.
912     case using of
913       Nothing ->                -- No implementation function specified
914
915                 -- Make a Method inst for the occurrence of the overloaded function
916         newMethodWithGivenTy (OccurrenceOf name)
917                   (TcId main_id) main_arg_tys main_rho  `thenNF_Tc` \ (lie, meth_id) ->
918
919         let
920             pseudo_bind = VarMonoBind spec_pragma_id pseudo_rhs
921             pseudo_rhs  = mkHsTyLam sig_tyvars (HsVar (TcId meth_id))
922         in
923         returnTc (pseudo_bind, lie, \ info -> info)
924
925       Just spec_name ->         -- Use spec_name as the specialisation value ...
926
927                 -- Type check a simple occurrence of the specialised Id
928         tcId spec_name          `thenTc` \ (spec_body, spec_lie, spec_tau) ->
929
930                 -- Check that it has the correct type, and doesn't constrain the
931                 -- signature variables at all
932         unifyTauTy sig_tau spec_tau             `thenTc_`
933         checkSigTyVars sig_tyvars sig_tau       `thenTc_`
934
935             -- Make a local SpecId to bind to applied spec_id
936         newSpecId main_id main_arg_tys sig_ty   `thenNF_Tc` \ local_spec_id ->
937
938         let
939             spec_rhs   = mkHsTyLam sig_tyvars spec_body
940             spec_binds = VarMonoBind local_spec_id spec_rhs
941                            `AndMonoBinds`
942                          VarMonoBind spec_pragma_id (HsVar (TcId local_spec_id))
943             spec_info  = SpecInfo spec_tys (length main_theta) local_spec_id
944         in
945         returnTc ((name, addSpecInfo spec_info), spec_binds, spec_lie)
946 -}
947 \end{code}
948
949
950 %************************************************************************
951 %*                                                                      *
952 \subsection[TcBinds-errors]{Error contexts and messages}
953 %*                                                                      *
954 %************************************************************************
955
956
957 \begin{code}
958 patMonoBindsCtxt bind
959   = hang (ptext SLIT("In a pattern binding:")) 4 (ppr bind)
960
961 -----------------------------------------------
962 valSpecSigCtxt v ty
963   = sep [ptext SLIT("In a SPECIALIZE pragma for a value:"),
964          nest 4 (ppr v <+> ptext SLIT(" ::") <+> ppr ty)]
965
966 -----------------------------------------------
967 notAsPolyAsSigErr sig_tau mono_tyvars
968   = hang (ptext SLIT("A type signature is more polymorphic than the inferred type"))
969         4  (vcat [text "Can't for-all the type variable(s)" <+> 
970                   pprQuotedList mono_tyvars,
971                   text "in the type" <+> quotes (ppr sig_tau)
972            ])
973
974 -----------------------------------------------
975 badMatchErr sig_ty inferred_ty
976   = hang (ptext SLIT("Type signature doesn't match inferred type"))
977          4 (vcat [hang (ptext SLIT("Signature:")) 4 (ppr sig_ty),
978                       hang (ptext SLIT("Inferred :")) 4 (ppr inferred_ty)
979            ])
980
981 -----------------------------------------------
982 sigCtxt id 
983   = sep [ptext SLIT("When checking the type signature for"), quotes (ppr id)]
984
985 sigThetaCtxt dicts_sig
986   = mapNF_Tc zonkInst (bagToList dicts_sig)     `thenNF_Tc` \ dicts' ->
987     returnNF_Tc (ptext SLIT("Available context:") <+> pprInsts dicts')
988
989 bindSigsCtxt ids
990   = ptext SLIT("When checking the type signature(s) for") <+> pprQuotedList ids
991
992 -----------------------------------------------
993 sigContextsErr
994   = ptext SLIT("Mismatched contexts")
995 sigContextsCtxt s1 s2
996   = hang (hsep [ptext SLIT("When matching the contexts of the signatures for"), 
997                 quotes (ppr s1), ptext SLIT("and"), quotes (ppr s2)])
998          4 (ptext SLIT("(the signature contexts in a mutually recursive group should all be identical)"))
999
1000 -----------------------------------------------
1001 specGroundnessCtxt
1002   = panic "specGroundnessCtxt"
1003
1004 --------------------------------------------
1005 specContextGroundnessCtxt -- err_ctxt dicts
1006   = panic "specContextGroundnessCtxt"
1007 {-
1008   = hang (
1009         sep [hsep [ptext SLIT("In the SPECIALIZE pragma for"), ppr name],
1010              hcat [ptext SLIT(" specialised to the type"), ppr spec_ty],
1011              pp_spec_id,
1012              ptext SLIT("... not all overloaded type variables were instantiated"),
1013              ptext SLIT("to ground types:")])
1014       4 (vcat [hsep [ppr c, ppr t]
1015                   | (c,t) <- map getDictClassAndType dicts])
1016   where
1017     (name, spec_ty, locn, pp_spec_id)
1018       = case err_ctxt of
1019           ValSpecSigCtxt    n ty loc      -> (n, ty, loc, \ x -> empty)
1020           ValSpecSpecIdCtxt n ty spec loc ->
1021             (n, ty, loc,
1022              hsep [ptext SLIT("... type of explicit id"), ppr spec])
1023 -}
1024 \end{code}