5fb0ec8f490b5d8b7cdccc79cd1b2ef0be6bee29
[ghc-hetmet.git] / compiler / deSugar / DsExpr.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[DsExpr]{Matching expressions (Exprs)}
5
6 \begin{code}
7 module DsExpr ( dsExpr, dsLExpr, dsLocalBinds, dsValBinds, dsLit ) where
8
9 #include "HsVersions.h"
10 #if defined(GHCI) && defined(BREAKPOINT)
11 import Foreign.StablePtr ( newStablePtr, castStablePtrToPtr )
12 import GHC.Exts         ( Ptr(..), Int(..), addr2Int# )
13 import IOEnv            ( ioToIOEnv )
14 import PrelNames        ( breakpointJumpName, breakpointCondJumpName )
15 import TysWiredIn       ( unitTy )
16 import TypeRep          ( Type(..) )
17 import TyCon            ( isUnLiftedTyCon )
18 #endif
19
20 import Match            ( matchWrapper, matchSinglePat, matchEquations )
21 import MatchLit         ( dsLit, dsOverLit )
22 import DsBinds          ( dsLHsBinds, dsCoercion )
23 import DsGRHSs          ( dsGuarded )
24 import DsListComp       ( dsListComp, dsPArrComp )
25 import DsUtils          ( mkErrorAppDs, mkStringExpr, mkConsExpr, mkNilExpr,
26                           extractMatchResult, cantFailMatchResult, matchCanFail,
27                           mkCoreTupTy, selectSimpleMatchVarL, lookupEvidence, selectMatchVar )
28 import DsArrows         ( dsProcExpr )
29 import DsMonad
30
31 #ifdef GHCI
32         -- Template Haskell stuff iff bootstrapped
33 import DsMeta           ( dsBracket )
34 #endif
35
36 import HsSyn
37 import TcHsSyn          ( hsPatType, mkVanillaTuplePat )
38
39 -- NB: The desugarer, which straddles the source and Core worlds, sometimes
40 --     needs to see source types (newtypes etc), and sometimes not
41 --     So WATCH OUT; check each use of split*Ty functions.
42 -- Sigh.  This is a pain.
43
44 import TcType           ( tcSplitAppTy, tcSplitFunTys, tcTyConAppTyCon, 
45                           tcTyConAppArgs, isUnLiftedType, Type, mkAppTy )
46 import Type             ( splitFunTys, isUnboxedTupleType, mkFunTy )
47 import CoreSyn
48 import CoreUtils        ( exprType, mkIfThenElse, bindNonRec )
49
50 import CostCentre       ( mkUserCC )
51 import Id               ( Id, idType, idName, idDataCon )
52 import PrelInfo         ( rEC_CON_ERROR_ID )
53 import DataCon          ( DataCon, dataConWrapId, dataConFieldLabels, dataConInstOrigArgTys )
54 import DataCon          ( isVanillaDataCon )
55 import TyCon            ( FieldLabel, tyConDataCons )
56 import TysWiredIn       ( tupleCon )
57 import BasicTypes       ( RecFlag(..), Boxity(..), ipNameName )
58 import PrelNames        ( toPName,
59                           returnMName, bindMName, thenMName, failMName,
60                           mfixName )
61 import SrcLoc           ( Located(..), unLoc, getLoc, noLoc )
62 import Util             ( zipEqual, zipWithEqual )
63 import Bag              ( bagToList )
64 import Outputable
65 import FastString
66 \end{code}
67
68
69 %************************************************************************
70 %*                                                                      *
71                 dsLocalBinds, dsValBinds
72 %*                                                                      *
73 %************************************************************************
74
75 \begin{code}
76 dsLocalBinds :: HsLocalBinds Id -> CoreExpr -> DsM CoreExpr
77 dsLocalBinds EmptyLocalBinds    body = return body
78 dsLocalBinds (HsValBinds binds) body = dsValBinds binds body
79 dsLocalBinds (HsIPBinds binds)  body = dsIPBinds  binds body
80
81 -------------------------
82 dsValBinds :: HsValBinds Id -> CoreExpr -> DsM CoreExpr
83 dsValBinds (ValBindsOut binds _) body = foldrDs ds_val_bind body binds
84
85 -------------------------
86 dsIPBinds (IPBinds ip_binds dict_binds) body
87   = do  { prs <- dsLHsBinds dict_binds
88         ; let inner = Let (Rec prs) body
89                 -- The dict bindings may not be in 
90                 -- dependency order; hence Rec
91         ; foldrDs ds_ip_bind inner ip_binds }
92   where
93     ds_ip_bind (L _ (IPBind n e)) body
94       = dsLExpr e       `thenDs` \ e' ->
95         returnDs (Let (NonRec (ipNameName n) e') body)
96
97 -------------------------
98 ds_val_bind :: (RecFlag, LHsBinds Id) -> CoreExpr -> DsM CoreExpr
99 -- Special case for bindings which bind unlifted variables
100 -- We need to do a case right away, rather than building
101 -- a tuple and doing selections.
102 -- Silently ignore INLINE and SPECIALISE pragmas...
103 ds_val_bind (NonRecursive, hsbinds) body
104   | [L _ (AbsBinds [] [] exports binds)] <- bagToList hsbinds,
105     (L loc bind : null_binds) <- bagToList binds,
106     isBangHsBind bind
107     || isUnboxedTupleBind bind
108     || or [isUnLiftedType (idType g) | (_, g, _, _) <- exports]
109   = let
110       body_w_exports                  = foldr bind_export body exports
111       bind_export (tvs, g, l, _) body = ASSERT( null tvs )
112                                         bindNonRec g (Var l) body
113     in
114     ASSERT (null null_binds)
115         -- Non-recursive, non-overloaded bindings only come in ones
116         -- ToDo: in some bizarre case it's conceivable that there
117         --       could be dict binds in the 'binds'.  (See the notes
118         --       below.  Then pattern-match would fail.  Urk.)
119     putSrcSpanDs loc    $
120     case bind of
121       FunBind { fun_id = L _ fun, fun_matches = matches, fun_co_fn = co_fn }
122         -> matchWrapper (FunRhs (idName fun)) matches           `thenDs` \ (args, rhs) ->
123            ASSERT( null args )  -- Functions aren't lifted
124            ASSERT( isIdCoercion co_fn )
125            returnDs (bindNonRec fun rhs body_w_exports)
126
127       PatBind {pat_lhs = pat, pat_rhs = grhss, pat_rhs_ty = ty }
128         ->      -- let C x# y# = rhs in body
129                 -- ==> case rhs of C x# y# -> body
130            putSrcSpanDs loc                     $
131            do { rhs <- dsGuarded grhss ty
132               ; let upat = unLoc pat
133                     eqn = EqnInfo { eqn_wrap = idWrapper, eqn_pats = [upat], 
134                                     eqn_rhs = cantFailMatchResult body_w_exports }
135               ; var    <- selectMatchVar upat ty
136               ; result <- matchEquations PatBindRhs [var] [eqn] (exprType body)
137               ; return (scrungleMatch var rhs result) }
138
139       other -> pprPanic "dsLet: unlifted" (pprLHsBinds hsbinds $$ ppr body)
140
141
142 -- Ordinary case for bindings; none should be unlifted
143 ds_val_bind (is_rec, binds) body
144   = do  { prs <- dsLHsBinds binds
145         ; ASSERT( not (any (isUnLiftedType . idType . fst) prs) )
146           case prs of
147             []    -> return body
148             other -> return (Let (Rec prs) body) }
149         -- Use a Rec regardless of is_rec. 
150         -- Why? Because it allows the binds to be all
151         -- mixed up, which is what happens in one rare case
152         -- Namely, for an AbsBind with no tyvars and no dicts,
153         --         but which does have dictionary bindings.
154         -- See notes with TcSimplify.inferLoop [NO TYVARS]
155         -- It turned out that wrapping a Rec here was the easiest solution
156         --
157         -- NB The previous case dealt with unlifted bindings, so we
158         --    only have to deal with lifted ones now; so Rec is ok
159
160 isUnboxedTupleBind :: HsBind Id -> Bool
161 isUnboxedTupleBind (PatBind { pat_rhs_ty = ty }) = isUnboxedTupleType ty
162 isUnboxedTupleBind other                         = False
163
164 scrungleMatch :: Id -> CoreExpr -> CoreExpr -> CoreExpr
165 -- Returns something like (let var = scrut in body)
166 -- but if var is an unboxed-tuple type, it inlines it in a fragile way
167 -- Special case to handle unboxed tuple patterns; they can't appear nested
168 -- The idea is that 
169 --      case e of (# p1, p2 #) -> rhs
170 -- should desugar to
171 --      case e of (# x1, x2 #) -> ... match p1, p2 ...
172 -- NOT
173 --      let x = e in case x of ....
174 --
175 -- But there may be a big 
176 --      let fail = ... in case e of ...
177 -- wrapping the whole case, which complicates matters slightly
178 -- It all seems a bit fragile.  Test is dsrun013.
179
180 scrungleMatch var scrut body
181   | isUnboxedTupleType (idType var) = scrungle body
182   | otherwise                       = bindNonRec var scrut body
183   where
184     scrungle (Case (Var x) bndr ty alts)
185                     | x == var = Case scrut bndr ty alts
186     scrungle (Let binds body)  = Let binds (scrungle body)
187     scrungle other = panic ("scrungleMatch: tuple pattern:\n" ++ showSDoc (ppr other))
188 \end{code}      
189
190 %************************************************************************
191 %*                                                                      *
192 \subsection[DsExpr-vars-and-cons]{Variables, constructors, literals}
193 %*                                                                      *
194 %************************************************************************
195
196 \begin{code}
197 dsLExpr :: LHsExpr Id -> DsM CoreExpr
198 dsLExpr (L loc e) = putSrcSpanDs loc $ dsExpr e
199
200 dsExpr :: HsExpr Id -> DsM CoreExpr
201
202 dsExpr (HsPar e)              = dsLExpr e
203 dsExpr (ExprWithTySigOut e _) = dsLExpr e
204 dsExpr (HsVar var)            = returnDs (Var var)
205 dsExpr (HsIPVar ip)           = returnDs (Var (ipNameName ip))
206 dsExpr (HsLit lit)            = dsLit lit
207 dsExpr (HsOverLit lit)        = dsOverLit lit
208
209 dsExpr (NegApp expr neg_expr) 
210   = do  { core_expr <- dsLExpr expr
211         ; core_neg  <- dsExpr neg_expr
212         ; return (core_neg `App` core_expr) }
213
214 dsExpr expr@(HsLam a_Match)
215   = matchWrapper LambdaExpr a_Match     `thenDs` \ (binders, matching_code) ->
216     returnDs (mkLams binders matching_code)
217
218 #if defined(GHCI) && defined(BREAKPOINT)
219 dsExpr (HsApp (L _ (HsApp realFun@(L _ (HsCoerce _ fun)) (L loc arg))) _)
220     | HsVar funId <- fun
221     , idName funId `elem` [breakpointJumpName, breakpointCondJumpName]
222     , ids <- filter (isValidType . idType) (extractIds arg)
223     = do dsWarn (text "Extracted ids:" <+> ppr ids <+> ppr (map idType ids))
224          stablePtr <- ioToIOEnv $ newStablePtr ids
225          -- Yes, I know... I'm gonna burn in hell.
226          let Ptr addr# = castStablePtrToPtr stablePtr
227          funCore <- dsLExpr realFun
228          argCore <- dsLExpr (L loc (HsLit (HsInt (fromIntegral (I# (addr2Int# addr#))))))
229          hvalCore <- dsLExpr (L loc (extractHVals ids))
230          return ((funCore `App` argCore) `App` hvalCore)
231     where extractIds :: HsExpr Id -> [Id]
232           extractIds (HsApp fn arg)
233               | HsVar argId <- unLoc arg
234               = argId:extractIds (unLoc fn)
235               | TyApp arg' ts <- unLoc arg
236               , HsVar argId <- unLoc arg'
237               = error (showSDoc (ppr ts)) -- argId:extractIds (unLoc fn)
238           extractIds x = []
239           extractHVals ids = ExplicitList unitTy (map (L loc . HsVar) ids)
240           -- checks for tyvars and unlifted kinds.
241           isValidType (TyVarTy _) = False
242           isValidType (FunTy a b) = isValidType a && isValidType b
243           isValidType (NoteTy _ t) = isValidType t
244           isValidType (AppTy a b) = isValidType a && isValidType b
245           isValidType (TyConApp con ts) = not (isUnLiftedTyCon con) && all isValidType ts
246           isValidType _ = True
247 #endif
248
249 dsExpr expr@(HsApp fun arg)      
250   = dsLExpr fun         `thenDs` \ core_fun ->
251     dsLExpr arg         `thenDs` \ core_arg ->
252     returnDs (core_fun `App` core_arg)
253 \end{code}
254
255 Operator sections.  At first it looks as if we can convert
256 \begin{verbatim}
257         (expr op)
258 \end{verbatim}
259 to
260 \begin{verbatim}
261         \x -> op expr x
262 \end{verbatim}
263
264 But no!  expr might be a redex, and we can lose laziness badly this
265 way.  Consider
266 \begin{verbatim}
267         map (expr op) xs
268 \end{verbatim}
269 for example.  So we convert instead to
270 \begin{verbatim}
271         let y = expr in \x -> op y x
272 \end{verbatim}
273 If \tr{expr} is actually just a variable, say, then the simplifier
274 will sort it out.
275
276 \begin{code}
277 dsExpr (OpApp e1 op _ e2)
278   = dsLExpr op                                          `thenDs` \ core_op ->
279     -- for the type of y, we need the type of op's 2nd argument
280     dsLExpr e1                          `thenDs` \ x_core ->
281     dsLExpr e2                          `thenDs` \ y_core ->
282     returnDs (mkApps core_op [x_core, y_core])
283     
284 dsExpr (SectionL expr op)
285   = dsLExpr op                                          `thenDs` \ core_op ->
286     -- for the type of y, we need the type of op's 2nd argument
287     let
288         (x_ty:y_ty:_, _) = splitFunTys (exprType core_op)
289         -- Must look through an implicit-parameter type; 
290         -- newtype impossible; hence Type.splitFunTys
291     in
292     dsLExpr expr                                `thenDs` \ x_core ->
293     newSysLocalDs x_ty                  `thenDs` \ x_id ->
294     newSysLocalDs y_ty                  `thenDs` \ y_id ->
295
296     returnDs (bindNonRec x_id x_core $
297               Lam y_id (mkApps core_op [Var x_id, Var y_id]))
298
299 -- dsLExpr (SectionR op expr)   -- \ x -> op x expr
300 dsExpr (SectionR op expr)
301   = dsLExpr op                  `thenDs` \ core_op ->
302     -- for the type of x, we need the type of op's 2nd argument
303     let
304         (x_ty:y_ty:_, _) = splitFunTys (exprType core_op)
305         -- See comment with SectionL
306     in
307     dsLExpr expr                                `thenDs` \ y_core ->
308     newSysLocalDs x_ty                  `thenDs` \ x_id ->
309     newSysLocalDs y_ty                  `thenDs` \ y_id ->
310
311     returnDs (bindNonRec y_id y_core $
312               Lam x_id (mkApps core_op [Var x_id, Var y_id]))
313
314 dsExpr (HsSCC cc expr)
315   = dsLExpr expr                        `thenDs` \ core_expr ->
316     getModuleDs                 `thenDs` \ mod_name ->
317     returnDs (Note (SCC (mkUserCC cc mod_name)) core_expr)
318
319
320 -- hdaume: core annotation
321
322 dsExpr (HsCoreAnn fs expr)
323   = dsLExpr expr        `thenDs` \ core_expr ->
324     returnDs (Note (CoreNote $ unpackFS fs) core_expr)
325
326 dsExpr (HsCase discrim matches)
327   = dsLExpr discrim                     `thenDs` \ core_discrim ->
328     matchWrapper CaseAlt matches        `thenDs` \ ([discrim_var], matching_code) ->
329     returnDs (scrungleMatch discrim_var core_discrim matching_code)
330
331 dsExpr (HsLet binds body)
332   = dsLExpr body                `thenDs` \ body' ->
333     dsLocalBinds binds body'
334
335 -- We need the `ListComp' form to use `deListComp' (rather than the "do" form)
336 -- because the interpretation of `stmts' depends on what sort of thing it is.
337 --
338 dsExpr (HsDo ListComp stmts body result_ty)
339   =     -- Special case for list comprehensions
340     dsListComp stmts body elt_ty
341   where
342     [elt_ty] = tcTyConAppArgs result_ty
343
344 dsExpr (HsDo DoExpr stmts body result_ty)
345   = dsDo stmts body result_ty
346
347 dsExpr (HsDo (MDoExpr tbl) stmts body result_ty)
348   = dsMDo tbl stmts body result_ty
349
350 dsExpr (HsDo PArrComp stmts body result_ty)
351   =     -- Special case for array comprehensions
352     dsPArrComp (map unLoc stmts) body elt_ty
353   where
354     [elt_ty] = tcTyConAppArgs result_ty
355
356 dsExpr (HsIf guard_expr then_expr else_expr)
357   = dsLExpr guard_expr  `thenDs` \ core_guard ->
358     dsLExpr then_expr   `thenDs` \ core_then ->
359     dsLExpr else_expr   `thenDs` \ core_else ->
360     returnDs (mkIfThenElse core_guard core_then core_else)
361 \end{code}
362
363
364 \noindent
365 \underline{\bf Type lambda and application}
366 %              ~~~~~~~~~~~~~~~~~~~~~~~~~~~
367 \begin{code}
368 dsExpr (TyLam tyvars expr)
369   = dsLExpr expr `thenDs` \ core_expr ->
370     returnDs (mkLams tyvars core_expr)
371
372 dsExpr (TyApp expr tys)
373   = dsLExpr expr                `thenDs` \ core_expr ->
374     returnDs (mkTyApps core_expr tys)
375 \end{code}
376
377
378 \noindent
379 \underline{\bf Various data construction things}
380 %              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
381 \begin{code}
382 dsExpr (ExplicitList ty xs)
383   = go xs
384   where
385     go []     = returnDs (mkNilExpr ty)
386     go (x:xs) = dsLExpr x                               `thenDs` \ core_x ->
387                 go xs                                   `thenDs` \ core_xs ->
388                 returnDs (mkConsExpr ty core_x core_xs)
389
390 -- we create a list from the array elements and convert them into a list using
391 -- `PrelPArr.toP'
392 --
393 --  * the main disadvantage to this scheme is that `toP' traverses the list
394 --   twice: once to determine the length and a second time to put to elements
395 --   into the array; this inefficiency could be avoided by exposing some of
396 --   the innards of `PrelPArr' to the compiler (ie, have a `PrelPArrBase') so
397 --   that we can exploit the fact that we already know the length of the array
398 --   here at compile time
399 --
400 dsExpr (ExplicitPArr ty xs)
401   = dsLookupGlobalId toPName                            `thenDs` \toP      ->
402     dsExpr (ExplicitList ty xs)                         `thenDs` \coreList ->
403     returnDs (mkApps (Var toP) [Type ty, coreList])
404
405 dsExpr (ExplicitTuple expr_list boxity)
406   = mappM dsLExpr expr_list       `thenDs` \ core_exprs  ->
407     returnDs (mkConApp (tupleCon boxity (length expr_list))
408                        (map (Type .  exprType) core_exprs ++ core_exprs))
409
410 dsExpr (ArithSeq expr (From from))
411   = dsExpr expr           `thenDs` \ expr2 ->
412     dsLExpr from          `thenDs` \ from2 ->
413     returnDs (App expr2 from2)
414
415 dsExpr (ArithSeq expr (FromTo from two))
416   = dsExpr expr           `thenDs` \ expr2 ->
417     dsLExpr from          `thenDs` \ from2 ->
418     dsLExpr two           `thenDs` \ two2 ->
419     returnDs (mkApps expr2 [from2, two2])
420
421 dsExpr (ArithSeq expr (FromThen from thn))
422   = dsExpr expr           `thenDs` \ expr2 ->
423     dsLExpr from          `thenDs` \ from2 ->
424     dsLExpr thn           `thenDs` \ thn2 ->
425     returnDs (mkApps expr2 [from2, thn2])
426
427 dsExpr (ArithSeq expr (FromThenTo from thn two))
428   = dsExpr expr           `thenDs` \ expr2 ->
429     dsLExpr from          `thenDs` \ from2 ->
430     dsLExpr thn           `thenDs` \ thn2 ->
431     dsLExpr two           `thenDs` \ two2 ->
432     returnDs (mkApps expr2 [from2, thn2, two2])
433
434 dsExpr (PArrSeq expr (FromTo from two))
435   = dsExpr expr           `thenDs` \ expr2 ->
436     dsLExpr from          `thenDs` \ from2 ->
437     dsLExpr two           `thenDs` \ two2 ->
438     returnDs (mkApps expr2 [from2, two2])
439
440 dsExpr (PArrSeq expr (FromThenTo from thn two))
441   = dsExpr expr           `thenDs` \ expr2 ->
442     dsLExpr from          `thenDs` \ from2 ->
443     dsLExpr thn           `thenDs` \ thn2 ->
444     dsLExpr two           `thenDs` \ two2 ->
445     returnDs (mkApps expr2 [from2, thn2, two2])
446
447 dsExpr (PArrSeq expr _)
448   = panic "DsExpr.dsExpr: Infinite parallel array!"
449     -- the parser shouldn't have generated it and the renamer and typechecker
450     -- shouldn't have let it through
451 \end{code}
452
453 \noindent
454 \underline{\bf Record construction and update}
455 %              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
456 For record construction we do this (assuming T has three arguments)
457 \begin{verbatim}
458         T { op2 = e }
459 ==>
460         let err = /\a -> recConErr a 
461         T (recConErr t1 "M.lhs/230/op1") 
462           e 
463           (recConErr t1 "M.lhs/230/op3")
464 \end{verbatim}
465 @recConErr@ then converts its arugment string into a proper message
466 before printing it as
467 \begin{verbatim}
468         M.lhs, line 230: missing field op1 was evaluated
469 \end{verbatim}
470
471 We also handle @C{}@ as valid construction syntax for an unlabelled
472 constructor @C@, setting all of @C@'s fields to bottom.
473
474 \begin{code}
475 dsExpr (RecordCon (L _ data_con_id) con_expr rbinds)
476   = dsExpr con_expr     `thenDs` \ con_expr' ->
477     let
478         (arg_tys, _) = tcSplitFunTys (exprType con_expr')
479         -- A newtype in the corner should be opaque; 
480         -- hence TcType.tcSplitFunTys
481
482         mk_arg (arg_ty, lbl)    -- Selector id has the field label as its name
483           = case [rhs | (L _ sel_id, rhs) <- rbinds, lbl == idName sel_id] of
484               (rhs:rhss) -> ASSERT( null rhss )
485                             dsLExpr rhs
486               []         -> mkErrorAppDs rEC_CON_ERROR_ID arg_ty (showSDoc (ppr lbl))
487         unlabelled_bottom arg_ty = mkErrorAppDs rEC_CON_ERROR_ID arg_ty ""
488
489         labels = dataConFieldLabels (idDataCon data_con_id)
490         -- The data_con_id is guaranteed to be the wrapper id of the constructor
491     in
492
493     (if null labels
494         then mappM unlabelled_bottom arg_tys
495         else mappM mk_arg (zipEqual "dsExpr:RecordCon" arg_tys labels))
496         `thenDs` \ con_args ->
497
498     returnDs (mkApps con_expr' con_args)
499 \end{code}
500
501 Record update is a little harder. Suppose we have the decl:
502 \begin{verbatim}
503         data T = T1 {op1, op2, op3 :: Int}
504                | T2 {op4, op2 :: Int}
505                | T3
506 \end{verbatim}
507 Then we translate as follows:
508 \begin{verbatim}
509         r { op2 = e }
510 ===>
511         let op2 = e in
512         case r of
513           T1 op1 _ op3 -> T1 op1 op2 op3
514           T2 op4 _     -> T2 op4 op2
515           other        -> recUpdError "M.lhs/230"
516 \end{verbatim}
517 It's important that we use the constructor Ids for @T1@, @T2@ etc on the
518 RHSs, and do not generate a Core constructor application directly, because the constructor
519 might do some argument-evaluation first; and may have to throw away some
520 dictionaries.
521
522 \begin{code}
523 dsExpr (RecordUpd record_expr [] record_in_ty record_out_ty)
524   = dsLExpr record_expr
525
526 dsExpr expr@(RecordUpd record_expr rbinds record_in_ty record_out_ty)
527   = dsLExpr record_expr         `thenDs` \ record_expr' ->
528
529         -- Desugar the rbinds, and generate let-bindings if
530         -- necessary so that we don't lose sharing
531
532     let
533         in_inst_tys  = tcTyConAppArgs record_in_ty      -- Newtype opaque
534         out_inst_tys = tcTyConAppArgs record_out_ty     -- Newtype opaque
535         in_out_ty    = mkFunTy record_in_ty record_out_ty
536
537         mk_val_arg field old_arg_id 
538           = case [rhs | (L _ sel_id, rhs) <- rbinds, field == idName sel_id] of
539               (rhs:rest) -> ASSERT(null rest) rhs
540               []         -> nlHsVar old_arg_id
541
542         mk_alt con
543           = newSysLocalsDs (dataConInstOrigArgTys con in_inst_tys) `thenDs` \ arg_ids ->
544                 -- This call to dataConInstOrigArgTys won't work for existentials
545                 -- but existentials don't have record types anyway
546             let 
547                 val_args = zipWithEqual "dsExpr:RecordUpd" mk_val_arg
548                                         (dataConFieldLabels con) arg_ids
549                 rhs = foldl (\a b -> nlHsApp a b)
550                         (noLoc $ TyApp (nlHsVar (dataConWrapId con)) 
551                                 out_inst_tys)
552                           val_args
553             in
554             returnDs (mkSimpleMatch [noLoc $ ConPatOut (noLoc con) [] [] emptyLHsBinds 
555                                                        (PrefixCon (map nlVarPat arg_ids)) record_in_ty]
556                                     rhs)
557     in
558         -- Record stuff doesn't work for existentials
559         -- The type checker checks for this, but we need 
560         -- worry only about the constructors that are to be updated
561     ASSERT2( all isVanillaDataCon cons_to_upd, ppr expr )
562
563         -- It's important to generate the match with matchWrapper,
564         -- and the right hand sides with applications of the wrapper Id
565         -- so that everything works when we are doing fancy unboxing on the
566         -- constructor aguments.
567     mappM mk_alt cons_to_upd                            `thenDs` \ alts ->
568     matchWrapper RecUpd (MatchGroup alts in_out_ty)     `thenDs` \ ([discrim_var], matching_code) ->
569
570     returnDs (bindNonRec discrim_var record_expr' matching_code)
571
572   where
573     updated_fields :: [FieldLabel]
574     updated_fields = [ idName sel_id | (L _ sel_id,_) <- rbinds]
575
576         -- Get the type constructor from the record_in_ty
577         -- so that we are sure it'll have all its DataCons
578         -- (In GHCI, it's possible that some TyCons may not have all
579         --  their constructors, in a module-loop situation.)
580     tycon       = tcTyConAppTyCon record_in_ty
581     data_cons   = tyConDataCons tycon
582     cons_to_upd = filter has_all_fields data_cons
583
584     has_all_fields :: DataCon -> Bool
585     has_all_fields con_id 
586       = all (`elem` con_fields) updated_fields
587       where
588         con_fields = dataConFieldLabels con_id
589 \end{code}
590
591
592 \noindent
593 \underline{\bf Dictionary lambda and application}
594 %              ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
595 @DictLam@ and @DictApp@ turn into the regular old things.
596 (OLD:) @DictFunApp@ also becomes a curried application, albeit slightly more
597 complicated; reminiscent of fully-applied constructors.
598 \begin{code}
599 dsExpr (DictLam dictvars expr)
600   = dsLExpr expr `thenDs` \ core_expr ->
601     returnDs (mkLams dictvars core_expr)
602
603 ------------------
604
605 dsExpr (DictApp expr dicts)     -- becomes a curried application
606   = dsLExpr expr                        `thenDs` \ core_expr ->
607     returnDs (foldl (\f d -> f `App` (Var d)) core_expr dicts)
608
609 dsExpr (HsCoerce co_fn e) = dsCoercion co_fn (dsExpr e)
610 \end{code}
611
612 Here is where we desugar the Template Haskell brackets and escapes
613
614 \begin{code}
615 -- Template Haskell stuff
616
617 #ifdef GHCI     /* Only if bootstrapping */
618 dsExpr (HsBracketOut x ps) = dsBracket x ps
619 dsExpr (HsSpliceE s)       = pprPanic "dsExpr:splice" (ppr s)
620 #endif
621
622 -- Arrow notation extension
623 dsExpr (HsProc pat cmd) = dsProcExpr pat cmd
624 \end{code}
625
626
627 \begin{code}
628
629 #ifdef DEBUG
630 -- HsSyn constructs that just shouldn't be here:
631 dsExpr (ExprWithTySig _ _)  = panic "dsExpr:ExprWithTySig"
632 #endif
633
634 \end{code}
635
636 %--------------------------------------------------------------------
637
638 Desugar 'do' and 'mdo' expressions (NOT list comprehensions, they're
639 handled in DsListComp).  Basically does the translation given in the
640 Haskell 98 report:
641
642 \begin{code}
643 dsDo    :: [LStmt Id]
644         -> LHsExpr Id
645         -> Type                 -- Type of the whole expression
646         -> DsM CoreExpr
647
648 dsDo stmts body result_ty
649   = go (map unLoc stmts)
650   where
651     go [] = dsLExpr body
652     
653     go (ExprStmt rhs then_expr _ : stmts)
654       = do { rhs2 <- dsLExpr rhs
655            ; then_expr2 <- dsExpr then_expr
656            ; rest <- go stmts
657            ; returnDs (mkApps then_expr2 [rhs2, rest]) }
658     
659     go (LetStmt binds : stmts)
660       = do { rest <- go stmts
661            ; dsLocalBinds binds rest }
662         
663     go (BindStmt pat rhs bind_op fail_op : stmts)
664       = do { body  <- go stmts
665            ; var   <- selectSimpleMatchVarL pat
666            ; match <- matchSinglePat (Var var) (StmtCtxt DoExpr) pat
667                                   result_ty (cantFailMatchResult body)
668            ; match_code <- handle_failure pat match fail_op
669            ; rhs'       <- dsLExpr rhs
670            ; bind_op'   <- dsExpr bind_op
671            ; returnDs (mkApps bind_op' [rhs', Lam var match_code]) }
672     
673     -- In a do expression, pattern-match failure just calls
674     -- the monadic 'fail' rather than throwing an exception
675     handle_failure pat match fail_op
676       | matchCanFail match
677       = do { fail_op' <- dsExpr fail_op
678            ; fail_msg <- mkStringExpr (mk_fail_msg pat)
679            ; extractMatchResult match (App fail_op' fail_msg) }
680       | otherwise
681       = extractMatchResult match (error "It can't fail") 
682
683 mk_fail_msg pat = "Pattern match failure in do expression at " ++ 
684                   showSDoc (ppr (getLoc pat))
685 \end{code}
686
687 Translation for RecStmt's: 
688 -----------------------------
689 We turn (RecStmt [v1,..vn] stmts) into:
690   
691   (v1,..,vn) <- mfix (\~(v1,..vn). do stmts
692                                       return (v1,..vn))
693
694 \begin{code}
695 dsMDo   :: PostTcTable
696         -> [LStmt Id]
697         -> LHsExpr Id
698         -> Type                 -- Type of the whole expression
699         -> DsM CoreExpr
700
701 dsMDo tbl stmts body result_ty
702   = go (map unLoc stmts)
703   where
704     (m_ty, b_ty) = tcSplitAppTy result_ty       -- result_ty must be of the form (m b)
705     mfix_id   = lookupEvidence tbl mfixName
706     return_id = lookupEvidence tbl returnMName
707     bind_id   = lookupEvidence tbl bindMName
708     then_id   = lookupEvidence tbl thenMName
709     fail_id   = lookupEvidence tbl failMName
710     ctxt      = MDoExpr tbl
711
712     go [] = dsLExpr body
713     
714     go (LetStmt binds : stmts)
715       = do { rest <- go stmts
716            ; dsLocalBinds binds rest }
717
718     go (ExprStmt rhs _ rhs_ty : stmts)
719       = do { rhs2 <- dsLExpr rhs
720            ; rest <- go stmts
721            ; returnDs (mkApps (Var then_id) [Type rhs_ty, Type b_ty, rhs2, rest]) }
722     
723     go (BindStmt pat rhs _ _ : stmts)
724       = do { body  <- go stmts
725            ; var   <- selectSimpleMatchVarL pat
726            ; match <- matchSinglePat (Var var) (StmtCtxt ctxt) pat
727                                   result_ty (cantFailMatchResult body)
728            ; fail_msg   <- mkStringExpr (mk_fail_msg pat)
729            ; let fail_expr = mkApps (Var fail_id) [Type b_ty, fail_msg]
730            ; match_code <- extractMatchResult match fail_expr
731
732            ; rhs'       <- dsLExpr rhs
733            ; returnDs (mkApps (Var bind_id) [Type (hsPatType pat), Type b_ty, 
734                                              rhs', Lam var match_code]) }
735     
736     go (RecStmt rec_stmts later_ids rec_ids rec_rets binds : stmts)
737       = ASSERT( length rec_ids > 0 )
738         ASSERT( length rec_ids == length rec_rets )
739         go (new_bind_stmt : let_stmt : stmts)
740       where
741         new_bind_stmt = mkBindStmt (mk_tup_pat later_pats) mfix_app
742         let_stmt = LetStmt (HsValBinds (ValBindsOut [(Recursive, binds)] []))
743
744         
745                 -- Remove the later_ids that appear (without fancy coercions) 
746                 -- in rec_rets, because there's no need to knot-tie them separately
747                 -- See Note [RecStmt] in HsExpr
748         later_ids'   = filter (`notElem` mono_rec_ids) later_ids
749         mono_rec_ids = [ id | HsVar id <- rec_rets ]
750     
751         mfix_app = nlHsApp (noLoc $ TyApp (nlHsVar mfix_id) [tup_ty]) mfix_arg
752         mfix_arg = noLoc $ HsLam (MatchGroup [mkSimpleMatch [mfix_pat] body]
753                                              (mkFunTy tup_ty body_ty))
754
755         -- The rec_tup_pat must bind the rec_ids only; remember that the 
756         --      trimmed_laters may share the same Names
757         -- Meanwhile, the later_pats must bind the later_vars
758         rec_tup_pats = map mk_wild_pat later_ids' ++ map nlVarPat rec_ids
759         later_pats   = map nlVarPat    later_ids' ++ map mk_later_pat rec_ids
760         rets         = map nlHsVar     later_ids' ++ map noLoc rec_rets
761
762         mfix_pat = noLoc $ LazyPat $ mk_tup_pat rec_tup_pats
763         body     = noLoc $ HsDo ctxt rec_stmts return_app body_ty
764         body_ty = mkAppTy m_ty tup_ty
765         tup_ty  = mkCoreTupTy (map idType (later_ids' ++ rec_ids))
766                   -- mkCoreTupTy deals with singleton case
767
768         return_app  = nlHsApp (noLoc $ TyApp (nlHsVar return_id) [tup_ty]) 
769                               (mk_ret_tup rets)
770
771         mk_wild_pat :: Id -> LPat Id 
772         mk_wild_pat v = noLoc $ WildPat $ idType v
773
774         mk_later_pat :: Id -> LPat Id
775         mk_later_pat v | v `elem` later_ids' = mk_wild_pat v
776                        | otherwise           = nlVarPat v
777
778         mk_tup_pat :: [LPat Id] -> LPat Id
779         mk_tup_pat [p] = p
780         mk_tup_pat ps  = noLoc $ mkVanillaTuplePat ps Boxed
781
782         mk_ret_tup :: [LHsExpr Id] -> LHsExpr Id
783         mk_ret_tup [r] = r
784         mk_ret_tup rs  = noLoc $ ExplicitTuple rs Boxed
785 \end{code}