[project @ 2000-10-17 13:22:10 by simonmar]
[ghc-hetmet.git] / ghc / compiler / typecheck / TcExpr.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[TcExpr]{Typecheck an expression}
5
6 \begin{code}
7 module TcExpr ( tcApp, tcExpr, tcPolyExpr, tcId ) where
8
9 #include "HsVersions.h"
10
11 import HsSyn            ( HsExpr(..), HsLit(..), ArithSeqInfo(..), 
12                           MonoBinds(..), StmtCtxt(..),
13                           mkMonoBind, nullMonoBinds 
14                         )
15 import RnHsSyn          ( RenamedHsExpr, RenamedRecordBinds )
16 import TcHsSyn          ( TcExpr, TcRecordBinds, mkHsTyApp, mkHsLet )
17
18 import TcMonad
19 import BasicTypes       ( RecFlag(..) )
20
21 import Inst             ( InstOrigin(..), 
22                           LIE, emptyLIE, unitLIE, plusLIE, plusLIEs,
23                           newOverloadedLit, newMethod, newIPDict,
24                           instOverloadedFun, newDicts, newClassDicts,
25                           getIPsOfLIE, instToId, ipToId
26                         )
27 import TcBinds          ( tcBindsAndThen )
28 import TcEnv            ( TcTyThing(..), tcInstId,
29                           tcLookupClass, tcLookupGlobalId, tcLookupGlobal_maybe,
30                           tcLookupTyCon, tcLookupDataCon, tcLookup,
31                           tcExtendGlobalTyVars
32                         )
33 import TcMatches        ( tcMatchesCase, tcMatchLambda, tcStmts )
34 import TcMonoType       ( tcHsSigType, checkSigTyVars, sigCtxt )
35 import TcPat            ( badFieldCon, simpleHsLitTy )
36 import TcSimplify       ( tcSimplifyAndCheck, partitionPredsOfLIE )
37 import TcImprove        ( tcImprove )
38 import TcType           ( TcType, TcTauType,
39                           tcInstTyVars,
40                           tcInstTcType, tcSplitRhoTy,
41                           newTyVarTy, newTyVarTys, zonkTcType )
42
43 import FieldLabel       ( fieldLabelName, fieldLabelType, fieldLabelTyCon )
44 import Id               ( idType, recordSelectorFieldLabel, isRecordSelector, mkVanillaId )
45 import DataCon          ( dataConFieldLabels, dataConSig, 
46                           dataConStrictMarks, StrictnessMark(..)
47                         )
48 import Name             ( Name, getName )
49 import Type             ( mkFunTy, mkAppTy, mkTyVarTys, ipName_maybe,
50                           splitFunTy_maybe, splitFunTys, isNotUsgTy,
51                           mkTyConApp, splitSigmaTy, 
52                           splitRhoTy,
53                           isTauTy, tyVarsOfType, tyVarsOfTypes, 
54                           isSigmaTy, splitAlgTyConApp, splitAlgTyConApp_maybe,
55                           boxedTypeKind, openTypeKind, mkArrowKind,
56                           tidyOpenType
57                         )
58 import TyCon            ( TyCon, tyConTyVars )
59 import Subst            ( mkTopTyVarSubst, substClasses, substTy )
60 import VarSet           ( elemVarSet, mkVarSet )
61 import TysWiredIn       ( boolTy )
62 import TcUnify          ( unifyTauTy, unifyFunTy, unifyListTy, unifyTupleTy )
63 import PrelNames        ( cCallableClassName, 
64                           cReturnableClassName, 
65                           enumFromName, enumFromThenName,
66                           enumFromToName, enumFromThenToName,
67                           thenMName, failMName, returnMName, ioTyConName
68                         )
69 import Outputable
70 import Maybes           ( maybeToBool, mapMaybe )
71 import ListSetOps       ( minusList )
72 import Util
73 import CmdLineOpts
74 import HscTypes         ( TyThing(..) )
75
76 \end{code}
77
78 %************************************************************************
79 %*                                                                      *
80 \subsection{Main wrappers}
81 %*                                                                      *
82 %************************************************************************
83
84 \begin{code}
85 tcExpr :: RenamedHsExpr                 -- Expession to type check
86         -> TcType                       -- Expected type (could be a polytpye)
87         -> TcM (TcExpr, LIE)
88
89 tcExpr expr ty | isSigmaTy ty = -- Polymorphic case
90                                 tcPolyExpr expr ty      `thenTc` \ (expr', lie, _, _, _) ->
91                                 returnTc (expr', lie)
92
93                | otherwise    = -- Monomorphic case
94                                 tcMonoExpr expr ty
95 \end{code}
96
97
98 %************************************************************************
99 %*                                                                      *
100 \subsection{@tcPolyExpr@ typchecks an application}
101 %*                                                                      *
102 %************************************************************************
103
104 \begin{code}
105 -- tcPolyExpr is like tcMonoExpr, except that the expected type
106 -- can be a polymorphic one.
107 tcPolyExpr :: RenamedHsExpr
108            -> TcType                            -- Expected type
109            -> TcM (TcExpr, LIE,         -- Generalised expr with expected type, and LIE
110                      TcExpr, TcTauType, LIE)    -- Same thing, but instantiated; tau-type returned
111
112 tcPolyExpr arg expected_arg_ty
113   =     -- Ha!  The argument type of the function is a for-all type,
114         -- An example of rank-2 polymorphism.
115
116         -- To ensure that the forall'd type variables don't get unified with each
117         -- other or any other types, we make fresh copy of the alleged type
118     tcInstTcType expected_arg_ty        `thenNF_Tc` \ (sig_tyvars, sig_rho) ->
119     let
120         (sig_theta, sig_tau) = splitRhoTy sig_rho
121         free_tyvars          = tyVarsOfType expected_arg_ty
122     in
123         -- Type-check the arg and unify with expected type
124     tcMonoExpr arg sig_tau                              `thenTc` \ (arg', lie_arg) ->
125
126         -- Check that the sig_tyvars havn't been constrained
127         -- The interesting bit here is that we must include the free variables
128         -- of the expected arg ty.  Here's an example:
129         --       runST (newVar True)
130         -- Here, if we don't make a check, we'll get a type (ST s (MutVar s Bool))
131         -- for (newVar True), with s fresh.  Then we unify with the runST's arg type
132         -- forall s'. ST s' a. That unifies s' with s, and a with MutVar s Bool.
133         -- So now s' isn't unconstrained because it's linked to a.
134         -- Conclusion: include the free vars of the expected arg type in the
135         -- list of "free vars" for the signature check.
136
137     tcExtendGlobalTyVars free_tyvars                              $
138     tcAddErrCtxtM (sigCtxt sig_msg sig_tyvars sig_theta sig_tau)  $
139
140     checkSigTyVars sig_tyvars free_tyvars       `thenTc` \ zonked_sig_tyvars ->
141
142     newDicts SignatureOrigin sig_theta          `thenNF_Tc` \ (sig_dicts, dict_ids) ->
143     tcImprove (sig_dicts `plusLIE` lie_arg)     `thenTc_`
144         -- ToDo: better origin
145     tcSimplifyAndCheck 
146         (text "the type signature of an expression")
147         (mkVarSet zonked_sig_tyvars)
148         sig_dicts lie_arg                       `thenTc` \ (free_insts, inst_binds) ->
149
150     let
151             -- This HsLet binds any Insts which came out of the simplification.
152             -- It's a bit out of place here, but using AbsBind involves inventing
153             -- a couple of new names which seems worse.
154         generalised_arg = TyLam zonked_sig_tyvars $
155                           DictLam dict_ids $
156                           mkHsLet inst_binds $ 
157                           arg' 
158     in
159     returnTc ( generalised_arg, free_insts,
160                arg', sig_tau, lie_arg )
161   where
162     sig_msg = ptext SLIT("When checking an expression type signature")
163 \end{code}
164
165 %************************************************************************
166 %*                                                                      *
167 \subsection{The TAUT rules for variables}
168 %*                                                                      *
169 %************************************************************************
170
171 \begin{code}
172 tcMonoExpr :: RenamedHsExpr             -- Expession to type check
173            -> TcTauType                 -- Expected type (could be a type variable)
174            -> TcM (TcExpr, LIE)
175
176 tcMonoExpr (HsVar name) res_ty
177   = tcId name                   `thenNF_Tc` \ (expr', lie, id_ty) ->
178     unifyTauTy res_ty id_ty     `thenTc_`
179
180     -- Check that the result type doesn't have any nested for-alls.
181     -- For example, a "build" on its own is no good; it must be
182     -- applied to something.
183     checkTc (isTauTy id_ty)
184             (lurkingRank2Err name id_ty) `thenTc_`
185
186     returnTc (expr', lie)
187 \end{code}
188
189 \begin{code}
190 tcMonoExpr (HsIPVar name) res_ty
191   -- ZZ What's the `id' used for here...
192   = let id = mkVanillaId name res_ty in
193     tcGetInstLoc (OccurrenceOf id)      `thenNF_Tc` \ loc ->
194     newIPDict name res_ty loc           `thenNF_Tc` \ ip ->
195     returnNF_Tc (HsIPVar (instToId ip), unitLIE ip)
196 \end{code}
197
198 %************************************************************************
199 %*                                                                      *
200 \subsection{Other expression forms}
201 %*                                                                      *
202 %************************************************************************
203
204 \begin{code}
205 tcMonoExpr (HsLit lit)     res_ty = tcLit lit res_ty
206 tcMonoExpr (HsOverLit lit) res_ty = newOverloadedLit (LiteralOrigin lit) lit res_ty
207 tcMonoExpr (HsPar expr)    res_ty = tcMonoExpr expr res_ty
208
209 tcMonoExpr (NegApp expr neg) res_ty
210   = tcMonoExpr (HsApp (HsVar neg) expr) res_ty
211
212 tcMonoExpr (HsLam match) res_ty
213   = tcMatchLambda match res_ty          `thenTc` \ (match',lie) ->
214     returnTc (HsLam match', lie)
215
216 tcMonoExpr (HsApp e1 e2) res_ty = accum e1 [e2]
217   where
218     accum (HsApp e1 e2) args = accum e1 (e2:args)
219     accum fun args
220       = tcApp fun args res_ty   `thenTc` \ (fun', args', lie) ->
221         returnTc (foldl HsApp fun' args', lie)
222
223 -- equivalent to (op e1) e2:
224 tcMonoExpr (OpApp arg1 op fix arg2) res_ty
225   = tcApp op [arg1,arg2] res_ty `thenTc` \ (op', [arg1', arg2'], lie) ->
226     returnTc (OpApp arg1' op' fix arg2', lie)
227 \end{code}
228
229 Note that the operators in sections are expected to be binary, and
230 a type error will occur if they aren't.
231
232 \begin{code}
233 -- Left sections, equivalent to
234 --      \ x -> e op x,
235 -- or
236 --      \ x -> op e x,
237 -- or just
238 --      op e
239
240 tcMonoExpr in_expr@(SectionL arg op) res_ty
241   = tcApp op [arg] res_ty               `thenTc` \ (op', [arg'], lie) ->
242
243         -- Check that res_ty is a function type
244         -- Without this check we barf in the desugarer on
245         --      f op = (3 `op`)
246         -- because it tries to desugar to
247         --      f op = \r -> 3 op r
248         -- so (3 `op`) had better be a function!
249     tcAddErrCtxt (sectionLAppCtxt in_expr) $
250     unifyFunTy res_ty                   `thenTc_`
251
252     returnTc (SectionL arg' op', lie)
253
254 -- Right sections, equivalent to \ x -> x op expr, or
255 --      \ x -> op x expr
256
257 tcMonoExpr in_expr@(SectionR op expr) res_ty
258   = tcExpr_id op                `thenTc`    \ (op', lie1, op_ty) ->
259     tcAddErrCtxt (sectionRAppCtxt in_expr) $
260     split_fun_ty op_ty 2 {- two args -}                 `thenTc` \ ([arg1_ty, arg2_ty], op_res_ty) ->
261     tcMonoExpr expr arg2_ty                             `thenTc` \ (expr',lie2) ->
262     unifyTauTy res_ty (mkFunTy arg1_ty op_res_ty)       `thenTc_`
263     returnTc (SectionR op' expr', lie1 `plusLIE` lie2)
264 \end{code}
265
266 The interesting thing about @ccall@ is that it is just a template
267 which we instantiate by filling in details about the types of its
268 argument and result (ie minimal typechecking is performed).  So, the
269 basic story is that we allocate a load of type variables (to hold the
270 arg/result types); unify them with the args/result; and store them for
271 later use.
272
273 \begin{code}
274 tcMonoExpr (HsCCall lbl args may_gc is_asm ignored_fake_result_ty) res_ty
275   =     -- Get the callable and returnable classes.
276     tcLookupClass cCallableClassName    `thenNF_Tc` \ cCallableClass ->
277     tcLookupClass cReturnableClassName  `thenNF_Tc` \ cReturnableClass ->
278     tcLookupTyCon ioTyConName           `thenNF_Tc` \ ioTyCon ->
279     let
280         new_arg_dict (arg, arg_ty)
281           = newClassDicts (CCallOrigin (_UNPK_ lbl) (Just arg))
282                           [(cCallableClass, [arg_ty])]  `thenNF_Tc` \ (arg_dicts, _) ->
283             returnNF_Tc arg_dicts       -- Actually a singleton bag
284
285         result_origin = CCallOrigin (_UNPK_ lbl) Nothing {- Not an arg -}
286     in
287
288         -- Arguments
289     let n_args = length args
290         tv_idxs | n_args == 0 = []
291                 | otherwise   = [1..n_args]
292     in
293     newTyVarTys (length tv_idxs) openTypeKind           `thenNF_Tc` \ arg_tys ->
294     tcMonoExprs args arg_tys                            `thenTc`    \ (args', args_lie) ->
295
296         -- The argument types can be unboxed or boxed; the result
297         -- type must, however, be boxed since it's an argument to the IO
298         -- type constructor.
299     newTyVarTy boxedTypeKind            `thenNF_Tc` \ result_ty ->
300     let
301         io_result_ty = mkTyConApp ioTyCon [result_ty]
302     in
303     unifyTauTy res_ty io_result_ty              `thenTc_`
304
305         -- Construct the extra insts, which encode the
306         -- constraints on the argument and result types.
307     mapNF_Tc new_arg_dict (zipEqual "tcMonoExpr:CCall" args arg_tys)    `thenNF_Tc` \ ccarg_dicts_s ->
308     newClassDicts result_origin [(cReturnableClass, [result_ty])]       `thenNF_Tc` \ (ccres_dict, _) ->
309     returnTc (HsCCall lbl args' may_gc is_asm io_result_ty,
310               foldr plusLIE ccres_dict ccarg_dicts_s `plusLIE` args_lie)
311 \end{code}
312
313 \begin{code}
314 tcMonoExpr (HsSCC lbl expr) res_ty
315   = tcMonoExpr expr res_ty              `thenTc` \ (expr', lie) ->
316     returnTc (HsSCC lbl expr', lie)
317
318 tcMonoExpr (HsLet binds expr) res_ty
319   = tcBindsAndThen
320         combiner
321         binds                   -- Bindings to check
322         tc_expr         `thenTc` \ (expr', lie) ->
323     returnTc (expr', lie)
324   where
325     tc_expr = tcMonoExpr expr res_ty `thenTc` \ (expr', lie) ->
326               returnTc (expr', lie)
327     combiner is_rec bind expr = HsLet (mkMonoBind bind [] is_rec) expr
328
329 tcMonoExpr in_expr@(HsCase scrut matches src_loc) res_ty
330   = tcAddSrcLoc src_loc                 $
331     tcAddErrCtxt (caseCtxt in_expr)     $
332
333         -- Typecheck the case alternatives first.
334         -- The case patterns tend to give good type info to use
335         -- when typechecking the scrutinee.  For example
336         --      case (map f) of
337         --        (x:xs) -> ...
338         -- will report that map is applied to too few arguments
339         --
340         -- Not only that, but it's better to check the matches on their
341         -- own, so that we get the expected results for scoped type variables.
342         --      f x = case x of
343         --              (p::a, q::b) -> (q,p)
344         -- The above should work: the match (p,q) -> (q,p) is polymorphic as
345         -- claimed by the pattern signatures.  But if we typechecked the
346         -- match with x in scope and x's type as the expected type, we'd be hosed.
347
348     tcMatchesCase matches res_ty        `thenTc`    \ (scrut_ty, matches', lie2) ->
349
350     tcAddErrCtxt (caseScrutCtxt scrut)  (
351       tcMonoExpr scrut scrut_ty
352     )                                   `thenTc`    \ (scrut',lie1) ->
353
354     returnTc (HsCase scrut' matches' src_loc, plusLIE lie1 lie2)
355
356 tcMonoExpr (HsIf pred b1 b2 src_loc) res_ty
357   = tcAddSrcLoc src_loc $
358     tcAddErrCtxt (predCtxt pred) (
359     tcMonoExpr pred boolTy      )       `thenTc`    \ (pred',lie1) ->
360
361     tcMonoExpr b1 res_ty                `thenTc`    \ (b1',lie2) ->
362     tcMonoExpr b2 res_ty                `thenTc`    \ (b2',lie3) ->
363     returnTc (HsIf pred' b1' b2' src_loc, plusLIE lie1 (plusLIE lie2 lie3))
364 \end{code}
365
366 \begin{code}
367 tcMonoExpr expr@(HsDo do_or_lc stmts src_loc) res_ty
368   = tcDoStmts do_or_lc stmts src_loc res_ty
369 \end{code}
370
371 \begin{code}
372 tcMonoExpr in_expr@(ExplicitList exprs) res_ty  -- Non-empty list
373   = unifyListTy res_ty                        `thenTc` \ elt_ty ->  
374     mapAndUnzipTc (tc_elt elt_ty) exprs       `thenTc` \ (exprs', lies) ->
375     returnTc (ExplicitListOut elt_ty exprs', plusLIEs lies)
376   where
377     tc_elt elt_ty expr
378       = tcAddErrCtxt (listCtxt expr) $
379         tcMonoExpr expr elt_ty
380
381 tcMonoExpr (ExplicitTuple exprs boxity) res_ty
382   = unifyTupleTy boxity (length exprs) res_ty   `thenTc` \ arg_tys ->
383     mapAndUnzipTc (\ (expr, arg_ty) -> tcMonoExpr expr arg_ty)
384                (exprs `zip` arg_tys) -- we know they're of equal length.
385                                                 `thenTc` \ (exprs', lies) ->
386     returnTc (ExplicitTuple exprs' boxity, plusLIEs lies)
387
388 tcMonoExpr expr@(RecordCon con_name rbinds) res_ty
389   = tcAddErrCtxt (recordConCtxt expr)           $
390     tcId con_name                       `thenNF_Tc` \ (con_expr, con_lie, con_tau) ->
391     let
392         (_, record_ty) = splitFunTys con_tau
393         (tycon, ty_args, _) = splitAlgTyConApp record_ty
394     in
395     ASSERT( maybeToBool (splitAlgTyConApp_maybe record_ty ) )
396     unifyTauTy res_ty record_ty          `thenTc_`
397
398         -- Check that the record bindings match the constructor
399         -- con_name is syntactically constrained to be a data constructor
400     tcLookupDataCon con_name    `thenTc` \ data_con ->
401     let
402         bad_fields = badFields rbinds data_con
403     in
404     if not (null bad_fields) then
405         mapNF_Tc (addErrTc . badFieldCon con_name) bad_fields   `thenNF_Tc_`
406         failTc  -- Fail now, because tcRecordBinds will crash on a bad field
407     else
408
409         -- Typecheck the record bindings
410     tcRecordBinds tycon ty_args rbinds          `thenTc` \ (rbinds', rbinds_lie) ->
411     
412     let
413       missing_s_fields = missingStrictFields rbinds data_con
414     in
415     checkTcM (null missing_s_fields)
416         (mapNF_Tc (addErrTc . missingStrictFieldCon con_name) missing_s_fields `thenNF_Tc_`
417          returnNF_Tc ())  `thenNF_Tc_`
418     let
419       missing_fields = missingFields rbinds data_con
420     in
421     doptsTc Opt_WarnMissingFields `thenNF_Tc` \ warn ->
422     checkTcM (not (warn && not (null missing_fields)))
423         (mapNF_Tc ((warnTc True) . missingFieldCon con_name) missing_fields `thenNF_Tc_`
424          returnNF_Tc ())  `thenNF_Tc_`
425
426     returnTc (RecordConOut data_con con_expr rbinds', con_lie `plusLIE` rbinds_lie)
427
428 -- The main complication with RecordUpd is that we need to explicitly
429 -- handle the *non-updated* fields.  Consider:
430 --
431 --      data T a b = MkT1 { fa :: a, fb :: b }
432 --                 | MkT2 { fa :: a, fc :: Int -> Int }
433 --                 | MkT3 { fd :: a }
434 --      
435 --      upd :: T a b -> c -> T a c
436 --      upd t x = t { fb = x}
437 --
438 -- The type signature on upd is correct (i.e. the result should not be (T a b))
439 -- because upd should be equivalent to:
440 --
441 --      upd t x = case t of 
442 --                      MkT1 p q -> MkT1 p x
443 --                      MkT2 a b -> MkT2 p b
444 --                      MkT3 d   -> error ...
445 --
446 -- So we need to give a completely fresh type to the result record,
447 -- and then constrain it by the fields that are *not* updated ("p" above).
448 --
449 -- Note that because MkT3 doesn't contain all the fields being updated,
450 -- its RHS is simply an error, so it doesn't impose any type constraints
451 --
452 -- All this is done in STEP 4 below.
453
454 tcMonoExpr expr@(RecordUpd record_expr rbinds) res_ty
455   = tcAddErrCtxt (recordUpdCtxt expr)           $
456
457         -- STEP 0
458         -- Check that the field names are really field names
459     ASSERT( not (null rbinds) )
460     let 
461         field_names = [field_name | (field_name, _, _) <- rbinds]
462     in
463     mapNF_Tc tcLookupGlobal_maybe field_names           `thenNF_Tc` \ maybe_sel_ids ->
464     let
465         bad_guys = [ addErrTc (notSelector field_name) 
466                    | (field_name, maybe_sel_id) <- field_names `zip` maybe_sel_ids,
467                       case maybe_sel_id of
468                         Just (AnId sel_id) -> not (isRecordSelector sel_id)
469                         other              -> True
470                    ]
471     in
472     checkTcM (null bad_guys) (listNF_Tc bad_guys `thenNF_Tc_` failTc)   `thenTc_`
473     
474         -- STEP 1
475         -- Figure out the tycon and data cons from the first field name
476     let
477         (Just (AnId sel_id) : _)  = maybe_sel_ids
478         (_, _, tau)               = ASSERT( isNotUsgTy (idType sel_id) )
479                                     splitSigmaTy (idType sel_id)        -- Selectors can be overloaded
480                                                                         -- when the data type has a context
481         Just (data_ty, _)         = splitFunTy_maybe tau        -- Must succeed since sel_id is a selector
482         (tycon, _, data_cons)       = splitAlgTyConApp data_ty
483         (con_tyvars, _, _, _, _, _) = dataConSig (head data_cons)
484     in
485     tcInstTyVars con_tyvars                     `thenNF_Tc` \ (_, result_inst_tys, _) ->
486
487         -- STEP 2
488         -- Check that at least one constructor has all the named fields
489         -- i.e. has an empty set of bad fields returned by badFields
490     checkTc (any (null . badFields rbinds) data_cons)
491             (badFieldsUpd rbinds)               `thenTc_`
492
493         -- STEP 3
494         -- Typecheck the update bindings.
495         -- (Do this after checking for bad fields in case there's a field that
496         --  doesn't match the constructor.)
497     let
498         result_record_ty = mkTyConApp tycon result_inst_tys
499     in
500     unifyTauTy res_ty result_record_ty          `thenTc_`
501     tcRecordBinds tycon result_inst_tys rbinds  `thenTc` \ (rbinds', rbinds_lie) ->
502
503         -- STEP 4
504         -- Use the un-updated fields to find a vector of booleans saying
505         -- which type arguments must be the same in updatee and result.
506         --
507         -- WARNING: this code assumes that all data_cons in a common tycon
508         -- have FieldLabels abstracted over the same tyvars.
509     let
510         upd_field_lbls      = [recordSelectorFieldLabel sel_id | (sel_id, _, _) <- rbinds']
511         con_field_lbls_s    = map dataConFieldLabels data_cons
512
513                 -- A constructor is only relevant to this process if
514                 -- it contains all the fields that are being updated
515         relevant_field_lbls_s      = filter is_relevant con_field_lbls_s
516         is_relevant con_field_lbls = all (`elem` con_field_lbls) upd_field_lbls
517
518         non_upd_field_lbls  = concat relevant_field_lbls_s `minusList` upd_field_lbls
519         common_tyvars       = tyVarsOfTypes (map fieldLabelType non_upd_field_lbls)
520
521         mk_inst_ty (tyvar, result_inst_ty) 
522           | tyvar `elemVarSet` common_tyvars = returnNF_Tc result_inst_ty       -- Same as result type
523           | otherwise                               = newTyVarTy boxedTypeKind  -- Fresh type
524     in
525     mapNF_Tc mk_inst_ty (zip con_tyvars result_inst_tys)        `thenNF_Tc` \ inst_tys ->
526
527         -- STEP 5
528         -- Typecheck the expression to be updated
529     let
530         record_ty = mkTyConApp tycon inst_tys
531     in
532     tcMonoExpr record_expr record_ty                    `thenTc`    \ (record_expr', record_lie) ->
533
534         -- STEP 6
535         -- Figure out the LIE we need.  We have to generate some 
536         -- dictionaries for the data type context, since we are going to
537         -- do some construction.
538         --
539         -- What dictionaries do we need?  For the moment we assume that all
540         -- data constructors have the same context, and grab it from the first
541         -- constructor.  If they have varying contexts then we'd have to 
542         -- union the ones that could participate in the update.
543     let
544         (tyvars, theta, _, _, _, _) = dataConSig (head data_cons)
545         inst_env = mkTopTyVarSubst tyvars result_inst_tys
546         theta'   = substClasses inst_env theta
547     in
548     newClassDicts RecordUpdOrigin theta'        `thenNF_Tc` \ (con_lie, dicts) ->
549
550         -- Phew!
551     returnTc (RecordUpdOut record_expr' result_record_ty dicts rbinds', 
552               con_lie `plusLIE` record_lie `plusLIE` rbinds_lie)
553
554 tcMonoExpr (ArithSeqIn seq@(From expr)) res_ty
555   = unifyListTy res_ty                          `thenTc` \ elt_ty ->  
556     tcMonoExpr expr elt_ty                      `thenTc` \ (expr', lie1) ->
557
558     tcLookupGlobalId enumFromName               `thenNF_Tc` \ sel_id ->
559     newMethod (ArithSeqOrigin seq)
560               sel_id [elt_ty]                   `thenNF_Tc` \ (lie2, enum_from_id) ->
561
562     returnTc (ArithSeqOut (HsVar enum_from_id) (From expr'),
563               lie1 `plusLIE` lie2)
564
565 tcMonoExpr in_expr@(ArithSeqIn seq@(FromThen expr1 expr2)) res_ty
566   = tcAddErrCtxt (arithSeqCtxt in_expr) $ 
567     unifyListTy  res_ty                                 `thenTc`    \ elt_ty ->  
568     tcMonoExpr expr1 elt_ty                             `thenTc`    \ (expr1',lie1) ->
569     tcMonoExpr expr2 elt_ty                             `thenTc`    \ (expr2',lie2) ->
570     tcLookupGlobalId enumFromThenName                   `thenNF_Tc` \ sel_id ->
571     newMethod (ArithSeqOrigin seq) sel_id [elt_ty]      `thenNF_Tc` \ (lie3, enum_from_then_id) ->
572
573     returnTc (ArithSeqOut (HsVar enum_from_then_id)
574                            (FromThen expr1' expr2'),
575               lie1 `plusLIE` lie2 `plusLIE` lie3)
576
577 tcMonoExpr in_expr@(ArithSeqIn seq@(FromTo expr1 expr2)) res_ty
578   = tcAddErrCtxt (arithSeqCtxt in_expr) $
579     unifyListTy  res_ty                                 `thenTc`    \ elt_ty ->  
580     tcMonoExpr expr1 elt_ty                             `thenTc`    \ (expr1',lie1) ->
581     tcMonoExpr expr2 elt_ty                             `thenTc`    \ (expr2',lie2) ->
582     tcLookupGlobalId enumFromToName                     `thenNF_Tc` \ sel_id ->
583     newMethod (ArithSeqOrigin seq) sel_id [elt_ty]      `thenNF_Tc` \ (lie3, enum_from_to_id) ->
584
585     returnTc (ArithSeqOut (HsVar enum_from_to_id)
586                           (FromTo expr1' expr2'),
587               lie1 `plusLIE` lie2 `plusLIE` lie3)
588
589 tcMonoExpr in_expr@(ArithSeqIn seq@(FromThenTo expr1 expr2 expr3)) res_ty
590   = tcAddErrCtxt  (arithSeqCtxt in_expr) $
591     unifyListTy  res_ty                                 `thenTc`    \ elt_ty ->  
592     tcMonoExpr expr1 elt_ty                             `thenTc`    \ (expr1',lie1) ->
593     tcMonoExpr expr2 elt_ty                             `thenTc`    \ (expr2',lie2) ->
594     tcMonoExpr expr3 elt_ty                             `thenTc`    \ (expr3',lie3) ->
595     tcLookupGlobalId enumFromThenToName                 `thenNF_Tc` \ sel_id ->
596     newMethod (ArithSeqOrigin seq) sel_id [elt_ty]      `thenNF_Tc` \ (lie4, eft_id) ->
597
598     returnTc (ArithSeqOut (HsVar eft_id)
599                            (FromThenTo expr1' expr2' expr3'),
600               lie1 `plusLIE` lie2 `plusLIE` lie3 `plusLIE` lie4)
601 \end{code}
602
603 %************************************************************************
604 %*                                                                      *
605 \subsection{Expressions type signatures}
606 %*                                                                      *
607 %************************************************************************
608
609 \begin{code}
610 tcMonoExpr in_expr@(ExprWithTySig expr poly_ty) res_ty
611  = tcSetErrCtxt (exprSigCtxt in_expr)   $
612    tcHsSigType  poly_ty         `thenTc` \ sig_tc_ty ->
613
614    if not (isSigmaTy sig_tc_ty) then
615         -- Easy case
616         unifyTauTy sig_tc_ty res_ty     `thenTc_`
617         tcMonoExpr expr sig_tc_ty
618
619    else -- Signature is polymorphic
620         tcPolyExpr expr sig_tc_ty               `thenTc` \ (_, _, expr, expr_ty, lie) ->
621
622             -- Now match the signature type with res_ty.
623             -- We must not do this earlier, because res_ty might well
624             -- mention variables free in the environment, and we'd get
625             -- bogus complaints about not being able to for-all the
626             -- sig_tyvars
627         unifyTauTy res_ty expr_ty                       `thenTc_`
628
629             -- If everything is ok, return the stuff unchanged, except for
630             -- the effect of any substutions etc.  We simply discard the
631             -- result of the tcSimplifyAndCheck (inside tcPolyExpr), except for any default
632             -- resolution it may have done, which is recorded in the
633             -- substitution.
634         returnTc (expr, lie)
635 \end{code}
636
637 Implicit Parameter bindings.
638
639 \begin{code}
640 tcMonoExpr (HsWith expr binds) res_ty
641   = tcMonoExpr expr res_ty              `thenTc` \ (expr', lie) ->
642     tcIPBinds binds                     `thenTc` \ (binds', types, lie2) ->
643     partitionPredsOfLIE isBound lie     `thenTc` \ (ips, lie', dict_binds) ->
644     let expr'' = if nullMonoBinds dict_binds
645                  then expr'
646                  else HsLet (mkMonoBind (revBinds dict_binds) [] NonRecursive)
647                             expr'
648     in
649     tcCheckIPBinds binds' types ips     `thenTc_`
650     returnTc (HsWith expr'' binds', lie' `plusLIE` lie2)
651   where isBound p
652           = case ipName_maybe p of
653             Just n -> n `elem` names
654             Nothing -> False
655         names = map fst binds
656         -- revBinds is used because tcSimplify outputs the bindings
657         -- out-of-order.  it's not a problem elsewhere because these
658         -- bindings are normally used in a recursive let
659         -- ZZ probably need to find a better solution
660         revBinds (b1 `AndMonoBinds` b2) =
661             (revBinds b2) `AndMonoBinds` (revBinds b1)
662         revBinds b = b
663
664 tcIPBinds ((name, expr) : binds)
665   = newTyVarTy openTypeKind     `thenTc` \ ty ->
666     tcGetSrcLoc                 `thenTc` \ loc ->
667     let id = ipToId name ty loc in
668     tcMonoExpr expr ty          `thenTc` \ (expr', lie) ->
669     zonkTcType ty               `thenTc` \ ty' ->
670     tcIPBinds binds             `thenTc` \ (binds', types, lie2) ->
671     returnTc ((id, expr') : binds', ty : types, lie `plusLIE` lie2)
672 tcIPBinds [] = returnTc ([], [], emptyLIE)
673
674 tcCheckIPBinds binds types ips
675   = foldrTc tcCheckIPBind (getIPsOfLIE ips) (zip binds types)
676
677 -- ZZ how do we use the loc?
678 tcCheckIPBind bt@((v, _), t1) ((n, t2) : ips) | getName v == n
679   = unifyTauTy t1 t2            `thenTc_`
680     tcCheckIPBind bt ips        `thenTc` \ ips' ->
681     returnTc ips'
682 tcCheckIPBind bt (ip : ips)
683   = tcCheckIPBind bt ips        `thenTc` \ ips' ->
684     returnTc (ip : ips')
685 tcCheckIPBind bt []
686   = returnTc []
687 \end{code}
688
689 Typecheck expression which in most cases will be an Id.
690
691 \begin{code}
692 tcExpr_id :: RenamedHsExpr
693            -> TcM (TcExpr,
694                      LIE,
695                      TcType)
696 tcExpr_id id_expr
697  = case id_expr of
698         HsVar name -> tcId name                 `thenNF_Tc` \ stuff -> 
699                       returnTc stuff
700         other      -> newTyVarTy openTypeKind   `thenNF_Tc` \ id_ty ->
701                       tcMonoExpr id_expr id_ty  `thenTc`    \ (id_expr', lie_id) ->
702                       returnTc (id_expr', lie_id, id_ty) 
703 \end{code}
704
705 %************************************************************************
706 %*                                                                      *
707 \subsection{@tcApp@ typchecks an application}
708 %*                                                                      *
709 %************************************************************************
710
711 \begin{code}
712
713 tcApp :: RenamedHsExpr -> [RenamedHsExpr]       -- Function and args
714       -> TcType                                 -- Expected result type of application
715       -> TcM (TcExpr, [TcExpr],         -- Translated fun and args
716                 LIE)
717
718 tcApp fun args res_ty
719   =     -- First type-check the function
720     tcExpr_id fun                               `thenTc` \ (fun', lie_fun, fun_ty) ->
721
722     tcAddErrCtxt (wrongArgsCtxt "too many" fun args) (
723         split_fun_ty fun_ty (length args)
724     )                                           `thenTc` \ (expected_arg_tys, actual_result_ty) ->
725
726         -- Unify with expected result before type-checking the args
727         -- This is when we might detect a too-few args situation
728     tcAddErrCtxtM (checkArgsCtxt fun args res_ty actual_result_ty) (
729        unifyTauTy res_ty actual_result_ty
730     )                                                   `thenTc_`
731
732         -- Now typecheck the args
733     mapAndUnzipTc (tcArg fun)
734           (zip3 args expected_arg_tys [1..])    `thenTc` \ (args', lie_args_s) ->
735
736     -- Check that the result type doesn't have any nested for-alls.
737     -- For example, a "build" on its own is no good; it must be applied to something.
738     checkTc (isTauTy actual_result_ty)
739             (lurkingRank2Err fun actual_result_ty)      `thenTc_`
740
741     returnTc (fun', args', lie_fun `plusLIE` plusLIEs lie_args_s)
742
743
744 -- If an error happens we try to figure out whether the
745 -- function has been given too many or too few arguments,
746 -- and say so
747 checkArgsCtxt fun args expected_res_ty actual_res_ty tidy_env
748   = zonkTcType expected_res_ty    `thenNF_Tc` \ exp_ty' ->
749     zonkTcType actual_res_ty      `thenNF_Tc` \ act_ty' ->
750     let
751       (env1, exp_ty'') = tidyOpenType tidy_env exp_ty'
752       (env2, act_ty'') = tidyOpenType env1     act_ty'
753       (exp_args, _) = splitFunTys exp_ty''
754       (act_args, _) = splitFunTys act_ty''
755
756       message | length exp_args < length act_args = wrongArgsCtxt "too few" fun args
757               | length exp_args > length act_args = wrongArgsCtxt "too many" fun args
758               | otherwise                         = appCtxt fun args
759     in
760     returnNF_Tc (env2, message)
761
762
763 split_fun_ty :: TcType          -- The type of the function
764              -> Int                     -- Number of arguments
765              -> TcM ([TcType],  -- Function argument types
766                        TcType)  -- Function result types
767
768 split_fun_ty fun_ty 0 
769   = returnTc ([], fun_ty)
770
771 split_fun_ty fun_ty n
772   =     -- Expect the function to have type A->B
773     unifyFunTy fun_ty           `thenTc` \ (arg_ty, res_ty) ->
774     split_fun_ty res_ty (n-1)   `thenTc` \ (arg_tys, final_res_ty) ->
775     returnTc (arg_ty:arg_tys, final_res_ty)
776 \end{code}
777
778 \begin{code}
779 tcArg :: RenamedHsExpr                  -- The function (for error messages)
780       -> (RenamedHsExpr, TcType, Int)   -- Actual argument and expected arg type
781       -> TcM (TcExpr, LIE)      -- Resulting argument and LIE
782
783 tcArg the_fun (arg, expected_arg_ty, arg_no)
784   = tcAddErrCtxt (funAppCtxt the_fun arg arg_no) $
785     tcExpr arg expected_arg_ty
786 \end{code}
787
788
789 %************************************************************************
790 %*                                                                      *
791 \subsection{@tcId@ typchecks an identifier occurrence}
792 %*                                                                      *
793 %************************************************************************
794
795 Between the renamer and the first invocation of the UsageSP inference,
796 identifiers read from interface files will have usage information in
797 their types, whereas other identifiers will not.  The unannotTy here
798 in @tcId@ prevents this information from pointlessly propagating
799 further prior to the first usage inference.
800
801 \begin{code}
802 tcId :: Name -> NF_TcM (TcExpr, LIE, TcType)
803
804 tcId name
805   =     -- Look up the Id and instantiate its type
806     tcLookup name                       `thenNF_Tc` \ thing ->
807     case thing of
808       ATcId tc_id       -> instantiate_it (OccurrenceOf tc_id) tc_id (idType tc_id)
809       AGlobal (AnId id) -> tcInstId id                  `thenNF_Tc` \ (tyvars, theta, tau) ->
810                            instantiate_it2 (OccurrenceOf id) id tyvars theta tau
811
812   where
813         -- The instantiate_it loop runs round instantiating the Id.
814         -- It has to be a loop because we are now prepared to entertain
815         -- types like
816         --              f:: forall a. Eq a => forall b. Baz b => tau
817         -- We want to instantiate this to
818         --              f2::tau         {f2 = f1 b (Baz b), f1 = f a (Eq a)}
819     instantiate_it orig fun ty
820       = tcInstTcType ty         `thenNF_Tc` \ (tyvars, rho) ->
821         tcSplitRhoTy rho        `thenNF_Tc` \ (theta, tau) ->
822         instantiate_it2 orig fun tyvars theta tau
823
824     instantiate_it2 orig fun tyvars theta tau
825       = if null theta then      -- Is it overloaded?
826                 returnNF_Tc (mkHsTyApp (HsVar fun) arg_tys, emptyLIE, tau)
827         else
828                 -- Yes, it's overloaded
829         instOverloadedFun orig fun arg_tys theta tau    `thenNF_Tc` \ (fun', lie1) ->
830         instantiate_it orig fun' tau                    `thenNF_Tc` \ (expr, lie2, final_tau) ->
831         returnNF_Tc (expr, lie1 `plusLIE` lie2, final_tau)
832
833       where
834         arg_tys = mkTyVarTys tyvars
835 \end{code}
836
837 %************************************************************************
838 %*                                                                      *
839 \subsection{@tcDoStmts@ typechecks a {\em list} of do statements}
840 %*                                                                      *
841 %************************************************************************
842
843 \begin{code}
844 tcDoStmts do_or_lc stmts src_loc res_ty
845   =     -- get the Monad and MonadZero classes
846         -- create type consisting of a fresh monad tyvar
847     ASSERT( not (null stmts) )
848     tcAddSrcLoc src_loc $
849
850     newTyVarTy (mkArrowKind boxedTypeKind boxedTypeKind)        `thenNF_Tc` \ m ->
851     newTyVarTy boxedTypeKind                                    `thenNF_Tc` \ elt_ty ->
852     unifyTauTy res_ty (mkAppTy m elt_ty)                        `thenTc_`
853
854         -- If it's a comprehension we're dealing with, 
855         -- force it to be a list comprehension.
856         -- (as of Haskell 98, monad comprehensions are no more.)
857     (case do_or_lc of
858        ListComp -> unifyListTy res_ty `thenTc_` returnTc ()
859        _        -> returnTc ())                                 `thenTc_`
860
861     tcStmts do_or_lc (mkAppTy m) stmts elt_ty   `thenTc`   \ (stmts', stmts_lie) ->
862
863         -- Build the then and zero methods in case we need them
864         -- It's important that "then" and "return" appear just once in the final LIE,
865         -- not only for typechecker efficiency, but also because otherwise during
866         -- simplification we end up with silly stuff like
867         --      then = case d of (t,r) -> t
868         --      then = then
869         -- where the second "then" sees that it already exists in the "available" stuff.
870         --
871     tcLookupGlobalId returnMName                `thenNF_Tc` \ return_sel_id ->
872     tcLookupGlobalId thenMName                  `thenNF_Tc` \ then_sel_id ->
873     tcLookupGlobalId failMName                  `thenNF_Tc` \ fail_sel_id ->
874     newMethod DoOrigin return_sel_id [m]        `thenNF_Tc` \ (return_lie, return_id) ->
875     newMethod DoOrigin then_sel_id [m]          `thenNF_Tc` \ (then_lie, then_id) ->
876     newMethod DoOrigin fail_sel_id [m]          `thenNF_Tc` \ (fail_lie, fail_id) ->
877     let
878       monad_lie = then_lie `plusLIE` return_lie `plusLIE` fail_lie
879     in
880     returnTc (HsDoOut do_or_lc stmts' return_id then_id fail_id res_ty src_loc,
881               stmts_lie `plusLIE` monad_lie)
882 \end{code}
883
884
885 %************************************************************************
886 %*                                                                      *
887 \subsection{Record bindings}
888 %*                                                                      *
889 %************************************************************************
890
891 Game plan for record bindings
892 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
893 1. Find the TyCon for the bindings, from the first field label.
894
895 2. Instantiate its tyvars and unify (T a1 .. an) with expected_ty.
896
897 For each binding field = value
898
899 3. Instantiate the field type (from the field label) using the type
900    envt from step 2.
901
902 4  Type check the value using tcArg, passing the field type as 
903    the expected argument type.
904
905 This extends OK when the field types are universally quantified.
906
907         
908 \begin{code}
909 tcRecordBinds
910         :: TyCon                -- Type constructor for the record
911         -> [TcType]             -- Args of this type constructor
912         -> RenamedRecordBinds
913         -> TcM (TcRecordBinds, LIE)
914
915 tcRecordBinds tycon ty_args rbinds
916   = mapAndUnzipTc do_bind rbinds        `thenTc` \ (rbinds', lies) ->
917     returnTc (rbinds', plusLIEs lies)
918   where
919     tenv = mkTopTyVarSubst (tyConTyVars tycon) ty_args
920
921     do_bind (field_lbl_name, rhs, pun_flag)
922       = tcLookupGlobalId field_lbl_name         `thenNF_Tc` \ sel_id ->
923         let
924             field_lbl = recordSelectorFieldLabel sel_id
925             field_ty  = substTy tenv (fieldLabelType field_lbl)
926         in
927         ASSERT( isRecordSelector sel_id )
928                 -- This lookup and assertion will surely succeed, because
929                 -- we check that the fields are indeed record selectors
930                 -- before calling tcRecordBinds
931         ASSERT2( fieldLabelTyCon field_lbl == tycon, ppr field_lbl )
932                 -- The caller of tcRecordBinds has already checked
933                 -- that all the fields come from the same type
934
935         tcPolyExpr rhs field_ty         `thenTc` \ (rhs', lie, _, _, _) ->
936
937         returnTc ((sel_id, rhs', pun_flag), lie)
938
939 badFields rbinds data_con
940   = [field_name | (field_name, _, _) <- rbinds,
941                   not (field_name `elem` field_names)
942     ]
943   where
944     field_names = map fieldLabelName (dataConFieldLabels data_con)
945
946 missingStrictFields rbinds data_con
947   = [ fn | fn <- strict_field_names,
948                  not (fn `elem` field_names_used)
949     ]
950   where
951     field_names_used = [ field_name | (field_name, _, _) <- rbinds ]
952     strict_field_names = mapMaybe isStrict field_info
953
954     isStrict (fl, MarkedStrict) = Just (fieldLabelName fl)
955     isStrict _                  = Nothing
956
957     field_info = zip (dataConFieldLabels data_con)
958                      (dataConStrictMarks data_con)
959
960 missingFields rbinds data_con
961   = [ fn | fn <- non_strict_field_names, not (fn `elem` field_names_used) ]
962   where
963     field_names_used = [ field_name | (field_name, _, _) <- rbinds ]
964
965      -- missing strict fields have already been flagged as 
966      -- being so, so leave them out here.
967     non_strict_field_names = mapMaybe isn'tStrict field_info
968
969     isn'tStrict (fl, MarkedStrict) = Nothing
970     isn'tStrict (fl, _)            = Just (fieldLabelName fl)
971
972     field_info = zip (dataConFieldLabels data_con)
973                      (dataConStrictMarks data_con)
974
975 \end{code}
976
977 %************************************************************************
978 %*                                                                      *
979 \subsection{@tcMonoExprs@ typechecks a {\em list} of expressions}
980 %*                                                                      *
981 %************************************************************************
982
983 \begin{code}
984 tcMonoExprs :: [RenamedHsExpr] -> [TcType] -> TcM ([TcExpr], LIE)
985
986 tcMonoExprs [] [] = returnTc ([], emptyLIE)
987 tcMonoExprs (expr:exprs) (ty:tys)
988  = tcMonoExpr  expr  ty         `thenTc` \ (expr',  lie1) ->
989    tcMonoExprs exprs tys                `thenTc` \ (exprs', lie2) ->
990    returnTc (expr':exprs', lie1 `plusLIE` lie2)
991 \end{code}
992
993
994 %************************************************************************
995 %*                                                                      *
996 \subsection{Literals}
997 %*                                                                      *
998 %************************************************************************
999
1000 Overloaded literals.
1001
1002 \begin{code}
1003 tcLit :: HsLit -> TcType -> TcM (TcExpr, LIE)
1004 tcLit (HsLitLit s _) res_ty
1005   = tcLookupClass cCallableClassName                    `thenNF_Tc` \ cCallableClass ->
1006     newClassDicts (LitLitOrigin (_UNPK_ s))
1007                   [(cCallableClass,[res_ty])]           `thenNF_Tc` \ (dicts, _) ->
1008     returnTc (HsLit (HsLitLit s res_ty), dicts)
1009
1010 tcLit lit res_ty 
1011   = unifyTauTy res_ty (simpleHsLitTy lit)               `thenTc_`
1012     returnTc (HsLit lit, emptyLIE)
1013 \end{code}
1014
1015
1016 %************************************************************************
1017 %*                                                                      *
1018 \subsection{Errors and contexts}
1019 %*                                                                      *
1020 %************************************************************************
1021
1022 Mini-utils:
1023
1024 \begin{code}
1025 pp_nest_hang :: String -> SDoc -> SDoc
1026 pp_nest_hang lbl stuff = nest 2 (hang (text lbl) 4 stuff)
1027 \end{code}
1028
1029 Boring and alphabetical:
1030 \begin{code}
1031 arithSeqCtxt expr
1032   = hang (ptext SLIT("In an arithmetic sequence:")) 4 (ppr expr)
1033
1034 caseCtxt expr
1035   = hang (ptext SLIT("In the case expression:")) 4 (ppr expr)
1036
1037 caseScrutCtxt expr
1038   = hang (ptext SLIT("In the scrutinee of a case expression:")) 4 (ppr expr)
1039
1040 exprSigCtxt expr
1041   = hang (ptext SLIT("In an expression with a type signature:"))
1042          4 (ppr expr)
1043
1044 listCtxt expr
1045   = hang (ptext SLIT("In the list element:")) 4 (ppr expr)
1046
1047 predCtxt expr
1048   = hang (ptext SLIT("In the predicate expression:")) 4 (ppr expr)
1049
1050 sectionRAppCtxt expr
1051   = hang (ptext SLIT("In the right section:")) 4 (ppr expr)
1052
1053 sectionLAppCtxt expr
1054   = hang (ptext SLIT("In the left section:")) 4 (ppr expr)
1055
1056 funAppCtxt fun arg arg_no
1057   = hang (hsep [ ptext SLIT("In the"), speakNth arg_no, ptext SLIT("argument of"), 
1058                     quotes (ppr fun) <> text ", namely"])
1059          4 (quotes (ppr arg))
1060
1061 wrongArgsCtxt too_many_or_few fun args
1062   = hang (ptext SLIT("Probable cause:") <+> quotes (ppr fun)
1063                     <+> ptext SLIT("is applied to") <+> text too_many_or_few 
1064                     <+> ptext SLIT("arguments in the call"))
1065          4 (parens (ppr the_app))
1066   where
1067     the_app = foldl HsApp fun args      -- Used in error messages
1068
1069 appCtxt fun args
1070   = ptext SLIT("In the application") <+> quotes (ppr the_app)
1071   where
1072     the_app = foldl HsApp fun args      -- Used in error messages
1073
1074 lurkingRank2Err fun fun_ty
1075   = hang (hsep [ptext SLIT("Illegal use of"), quotes (ppr fun)])
1076          4 (vcat [ptext SLIT("It is applied to too few arguments"),  
1077                   ptext SLIT("so that the result type has for-alls in it:") <+> ppr fun_ty])
1078
1079 badFieldsUpd rbinds
1080   = hang (ptext SLIT("No constructor has all these fields:"))
1081          4 (pprQuotedList fields)
1082   where
1083     fields = [field | (field, _, _) <- rbinds]
1084
1085 recordUpdCtxt expr = ptext SLIT("In the record update:") <+> ppr expr
1086 recordConCtxt expr = ptext SLIT("In the record construction:") <+> ppr expr
1087
1088 notSelector field
1089   = hsep [quotes (ppr field), ptext SLIT("is not a record selector")]
1090
1091 missingStrictFieldCon :: Name -> Name -> SDoc
1092 missingStrictFieldCon con field
1093   = hsep [ptext SLIT("Constructor") <+> quotes (ppr con),
1094           ptext SLIT("does not have the required strict field"), quotes (ppr field)]
1095
1096 missingFieldCon :: Name -> Name -> SDoc
1097 missingFieldCon con field
1098   = hsep [ptext SLIT("Field") <+> quotes (ppr field),
1099           ptext SLIT("is not initialised")]
1100 \end{code}