Implement generalised list comprehensions
[ghc-hetmet.git] / compiler / typecheck / TcExpr.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5 \section[TcExpr]{Typecheck an expression}
6
7 \begin{code}
8 {-# OPTIONS -w #-}
9 -- The above warning supression flag is a temporary kludge.
10 -- While working on this module you are encouraged to remove it and fix
11 -- any warnings in the module. See
12 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
13 -- for details
14
15 module TcExpr ( tcPolyExpr, tcPolyExprNC, tcMonoExpr, tcInferRho, tcSyntaxOp ) where
16
17 #include "HsVersions.h"
18
19 #ifdef GHCI     /* Only if bootstrapped */
20 import {-# SOURCE #-}   TcSplice( tcSpliceExpr, tcBracket )
21 import qualified DsMeta
22 #endif
23
24 import HsSyn
25 import TcHsSyn
26 import TcRnMonad
27 import TcUnify
28 import BasicTypes
29 import Inst
30 import TcBinds
31 import TcEnv
32 import TcArrows
33 import TcMatches
34 import TcHsType
35 import TcPat
36 import TcMType
37 import TcType
38 import TcIface  ( checkWiredInTyCon )
39 import Id
40 import DataCon
41 import Name
42 import TyCon
43 import Type
44 import TypeRep
45 import Coercion
46 import Var
47 import VarSet
48 import TysWiredIn
49 import PrelNames
50 import PrimOp
51 import DynFlags
52 import StaticFlags
53 import HscTypes
54 import SrcLoc
55 import Util
56 import ListSetOps
57 import Maybes
58 import Outputable
59 import FastString
60 \end{code}
61
62 %************************************************************************
63 %*                                                                      *
64 \subsection{Main wrappers}
65 %*                                                                      *
66 %************************************************************************
67
68 \begin{code}
69 tcPolyExpr, tcPolyExprNC
70          :: LHsExpr Name                -- Expession to type check
71          -> BoxySigmaType               -- Expected type (could be a polytpye)
72          -> TcM (LHsExpr TcId)  -- Generalised expr with expected type
73
74 -- tcPolyExpr is a convenient place (frequent but not too frequent) place
75 -- to add context information.
76 -- The NC version does not do so, usually because the caller wants
77 -- to do so himself.
78
79 tcPolyExpr expr res_ty  
80   = addErrCtxt (exprCtxt (unLoc expr)) $
81     (do {traceTc (text "tcPolyExpr") ; tcPolyExprNC expr res_ty })
82
83 tcPolyExprNC expr res_ty 
84   | isSigmaTy res_ty
85   = do  { traceTc (text "tcPolyExprNC" <+> ppr res_ty)
86         ; (gen_fn, expr') <- tcGen res_ty emptyVarSet (\_ -> tcPolyExprNC expr)
87                 -- Note the recursive call to tcPolyExpr, because the
88                 -- type may have multiple layers of for-alls
89                 -- E.g. forall a. Eq a => forall b. Ord b => ....
90         ; return (mkLHsWrap gen_fn expr') }
91
92   | otherwise
93   = tcMonoExpr expr res_ty
94
95 ---------------
96 tcPolyExprs :: [LHsExpr Name] -> [TcType] -> TcM [LHsExpr TcId]
97 tcPolyExprs [] [] = returnM []
98 tcPolyExprs (expr:exprs) (ty:tys)
99  = do   { expr'  <- tcPolyExpr  expr  ty
100         ; exprs' <- tcPolyExprs exprs tys
101         ; returnM (expr':exprs') }
102 tcPolyExprs exprs tys = pprPanic "tcPolyExprs" (ppr exprs $$ ppr tys)
103
104 ---------------
105 tcMonoExpr :: LHsExpr Name      -- Expression to type check
106            -> BoxyRhoType       -- Expected type (could be a type variable)
107                                 -- Definitely no foralls at the top
108                                 -- Can contain boxes, which will be filled in
109            -> TcM (LHsExpr TcId)
110
111 tcMonoExpr (L loc expr) res_ty
112   = ASSERT( not (isSigmaTy res_ty) )
113     setSrcSpan loc $
114     do  { expr' <- tcExpr expr res_ty
115         ; return (L loc expr') }
116
117 ---------------
118 tcInferRho :: LHsExpr Name -> TcM (LHsExpr TcId, TcRhoType)
119 tcInferRho expr = tcInfer (tcMonoExpr expr)
120 \end{code}
121
122
123 %************************************************************************
124 %*                                                                      *
125         tcExpr: the main expression typechecker
126 %*                                                                      *
127 %************************************************************************
128
129 \begin{code}
130 tcExpr :: HsExpr Name -> BoxyRhoType -> TcM (HsExpr TcId)
131 tcExpr (HsVar name)     res_ty = tcId (OccurrenceOf name) name res_ty
132
133 tcExpr (HsLit lit)      res_ty = do { let lit_ty = hsLitType lit
134                                     ; coi <- boxyUnify lit_ty res_ty
135                                     ; return $ mkHsWrapCoI coi (HsLit lit)
136                                     }
137
138 tcExpr (HsPar expr)     res_ty = do { expr' <- tcMonoExpr expr res_ty
139                                     ; return (HsPar expr') }
140
141 tcExpr (HsSCC lbl expr) res_ty = do { expr' <- tcMonoExpr expr res_ty
142                                     ; returnM (HsSCC lbl expr') }
143 tcExpr (HsTickPragma info expr) res_ty 
144                                = do { expr' <- tcMonoExpr expr res_ty
145                                     ; returnM (HsTickPragma info expr') }
146
147 tcExpr (HsCoreAnn lbl expr) res_ty       -- hdaume: core annotation
148   = do  { expr' <- tcMonoExpr expr res_ty
149         ; return (HsCoreAnn lbl expr') }
150
151 tcExpr (HsOverLit lit) res_ty  
152   = do  { lit' <- tcOverloadedLit (LiteralOrigin lit) lit res_ty
153         ; return (HsOverLit lit') }
154
155 tcExpr (NegApp expr neg_expr) res_ty
156   = do  { neg_expr' <- tcSyntaxOp NegateOrigin neg_expr
157                                   (mkFunTy res_ty res_ty)
158         ; expr' <- tcMonoExpr expr res_ty
159         ; return (NegApp expr' neg_expr') }
160
161 tcExpr (HsIPVar ip) res_ty
162   = do  { let origin = IPOccOrigin ip
163                 -- Implicit parameters must have a *tau-type* not a 
164                 -- type scheme.  We enforce this by creating a fresh
165                 -- type variable as its type.  (Because res_ty may not
166                 -- be a tau-type.)
167         ; ip_ty <- newFlexiTyVarTy argTypeKind  -- argTypeKind: it can't be an unboxed tuple
168         ; co_fn <- tcSubExp origin ip_ty res_ty
169         ; (ip', inst) <- newIPDict origin ip ip_ty
170         ; extendLIE inst
171         ; return (mkHsWrap co_fn (HsIPVar ip')) }
172
173 tcExpr (HsApp e1 e2) res_ty 
174   = go e1 [e2]
175   where
176     go :: LHsExpr Name -> [LHsExpr Name] -> TcM (HsExpr TcId)
177     go (L _ (HsApp e1 e2)) args = go e1 (e2:args)
178     go lfun@(L loc fun) args
179         = do { (fun', args') <- -- addErrCtxt (callCtxt lfun args) $
180                                 tcApp fun (length args) (tcArgs lfun args) res_ty
181              ; traceTc (text "tcExpr args': " <+> ppr args')
182              ; return (unLoc (foldl mkHsApp (L loc fun') args')) }
183
184 tcExpr (HsLam match) res_ty
185   = do  { (co_fn, match') <- tcMatchLambda match res_ty
186         ; return (mkHsWrap co_fn (HsLam match')) }
187
188 tcExpr in_expr@(ExprWithTySig expr sig_ty) res_ty
189  = do   { sig_tc_ty <- tcHsSigType ExprSigCtxt sig_ty
190
191         -- Remember to extend the lexical type-variable environment
192         ; (gen_fn, expr') <- tcGen sig_tc_ty emptyVarSet (\ skol_tvs res_ty ->
193                              tcExtendTyVarEnv2 (hsExplicitTvs sig_ty `zip` mkTyVarTys skol_tvs) $
194                              tcPolyExprNC expr res_ty)
195
196         ; co_fn <- tcSubExp ExprSigOrigin sig_tc_ty res_ty
197         ; return (mkHsWrap co_fn (ExprWithTySigOut (mkLHsWrap gen_fn expr') sig_ty)) }
198
199 tcExpr (HsType ty) res_ty
200   = failWithTc (text "Can't handle type argument:" <+> ppr ty)
201         -- This is the syntax for type applications that I was planning
202         -- but there are difficulties (e.g. what order for type args)
203         -- so it's not enabled yet.
204         -- Can't eliminate it altogether from the parser, because the
205         -- same parser parses *patterns*.
206 \end{code}
207
208
209 %************************************************************************
210 %*                                                                      *
211                 Infix operators and sections
212 %*                                                                      *
213 %************************************************************************
214
215 \begin{code}
216 tcExpr in_expr@(OpApp arg1 lop@(L loc op) fix arg2) res_ty
217   = do  { (op', [arg1', arg2']) <- tcApp op 2 (tcArgs lop [arg1,arg2]) res_ty
218         ; return (OpApp arg1' (L loc op') fix arg2') }
219
220 -- Left sections, equivalent to
221 --      \ x -> e op x,
222 -- or
223 --      \ x -> op e x,
224 -- or just
225 --      op e
226 --
227 -- We treat it as similar to the latter, so we don't
228 -- actually require the function to take two arguments
229 -- at all.  For example, (x `not`) means (not x);
230 -- you get postfix operators!  Not really Haskell 98
231 -- I suppose, but it's less work and kind of useful.
232
233 tcExpr in_expr@(SectionL arg1 lop@(L loc op)) res_ty
234   = do  { (op', [arg1']) <- tcApp op 1 (tcArgs lop [arg1]) res_ty
235         ; return (SectionL arg1' (L loc op')) }
236
237 -- Right sections, equivalent to \ x -> x `op` expr, or
238 --      \ x -> op x expr
239  
240 tcExpr in_expr@(SectionR lop@(L loc op) arg2) res_ty
241   = do  { (co_fn, (op', arg2')) <- subFunTys doc 1 res_ty $ \ [arg1_ty'] res_ty' ->
242                                    tcApp op 2 (tc_args arg1_ty') res_ty'
243         ; return (mkHsWrap co_fn (SectionR (L loc op') arg2')) }
244   where
245     doc = ptext SLIT("The section") <+> quotes (ppr in_expr)
246                 <+> ptext SLIT("takes one argument")
247     tc_args arg1_ty' qtvs qtys [arg1_ty, arg2_ty] 
248         = do { boxyUnify arg1_ty' (substTyWith qtvs qtys arg1_ty)
249              ; arg2' <- tcArg lop 2 arg2 qtvs qtys arg2_ty 
250              ; qtys' <- mapM refineBox qtys     -- c.f. tcArgs 
251              ; return (qtys', arg2') }
252     tc_args arg1_ty' _ _ _ = panic "tcExpr SectionR"
253 \end{code}
254
255 \begin{code}
256 tcExpr (HsLet binds expr) res_ty
257   = do  { (binds', expr') <- tcLocalBinds binds $
258                              tcMonoExpr expr res_ty   
259         ; return (HsLet binds' expr') }
260
261 tcExpr (HsCase scrut matches) exp_ty
262   = do  {  -- We used to typecheck the case alternatives first.
263            -- The case patterns tend to give good type info to use
264            -- when typechecking the scrutinee.  For example
265            --   case (map f) of
266            --     (x:xs) -> ...
267            -- will report that map is applied to too few arguments
268            --
269            -- But now, in the GADT world, we need to typecheck the scrutinee
270            -- first, to get type info that may be refined in the case alternatives
271           (scrut', scrut_ty) <- addErrCtxt (caseScrutCtxt scrut)
272                                            (tcInferRho scrut)
273
274         ; traceTc (text "HsCase" <+> ppr scrut_ty)
275         ; matches' <- tcMatchesCase match_ctxt scrut_ty matches exp_ty
276         ; return (HsCase scrut' matches') }
277  where
278     match_ctxt = MC { mc_what = CaseAlt,
279                       mc_body = tcBody }
280
281 tcExpr (HsIf pred b1 b2) res_ty
282   = do  { pred' <- addErrCtxt (predCtxt pred) $
283                    tcMonoExpr pred boolTy
284         ; b1' <- tcMonoExpr b1 res_ty
285         ; b2' <- tcMonoExpr b2 res_ty
286         ; return (HsIf pred' b1' b2') }
287
288 tcExpr (HsDo do_or_lc stmts body _) res_ty
289   = tcDoStmts do_or_lc stmts body res_ty
290
291 tcExpr in_expr@(ExplicitList _ exprs) res_ty    -- Non-empty list
292   = do  { (elt_ty, coi) <- boxySplitListTy res_ty
293         ; exprs' <- mappM (tc_elt elt_ty) exprs
294         ; return $ mkHsWrapCoI coi (ExplicitList elt_ty exprs') }
295   where
296     tc_elt elt_ty expr = tcPolyExpr expr elt_ty
297
298 tcExpr in_expr@(ExplicitPArr _ exprs) res_ty    -- maybe empty
299   = do  { (elt_ty, coi) <- boxySplitPArrTy res_ty
300         ; exprs' <- mappM (tc_elt elt_ty) exprs 
301         ; ifM (null exprs) (zapToMonotype elt_ty)
302                 -- If there are no expressions in the comprehension
303                 -- we must still fill in the box
304                 -- (Not needed for [] and () becuase they happen
305                 --  to parse as data constructors.)
306         ; return $ mkHsWrapCoI coi (ExplicitPArr elt_ty exprs') }
307   where
308     tc_elt elt_ty expr = tcPolyExpr expr elt_ty
309
310 -- For tuples, take care to preserve rigidity
311 -- E.g.         case (x,y) of ....
312 --         The scrutinee should have a rigid type if x,y do
313 -- The general scheme is the same as in tcIdApp
314 tcExpr (ExplicitTuple exprs boxity) res_ty
315   = do  { tvs <- newBoxyTyVars [argTypeKind | e <- exprs]
316         ; let tup_tc     = tupleTyCon boxity (length exprs)
317               tup_res_ty = mkTyConApp tup_tc (mkTyVarTys tvs)
318         ; checkWiredInTyCon tup_tc      -- Ensure instances are available
319         ; arg_tys  <- preSubType tvs (mkVarSet tvs) tup_res_ty res_ty
320         ; exprs'   <- tcPolyExprs exprs arg_tys
321         ; arg_tys' <- mapM refineBox arg_tys
322         ; co_fn    <- tcSubExp TupleOrigin (mkTyConApp tup_tc arg_tys') res_ty
323         ; return (mkHsWrap co_fn (ExplicitTuple exprs' boxity)) }
324
325 tcExpr (HsProc pat cmd) res_ty
326   = do  { (pat', cmd', coi) <- tcProc pat cmd res_ty
327         ; return $ mkHsWrapCoI coi (HsProc pat' cmd') }
328
329 tcExpr e@(HsArrApp _ _ _ _ _) _
330   = failWithTc (vcat [ptext SLIT("The arrow command"), nest 2 (ppr e), 
331                       ptext SLIT("was found where an expression was expected")])
332
333 tcExpr e@(HsArrForm _ _ _) _
334   = failWithTc (vcat [ptext SLIT("The arrow command"), nest 2 (ppr e), 
335                       ptext SLIT("was found where an expression was expected")])
336 \end{code}
337
338 %************************************************************************
339 %*                                                                      *
340                 Record construction and update
341 %*                                                                      *
342 %************************************************************************
343
344 \begin{code}
345 tcExpr expr@(RecordCon (L loc con_name) _ rbinds) res_ty
346   = do  { data_con <- tcLookupDataCon con_name
347
348         -- Check for missing fields
349         ; checkMissingFields data_con rbinds
350
351         ; let arity = dataConSourceArity data_con
352               check_fields qtvs qtys arg_tys 
353                   = do  { let arg_tys' = substTys (zipOpenTvSubst qtvs qtys) arg_tys
354                         ; rbinds' <- tcRecordBinds data_con arg_tys' rbinds
355                         ; qtys' <- mapM refineBoxToTau qtys
356                         ; return (qtys', rbinds') }
357                 -- The refineBoxToTau ensures that all the boxes in arg_tys are indeed
358                 -- filled, which is the invariant expected by tcIdApp
359                 -- How could this not be the case?  Consider a record construction
360                 -- that does not mention all the fields.
361
362         ; (con_expr, rbinds') <- tcIdApp con_name arity check_fields res_ty
363
364         ; returnM (RecordCon (L loc (dataConWrapId data_con)) con_expr rbinds') }
365
366 -- The main complication with RecordUpd is that we need to explicitly
367 -- handle the *non-updated* fields.  Consider:
368 --
369 --      data T a b = MkT1 { fa :: a, fb :: b }
370 --                 | MkT2 { fa :: a, fc :: Int -> Int }
371 --                 | MkT3 { fd :: a }
372 --      
373 --      upd :: T a b -> c -> T a c
374 --      upd t x = t { fb = x}
375 --
376 -- The type signature on upd is correct (i.e. the result should not be (T a b))
377 -- because upd should be equivalent to:
378 --
379 --      upd t x = case t of 
380 --                      MkT1 p q -> MkT1 p x
381 --                      MkT2 a b -> MkT2 p b
382 --                      MkT3 d   -> error ...
383 --
384 -- So we need to give a completely fresh type to the result record,
385 -- and then constrain it by the fields that are *not* updated ("p" above).
386 --
387 -- Note that because MkT3 doesn't contain all the fields being updated,
388 -- its RHS is simply an error, so it doesn't impose any type constraints
389 --
390 -- All this is done in STEP 4 below.
391 --
392 -- Note about GADTs
393 -- ~~~~~~~~~~~~~~~~
394 -- For record update we require that every constructor involved in the
395 -- update (i.e. that has all the specified fields) is "vanilla".  I
396 -- don't know how to do the update otherwise.
397
398
399 tcExpr expr@(RecordUpd record_expr rbinds _ _ _) res_ty
400   =     -- STEP 0
401         -- Check that the field names are really field names
402     let 
403         field_names = hsRecFields rbinds
404     in
405     ASSERT( notNull field_names )
406     mappM tcLookupField field_names     `thenM` \ sel_ids ->
407         -- The renamer has already checked that they
408         -- are all in scope
409     let
410         bad_guys = [ setSrcSpan loc $ addErrTc (notSelector field_name) 
411                    | (fld, sel_id) <- rec_flds rbinds `zip` sel_ids,
412                      not (isRecordSelector sel_id),     -- Excludes class ops
413                      let L loc field_name = hsRecFieldId fld
414                    ]
415     in
416     checkM (null bad_guys) (sequenceM bad_guys `thenM_` failM)  `thenM_`
417     
418         -- STEP 1
419         -- Figure out the tycon and data cons from the first field name
420     let
421                 -- It's OK to use the non-tc splitters here (for a selector)
422         sel_id : _      = sel_ids
423         (tycon, _)      = recordSelectorFieldLabel sel_id       -- We've failed already if
424         data_cons       = tyConDataCons tycon                   -- it's not a field label
425                 -- NB: for a data type family, the tycon is the instance tycon
426
427         relevant_cons   = filter is_relevant data_cons
428         is_relevant con = all (`elem` dataConFieldLabels con) field_names
429     in
430
431         -- STEP 2
432         -- Check that at least one constructor has all the named fields
433         -- i.e. has an empty set of bad fields returned by badFields
434     checkTc (not (null relevant_cons))
435             (badFieldsUpd rbinds)       `thenM_`
436
437         -- Check that all relevant data cons are vanilla.  Doing record updates on 
438         -- GADTs and/or existentials is more than my tiny brain can cope with today
439     checkTc (all isVanillaDataCon relevant_cons)
440             (nonVanillaUpd tycon)       `thenM_`
441
442         -- STEP 4
443         -- Use the un-updated fields to find a vector of booleans saying
444         -- which type arguments must be the same in updatee and result.
445         --
446         -- WARNING: this code assumes that all data_cons in a common tycon
447         -- have FieldLabels abstracted over the same tyvars.
448     let
449                 -- A constructor is only relevant to this process if
450                 -- it contains *all* the fields that are being updated
451         con1 = ASSERT( not (null relevant_cons) ) head relevant_cons    -- A representative constructor
452         (con1_tyvars, theta, con1_arg_tys, con1_res_ty) = dataConSig con1
453         con1_flds     = dataConFieldLabels con1
454         common_tyvars = exactTyVarsOfTypes [ty | (fld,ty) <- con1_flds `zip` con1_arg_tys
455                                                , not (fld `elem` field_names) ]
456
457         is_common_tv tv = tv `elemVarSet` common_tyvars
458
459         mk_inst_ty tv result_inst_ty 
460           | is_common_tv tv = returnM result_inst_ty            -- Same as result type
461           | otherwise       = newFlexiTyVarTy (tyVarKind tv)    -- Fresh type, of correct kind
462     in
463     ASSERT( null theta )        -- Vanilla datacon
464     tcInstTyVars con1_tyvars                            `thenM` \ (_, result_inst_tys, result_inst_env) ->
465     zipWithM mk_inst_ty con1_tyvars result_inst_tys     `thenM` \ scrut_inst_tys ->
466
467         -- STEP 3: Typecheck the update bindings.
468         -- Do this after checking for bad fields in case 
469         -- there's a field that doesn't match the constructor.
470     let
471         result_ty     = substTy result_inst_env con1_res_ty
472         con1_arg_tys' = map (substTy result_inst_env) con1_arg_tys
473         origin        = RecordUpdOrigin
474     in
475     tcSubExp origin result_ty res_ty            `thenM` \ co_fn ->
476     tcRecordBinds con1 con1_arg_tys' rbinds     `thenM` \ rbinds' ->
477
478         -- STEP 5: Typecheck the expression to be updated
479     let
480         scrut_inst_env = zipTopTvSubst con1_tyvars scrut_inst_tys
481         scrut_ty = substTy scrut_inst_env con1_res_ty
482         -- This is one place where the isVanilla check is important
483         -- So that inst_tys matches the con1_tyvars
484     in
485     tcMonoExpr record_expr scrut_ty             `thenM` \ record_expr' ->
486
487         -- STEP 6: Figure out the LIE we need.  
488         -- We have to generate some dictionaries for the data type context, 
489         -- since we are going to do pattern matching over the data cons.
490         --
491         -- What dictionaries do we need?  The dataConStupidTheta tells us.
492     let
493         theta' = substTheta scrut_inst_env (dataConStupidTheta con1)
494     in
495     instStupidTheta origin theta'       `thenM_`
496
497         -- Step 7: make a cast for the scrutinee, in the case that it's from a type family
498     let scrut_co | Just co_con <- tyConFamilyCoercion_maybe tycon 
499                  = WpCo $ mkTyConApp co_con scrut_inst_tys
500                  | otherwise
501                  = idHsWrapper
502     in
503         -- Phew!
504     returnM (mkHsWrap co_fn (RecordUpd (mkLHsWrap scrut_co record_expr') rbinds'
505                                        relevant_cons scrut_inst_tys result_inst_tys))
506 \end{code}
507
508
509 %************************************************************************
510 %*                                                                      *
511         Arithmetic sequences                    e.g. [a,b..]
512         and their parallel-array counterparts   e.g. [: a,b.. :]
513                 
514 %*                                                                      *
515 %************************************************************************
516
517 \begin{code}
518 tcExpr (ArithSeq _ seq@(From expr)) res_ty
519   = do  { (elt_ty, coi) <- boxySplitListTy res_ty
520         ; expr' <- tcPolyExpr expr elt_ty
521         ; enum_from <- newMethodFromName (ArithSeqOrigin seq) 
522                               elt_ty enumFromName
523         ; return $ mkHsWrapCoI coi (ArithSeq (HsVar enum_from) (From expr')) }
524
525 tcExpr in_expr@(ArithSeq _ seq@(FromThen expr1 expr2)) res_ty
526   = do  { (elt_ty, coi) <- boxySplitListTy res_ty
527         ; expr1' <- tcPolyExpr expr1 elt_ty
528         ; expr2' <- tcPolyExpr expr2 elt_ty
529         ; enum_from_then <- newMethodFromName (ArithSeqOrigin seq) 
530                               elt_ty enumFromThenName
531         ; return $ mkHsWrapCoI coi 
532                     (ArithSeq (HsVar enum_from_then) (FromThen expr1' expr2')) }
533
534 tcExpr in_expr@(ArithSeq _ seq@(FromTo expr1 expr2)) res_ty
535   = do  { (elt_ty, coi) <- boxySplitListTy res_ty
536         ; expr1' <- tcPolyExpr expr1 elt_ty
537         ; expr2' <- tcPolyExpr expr2 elt_ty
538         ; enum_from_to <- newMethodFromName (ArithSeqOrigin seq) 
539                               elt_ty enumFromToName
540         ; return $ mkHsWrapCoI coi 
541                      (ArithSeq (HsVar enum_from_to) (FromTo expr1' expr2')) }
542
543 tcExpr in_expr@(ArithSeq _ seq@(FromThenTo expr1 expr2 expr3)) res_ty
544   = do  { (elt_ty, coi) <- boxySplitListTy res_ty
545         ; expr1' <- tcPolyExpr expr1 elt_ty
546         ; expr2' <- tcPolyExpr expr2 elt_ty
547         ; expr3' <- tcPolyExpr expr3 elt_ty
548         ; eft <- newMethodFromName (ArithSeqOrigin seq) 
549                       elt_ty enumFromThenToName
550         ; return $ mkHsWrapCoI coi 
551                      (ArithSeq (HsVar eft) (FromThenTo expr1' expr2' expr3')) }
552
553 tcExpr in_expr@(PArrSeq _ seq@(FromTo expr1 expr2)) res_ty
554   = do  { (elt_ty, coi) <- boxySplitPArrTy res_ty
555         ; expr1' <- tcPolyExpr expr1 elt_ty
556         ; expr2' <- tcPolyExpr expr2 elt_ty
557         ; enum_from_to <- newMethodFromName (PArrSeqOrigin seq) 
558                                       elt_ty enumFromToPName
559         ; return $ mkHsWrapCoI coi 
560                      (PArrSeq (HsVar enum_from_to) (FromTo expr1' expr2')) }
561
562 tcExpr in_expr@(PArrSeq _ seq@(FromThenTo expr1 expr2 expr3)) res_ty
563   = do  { (elt_ty, coi) <- boxySplitPArrTy res_ty
564         ; expr1' <- tcPolyExpr expr1 elt_ty
565         ; expr2' <- tcPolyExpr expr2 elt_ty
566         ; expr3' <- tcPolyExpr expr3 elt_ty
567         ; eft <- newMethodFromName (PArrSeqOrigin seq)
568                       elt_ty enumFromThenToPName
569         ; return $ mkHsWrapCoI coi 
570                      (PArrSeq (HsVar eft) (FromThenTo expr1' expr2' expr3')) }
571
572 tcExpr (PArrSeq _ _) _ 
573   = panic "TcExpr.tcMonoExpr: Infinite parallel array!"
574     -- the parser shouldn't have generated it and the renamer shouldn't have
575     -- let it through
576 \end{code}
577
578
579 %************************************************************************
580 %*                                                                      *
581                 Template Haskell
582 %*                                                                      *
583 %************************************************************************
584
585 \begin{code}
586 #ifdef GHCI     /* Only if bootstrapped */
587         -- Rename excludes these cases otherwise
588 tcExpr (HsSpliceE splice) res_ty = tcSpliceExpr splice res_ty
589 tcExpr (HsBracket brack)  res_ty = do   { e <- tcBracket brack res_ty
590                                         ; return (unLoc e) }
591 #endif /* GHCI */
592 \end{code}
593
594
595 %************************************************************************
596 %*                                                                      *
597                 Catch-all
598 %*                                                                      *
599 %************************************************************************
600
601 \begin{code}
602 tcExpr other _ = pprPanic "tcMonoExpr" (ppr other)
603 \end{code}
604
605
606 %************************************************************************
607 %*                                                                      *
608                 Applications
609 %*                                                                      *
610 %************************************************************************
611
612 \begin{code}
613 ---------------------------
614 tcApp :: HsExpr Name                            -- Function
615       -> Arity                                  -- Number of args reqd
616       -> ArgChecker results
617       -> BoxyRhoType                            -- Result type
618       -> TcM (HsExpr TcId, results)             
619
620 -- (tcFun fun n_args arg_checker res_ty)
621 -- The argument type checker, arg_checker, will be passed exactly n_args types
622
623 tcApp (HsVar fun_name) n_args arg_checker res_ty
624   = tcIdApp fun_name n_args arg_checker res_ty
625
626 tcApp fun n_args arg_checker res_ty     -- The vanilla case (rula APP)
627   = do  { arg_boxes  <- newBoxyTyVars (replicate n_args argTypeKind)
628         ; fun'       <- tcExpr fun (mkFunTys (mkTyVarTys arg_boxes) res_ty)
629         ; arg_tys'   <- mapM readFilledBox arg_boxes
630         ; (_, args') <- arg_checker [] [] arg_tys'      -- Yuk
631         ; return (fun', args') }
632
633 ---------------------------
634 tcIdApp :: Name                                 -- Function
635         -> Arity                                -- Number of args reqd
636         -> ArgChecker results   -- The arg-checker guarantees to fill all boxes in the arg types
637         -> BoxyRhoType                          -- Result type
638         -> TcM (HsExpr TcId, results)           
639
640 -- Call         (f e1 ... en) :: res_ty
641 -- Type         f :: forall a b c. theta => fa_1 -> ... -> fa_k -> fres
642 --                      (where k <= n; fres has the rest)
643 -- NB:  if k < n then the function doesn't have enough args, and
644 --      presumably fres is a type variable that we are going to 
645 --      instantiate with a function type
646 --
647 -- Then         fres <= bx_(k+1) -> ... -> bx_n -> res_ty
648
649 tcIdApp fun_name n_args arg_checker res_ty
650   = do  { let orig = OccurrenceOf fun_name
651         ; (fun, fun_ty) <- lookupFun orig fun_name
652
653         -- Split up the function type
654         ; let (tv_theta_prs, rho) = tcMultiSplitSigmaTy fun_ty
655               (fun_arg_tys, fun_res_ty) = tcSplitFunTysN rho n_args
656
657               qtvs = concatMap fst tv_theta_prs         -- Quantified tyvars
658               arg_qtvs = exactTyVarsOfTypes fun_arg_tys
659               res_qtvs = exactTyVarsOfType fun_res_ty
660                 -- NB: exactTyVarsOfType.  See Note [Silly type synonyms in smart-app]
661               tau_qtvs = arg_qtvs `unionVarSet` res_qtvs
662               k              = length fun_arg_tys       -- k <= n_args
663               n_missing_args = n_args - k               -- Always >= 0
664
665         -- Match the result type of the function with the
666         -- result type of the context, to get an inital substitution
667         ; extra_arg_boxes <- newBoxyTyVars (replicate n_missing_args argTypeKind)
668         ; let extra_arg_tys' = mkTyVarTys extra_arg_boxes
669               res_ty'        = mkFunTys extra_arg_tys' res_ty
670         ; qtys' <- preSubType qtvs tau_qtvs fun_res_ty res_ty'
671
672         -- Typecheck the arguments!
673         -- Doing so will fill arg_qtvs and extra_arg_tys'
674         ; (qtys'', args') <- arg_checker qtvs qtys' (fun_arg_tys ++ extra_arg_tys')
675
676         -- Strip boxes from the qtvs that have been filled in by the arg checking
677         ; extra_arg_tys'' <- mapM readFilledBox extra_arg_boxes
678
679         -- Result subsumption
680         -- This fills in res_qtvs
681         ; let res_subst = zipOpenTvSubst qtvs qtys''
682               fun_res_ty'' = substTy res_subst fun_res_ty
683               res_ty'' = mkFunTys extra_arg_tys'' res_ty
684         ; co_fn <- tcSubExp orig fun_res_ty'' res_ty''
685                             
686         -- And pack up the results
687         -- By applying the coercion just to the *function* we can make
688         -- tcFun work nicely for OpApp and Sections too
689         ; fun' <- instFun orig fun res_subst tv_theta_prs
690         ; co_fn' <- wrapFunResCoercion (substTys res_subst fun_arg_tys) co_fn
691         ; traceTc (text "tcIdApp: " <+> ppr (mkHsWrap co_fn' fun') <+> ppr tv_theta_prs <+> ppr co_fn' <+> ppr fun')
692         ; return (mkHsWrap co_fn' fun', args') }
693 \end{code}
694
695 Note [Silly type synonyms in smart-app]
696 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
697 When we call sripBoxyType, all of the boxes should be filled
698 in.  But we need to be careful about type synonyms:
699         type T a = Int
700         f :: T a -> Int
701         ...(f x)...
702 In the call (f x) we'll typecheck x, expecting it to have type
703 (T box).  Usually that would fill in the box, but in this case not;
704 because 'a' is discarded by the silly type synonym T.  So we must
705 use exactTyVarsOfType to figure out which type variables are free 
706 in the argument type.
707
708 \begin{code}
709 -- tcId is a specialisation of tcIdApp when there are no arguments
710 -- tcId f ty = do { (res, _) <- tcIdApp f [] (\[] -> return ()) ty
711 --                ; return res }
712
713 tcId :: InstOrigin
714      -> Name                                    -- Function
715      -> BoxyRhoType                             -- Result type
716      -> TcM (HsExpr TcId)
717 tcId orig fun_name res_ty
718   = do  { traceTc (text "tcId" <+> ppr fun_name <+> ppr res_ty)
719         ; (fun, fun_ty) <- lookupFun orig fun_name
720
721         -- Split up the function type
722         ; let (tv_theta_prs, fun_tau) = tcMultiSplitSigmaTy fun_ty
723               qtvs = concatMap fst tv_theta_prs -- Quantified tyvars
724               tau_qtvs = exactTyVarsOfType fun_tau      -- Mentioned in the tau part
725         ; qtv_tys <- preSubType qtvs tau_qtvs fun_tau res_ty
726
727         -- Do the subsumption check wrt the result type
728         ; let res_subst = zipTopTvSubst qtvs qtv_tys
729               fun_tau'  = substTy res_subst fun_tau
730
731         ; co_fn <- tcSubExp orig fun_tau' res_ty
732
733         -- And pack up the results
734         ; fun' <- instFun orig fun res_subst tv_theta_prs 
735         ; traceTc (text "tcId yields" <+> ppr (mkHsWrap co_fn fun'))
736         ; return (mkHsWrap co_fn fun') }
737
738 --      Note [Push result type in]
739 --
740 -- Unify with expected result before (was: after) type-checking the args
741 -- so that the info from res_ty (was: args) percolates to args (was actual_res_ty).
742 -- This is when we might detect a too-few args situation.
743 -- (One can think of cases when the opposite order would give
744 -- a better error message.)
745 -- [March 2003: I'm experimenting with putting this first.  Here's an 
746 --              example where it actually makes a real difference
747 --    class C t a b | t a -> b
748 --    instance C Char a Bool
749 --
750 --    data P t a = forall b. (C t a b) => MkP b
751 --    data Q t   = MkQ (forall a. P t a)
752
753 --    f1, f2 :: Q Char;
754 --    f1 = MkQ (MkP True)
755 --    f2 = MkQ (MkP True :: forall a. P Char a)
756 --
757 -- With the change, f1 will type-check, because the 'Char' info from
758 -- the signature is propagated into MkQ's argument. With the check
759 -- in the other order, the extra signature in f2 is reqd.]
760
761 ---------------------------
762 tcSyntaxOp :: InstOrigin -> HsExpr Name -> TcType -> TcM (HsExpr TcId)
763 -- Typecheck a syntax operator, checking that it has the specified type
764 -- The operator is always a variable at this stage (i.e. renamer output)
765 tcSyntaxOp orig (HsVar op) ty = tcId orig op ty
766 tcSyntaxOp orig other      ty = pprPanic "tcSyntaxOp" (ppr other)
767
768 ---------------------------
769 instFun :: InstOrigin
770         -> HsExpr TcId
771         -> TvSubst                -- The instantiating substitution
772         -> [([TyVar], ThetaType)] -- Stuff to instantiate
773         -> TcM (HsExpr TcId)    
774
775 instFun orig fun subst []
776   = return fun          -- Common short cut
777
778 instFun orig fun subst tv_theta_prs
779   = do  { let ty_theta_prs' = map subst_pr tv_theta_prs
780         ; traceTc (text "instFun" <+> ppr ty_theta_prs')
781                 -- Make two ad-hoc checks 
782         ; doStupidChecks fun ty_theta_prs'
783
784                 -- Now do normal instantiation
785         ; result <- go True fun ty_theta_prs' 
786         ; traceTc (text "instFun result" <+> ppr result)
787         ; return result
788         }
789   where
790     subst_pr (tvs, theta) 
791         = (substTyVars subst tvs, substTheta subst theta)
792
793     go _ fun [] = do {traceTc (text "go _ fun [] returns" <+> ppr fun) ; return fun }
794
795     go True (HsVar fun_id) ((tys,theta) : prs)
796         | want_method_inst theta
797         = do { traceTc (text "go (HsVar fun_id) ((tys,theta) : prs) | want_method_inst theta")
798              ; meth_id <- newMethodWithGivenTy orig fun_id tys
799              ; go False (HsVar meth_id) prs }
800                 -- Go round with 'False' to prevent further use
801                 -- of newMethod: see Note [Multiple instantiation]
802
803     go _ fun ((tys, theta) : prs)
804         = do { co_fn <- instCall orig tys theta
805              ; traceTc (text "go yields co_fn" <+> ppr co_fn)
806              ; go False (HsWrap co_fn fun) prs }
807
808         -- See Note [No method sharing]
809     want_method_inst theta =  not (null theta)  -- Overloaded
810                            && not opt_NoMethodSharing
811 \end{code}
812
813 Note [Multiple instantiation]
814 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
815 We are careful never to make a MethodInst that has, as its meth_id, another MethodInst.
816 For example, consider
817         f :: forall a. Eq a => forall b. Ord b => a -> b
818 At a call to f, at say [Int, Bool], it's tempting to translate the call to 
819
820         f_m1
821   where
822         f_m1 :: forall b. Ord b => Int -> b
823         f_m1 = f Int dEqInt
824
825         f_m2 :: Int -> Bool
826         f_m2 = f_m1 Bool dOrdBool
827
828 But notice that f_m2 has f_m1 as its meth_id.  Now the danger is that if we do
829 a tcSimplCheck with a Given f_mx :: f Int dEqInt, we may make a binding
830         f_m1 = f_mx
831 But it's entirely possible that f_m2 will continue to float out, because it
832 mentions no type variables.  Result, f_m1 isn't in scope.
833
834 Here's a concrete example that does this (test tc200):
835
836     class C a where
837       f :: Eq b => b -> a -> Int
838       baz :: Eq a => Int -> a -> Int
839
840     instance C Int where
841       baz = f
842
843 Current solution: only do the "method sharing" thing for the first type/dict
844 application, not for the iterated ones.  A horribly subtle point.
845
846 Note [No method sharing]
847 ~~~~~~~~~~~~~~~~~~~~~~~~
848 The -fno-method-sharing flag controls what happens so far as the LIE
849 is concerned.  The default case is that for an overloaded function we 
850 generate a "method" Id, and add the Method Inst to the LIE.  So you get
851 something like
852         f :: Num a => a -> a
853         f = /\a (d:Num a) -> let m = (+) a d in \ (x:a) -> m x x
854 If you specify -fno-method-sharing, the dictionary application 
855 isn't shared, so we get
856         f :: Num a => a -> a
857         f = /\a (d:Num a) (x:a) -> (+) a d x x
858 This gets a bit less sharing, but
859         a) it's better for RULEs involving overloaded functions
860         b) perhaps fewer separated lambdas
861
862 Note [Left to right]
863 ~~~~~~~~~~~~~~~~~~~~
864 tcArgs implements a left-to-right order, which goes beyond what is described in the
865 impredicative type inference paper.  In particular, it allows
866         runST $ foo
867 where runST :: (forall s. ST s a) -> a
868 When typechecking the application of ($)::(a->b) -> a -> b, we first check that
869 runST has type (a->b), thereby filling in a=forall s. ST s a.  Then we un-box this type
870 before checking foo.  The left-to-right order really helps here.
871
872 \begin{code}
873 tcArgs :: LHsExpr Name                          -- The function (for error messages)
874        -> [LHsExpr Name]                        -- Actual args
875        -> ArgChecker [LHsExpr TcId]
876
877 type ArgChecker results
878    = [TyVar] -> [TcSigmaType]           -- Current instantiation
879    -> [TcSigmaType]                     -- Expected arg types (**before** applying the instantiation)
880    -> TcM ([TcSigmaType], results)      -- Resulting instaniation and args
881
882 tcArgs fun args qtvs qtys arg_tys
883   = go 1 qtys args arg_tys
884   where
885     go n qtys [] [] = return (qtys, [])
886     go n qtys (arg:args) (arg_ty:arg_tys)
887         = do { arg' <- tcArg fun n arg qtvs qtys arg_ty
888              ; qtys' <- mapM refineBox qtys     -- Exploit new info
889              ; (qtys'', args') <- go (n+1) qtys' args arg_tys
890              ; return (qtys'', arg':args') }
891     go n qtys args arg_tys = panic "tcArgs"
892
893 tcArg :: LHsExpr Name                           -- The function
894       -> Int                                    --   and arg number (for error messages)
895       -> LHsExpr Name
896       -> [TyVar] -> [TcSigmaType]               -- Instantiate the arg type like this
897       -> BoxySigmaType
898       -> TcM (LHsExpr TcId)                     -- Resulting argument
899 tcArg fun arg_no arg qtvs qtys ty
900   = addErrCtxt (funAppCtxt fun arg arg_no) $
901     tcPolyExprNC arg (substTyWith qtvs qtys ty)
902 \end{code}
903
904
905 Note [tagToEnum#]
906 ~~~~~~~~~~~~~~~~~
907 Nasty check to ensure that tagToEnum# is applied to a type that is an
908 enumeration TyCon.  Unification may refine the type later, but this
909 check won't see that, alas.  It's crude but it works.
910
911 Here's are two cases that should fail
912         f :: forall a. a
913         f = tagToEnum# 0        -- Can't do tagToEnum# at a type variable
914
915         g :: Int
916         g = tagToEnum# 0        -- Int is not an enumeration
917
918
919 \begin{code}
920 doStupidChecks :: HsExpr TcId
921                -> [([TcType], ThetaType)]
922                -> TcM ()
923 -- Check two tiresome and ad-hoc cases
924 -- (a) the "stupid theta" for a data con; add the constraints
925 --     from the "stupid theta" of a data constructor (sigh)
926 -- (b) deal with the tagToEnum# problem: see Note [tagToEnum#]
927
928 doStupidChecks (HsVar fun_id) ((tys,_):_)
929   | Just con <- isDataConId_maybe fun_id   -- (a)
930   = addDataConStupidTheta con tys
931
932   | fun_id `hasKey` tagToEnumKey           -- (b)
933   = do  { tys' <- zonkTcTypes tys
934         ; checkTc (ok tys') (tagToEnumError tys')
935         }
936   where
937     ok []       = False
938     ok (ty:tys) = case tcSplitTyConApp_maybe ty of
939                         Just (tc,_) -> isEnumerationTyCon tc
940                         Nothing     -> False
941
942 doStupidChecks fun tv_theta_prs
943   = return () -- The common case
944                                       
945
946 tagToEnumError tys
947   = hang (ptext SLIT("Bad call to tagToEnum#") <+> at_type)
948          2 (vcat [ptext SLIT("Specify the type by giving a type signature"),
949                   ptext SLIT("e.g. (tagToEnum# x) :: Bool")])
950   where
951     at_type | null tys = empty  -- Probably never happens
952             | otherwise = ptext SLIT("at type") <+> ppr (head tys)
953 \end{code}
954
955 %************************************************************************
956 %*                                                                      *
957 \subsection{@tcId@ typechecks an identifier occurrence}
958 %*                                                                      *
959 %************************************************************************
960
961 \begin{code}
962 lookupFun :: InstOrigin -> Name -> TcM (HsExpr TcId, TcType)
963 lookupFun orig id_name
964   = do  { thing <- tcLookup id_name
965         ; case thing of
966             AGlobal (ADataCon con) -> return (HsVar wrap_id, idType wrap_id)
967                                    where
968                                       wrap_id = dataConWrapId con
969
970             AGlobal (AnId id) 
971                 | isNaughtyRecordSelector id -> failWithTc (naughtyRecordSel id)
972                 | otherwise                  -> return (HsVar id, idType id)
973                 -- A global cannot possibly be ill-staged
974                 -- nor does it need the 'lifting' treatment
975
976             ATcId { tct_id = id, tct_type = ty, tct_co = mb_co, tct_level = lvl }
977                 -> do { thLocalId orig id ty lvl
978                       ; case mb_co of
979                           Unrefineable    -> return (HsVar id, ty)
980                           Rigid co        -> return (mkHsWrap co (HsVar id), ty)        
981                           Wobbly          -> traceTc (text "lookupFun" <+> ppr id) >> return (HsVar id, ty)     -- Wobbly, or no free vars
982                           WobblyInvisible -> failWithTc (ppr id_name <+> ptext SLIT(" not in scope because it has a wobbly type (solution: add a type annotation)"))
983                       }
984
985             other -> failWithTc (ppr other <+> ptext SLIT("used where a value identifer was expected"))
986     }
987
988 #ifndef GHCI  /* GHCI and TH is off */
989 --------------------------------------
990 -- thLocalId : Check for cross-stage lifting
991 thLocalId orig id id_ty th_bind_lvl
992   = return ()
993
994 #else         /* GHCI and TH is on */
995 thLocalId orig id id_ty th_bind_lvl 
996   = do  { use_stage <- getStage -- TH case
997         ; case use_stage of
998             Brack use_lvl ps_var lie_var | use_lvl > th_bind_lvl
999                   -> thBrackId orig id ps_var lie_var
1000             other -> do { checkWellStaged (quotes (ppr id)) th_bind_lvl use_stage
1001                         ; return id }
1002         }
1003
1004 --------------------------------------
1005 thBrackId orig id ps_var lie_var
1006   | thTopLevelId id
1007   =     -- Top-level identifiers in this module,
1008         -- (which have External Names)
1009         -- are just like the imported case:
1010         -- no need for the 'lifting' treatment
1011         -- E.g.  this is fine:
1012         --   f x = x
1013         --   g y = [| f 3 |]
1014         -- But we do need to put f into the keep-alive
1015         -- set, because after desugaring the code will
1016         -- only mention f's *name*, not f itself.
1017     do  { keepAliveTc id; return id }
1018
1019   | otherwise
1020   =     -- Nested identifiers, such as 'x' in
1021         -- E.g. \x -> [| h x |]
1022         -- We must behave as if the reference to x was
1023         --      h $(lift x)     
1024         -- We use 'x' itself as the splice proxy, used by 
1025         -- the desugarer to stitch it all back together.
1026         -- If 'x' occurs many times we may get many identical
1027         -- bindings of the same splice proxy, but that doesn't
1028         -- matter, although it's a mite untidy.
1029     do  { let id_ty = idType id
1030         ; checkTc (isTauTy id_ty) (polySpliceErr id)
1031                -- If x is polymorphic, its occurrence sites might
1032                -- have different instantiations, so we can't use plain
1033                -- 'x' as the splice proxy name.  I don't know how to 
1034                -- solve this, and it's probably unimportant, so I'm
1035                -- just going to flag an error for now
1036    
1037         ; id_ty' <- zapToMonotype id_ty
1038                 -- The id_ty might have an OpenTypeKind, but we
1039                 -- can't instantiate the Lift class at that kind,
1040                 -- so we zap it to a LiftedTypeKind monotype
1041                 -- C.f. the call in TcPat.newLitInst
1042
1043         ; setLIEVar lie_var     $ do
1044         { lift <- newMethodFromName orig id_ty' DsMeta.liftName
1045                    -- Put the 'lift' constraint into the right LIE
1046            
1047                    -- Update the pending splices
1048         ; ps <- readMutVar ps_var
1049         ; writeMutVar ps_var ((idName id, nlHsApp (nlHsVar lift) (nlHsVar id)) : ps)
1050
1051         ; return id } }
1052 #endif /* GHCI */
1053 \end{code}
1054
1055
1056 %************************************************************************
1057 %*                                                                      *
1058 \subsection{Record bindings}
1059 %*                                                                      *
1060 %************************************************************************
1061
1062 Game plan for record bindings
1063 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1064 1. Find the TyCon for the bindings, from the first field label.
1065
1066 2. Instantiate its tyvars and unify (T a1 .. an) with expected_ty.
1067
1068 For each binding field = value
1069
1070 3. Instantiate the field type (from the field label) using the type
1071    envt from step 2.
1072
1073 4  Type check the value using tcArg, passing the field type as 
1074    the expected argument type.
1075
1076 This extends OK when the field types are universally quantified.
1077
1078         
1079 \begin{code}
1080 tcRecordBinds
1081         :: DataCon
1082         -> [TcType]     -- Expected type for each field
1083         -> HsRecordBinds Name
1084         -> TcM (HsRecordBinds TcId)
1085
1086 tcRecordBinds data_con arg_tys (HsRecFields rbinds dd)
1087   = do  { mb_binds <- mappM do_bind rbinds
1088         ; return (HsRecFields (catMaybes mb_binds) dd) }
1089   where
1090     flds_w_tys = zipEqual "tcRecordBinds" (dataConFieldLabels data_con) arg_tys
1091     do_bind fld@(HsRecField { hsRecFieldId = L loc field_lbl, hsRecFieldArg = rhs })
1092       | Just field_ty <- assocMaybe flds_w_tys field_lbl
1093       = addErrCtxt (fieldCtxt field_lbl)        $
1094         do { rhs'   <- tcPolyExprNC rhs field_ty
1095            ; sel_id <- tcLookupField field_lbl
1096            ; ASSERT( isRecordSelector sel_id )
1097              return (Just (fld { hsRecFieldId = L loc sel_id, hsRecFieldArg = rhs' })) }
1098       | otherwise
1099       = do { addErrTc (badFieldCon data_con field_lbl)
1100            ; return Nothing }
1101
1102 checkMissingFields :: DataCon -> HsRecordBinds Name -> TcM ()
1103 checkMissingFields data_con rbinds
1104   | null field_labels   -- Not declared as a record;
1105                         -- But C{} is still valid if no strict fields
1106   = if any isMarkedStrict field_strs then
1107         -- Illegal if any arg is strict
1108         addErrTc (missingStrictFields data_con [])
1109     else
1110         returnM ()
1111                         
1112   | otherwise           -- A record
1113   = checkM (null missing_s_fields)
1114            (addErrTc (missingStrictFields data_con missing_s_fields))   `thenM_`
1115
1116     doptM Opt_WarnMissingFields         `thenM` \ warn ->
1117     checkM (not (warn && notNull missing_ns_fields))
1118            (warnTc True (missingFields data_con missing_ns_fields))
1119
1120   where
1121     missing_s_fields
1122         = [ fl | (fl, str) <- field_info,
1123                  isMarkedStrict str,
1124                  not (fl `elem` field_names_used)
1125           ]
1126     missing_ns_fields
1127         = [ fl | (fl, str) <- field_info,
1128                  not (isMarkedStrict str),
1129                  not (fl `elem` field_names_used)
1130           ]
1131
1132     field_names_used = hsRecFields rbinds
1133     field_labels     = dataConFieldLabels data_con
1134
1135     field_info = zipEqual "missingFields"
1136                           field_labels
1137                           field_strs
1138
1139     field_strs = dataConStrictMarks data_con
1140 \end{code}
1141
1142 %************************************************************************
1143 %*                                                                      *
1144 \subsection{Errors and contexts}
1145 %*                                                                      *
1146 %************************************************************************
1147
1148 Boring and alphabetical:
1149 \begin{code}
1150 caseScrutCtxt expr
1151   = hang (ptext SLIT("In the scrutinee of a case expression:")) 4 (ppr expr)
1152
1153 exprCtxt expr
1154   = hang (ptext SLIT("In the expression:")) 4 (ppr expr)
1155
1156 fieldCtxt field_name
1157   = ptext SLIT("In the") <+> quotes (ppr field_name) <+> ptext SLIT("field of a record")
1158
1159 funAppCtxt fun arg arg_no
1160   = hang (hsep [ ptext SLIT("In the"), speakNth arg_no, ptext SLIT("argument of"), 
1161                     quotes (ppr fun) <> text ", namely"])
1162          4 (quotes (ppr arg))
1163
1164 predCtxt expr
1165   = hang (ptext SLIT("In the predicate expression:")) 4 (ppr expr)
1166
1167 nonVanillaUpd tycon
1168   = vcat [ptext SLIT("Record update for the non-Haskell-98 data type") 
1169                 <+> quotes (pprSourceTyCon tycon)
1170                 <+> ptext SLIT("is not (yet) supported"),
1171           ptext SLIT("Use pattern-matching instead")]
1172 badFieldsUpd rbinds
1173   = hang (ptext SLIT("No constructor has all these fields:"))
1174          4 (pprQuotedList (hsRecFields rbinds))
1175
1176 naughtyRecordSel sel_id
1177   = ptext SLIT("Cannot use record selector") <+> quotes (ppr sel_id) <+> 
1178     ptext SLIT("as a function due to escaped type variables") $$ 
1179     ptext SLIT("Probably fix: use pattern-matching syntax instead")
1180
1181 notSelector field
1182   = hsep [quotes (ppr field), ptext SLIT("is not a record selector")]
1183
1184 missingStrictFields :: DataCon -> [FieldLabel] -> SDoc
1185 missingStrictFields con fields
1186   = header <> rest
1187   where
1188     rest | null fields = empty  -- Happens for non-record constructors 
1189                                 -- with strict fields
1190          | otherwise   = colon <+> pprWithCommas ppr fields
1191
1192     header = ptext SLIT("Constructor") <+> quotes (ppr con) <+> 
1193              ptext SLIT("does not have the required strict field(s)") 
1194           
1195 missingFields :: DataCon -> [FieldLabel] -> SDoc
1196 missingFields con fields
1197   = ptext SLIT("Fields of") <+> quotes (ppr con) <+> ptext SLIT("not initialised:") 
1198         <+> pprWithCommas ppr fields
1199
1200 -- callCtxt fun args = ptext SLIT("In the call") <+> parens (ppr (foldl mkHsApp fun args))
1201
1202 #ifdef GHCI
1203 polySpliceErr :: Id -> SDoc
1204 polySpliceErr id
1205   = ptext SLIT("Can't splice the polymorphic local variable") <+> quotes (ppr id)
1206 #endif
1207 \end{code}