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