[project @ 2000-11-07 15:21:38 by simonmar]
[ghc-hetmet.git] / ghc / compiler / deSugar / DsUtils.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[DsUtils]{Utilities for desugaring}
5
6 This module exports some utility functions of no great interest.
7
8 \begin{code}
9 module DsUtils (
10         CanItFail(..), EquationInfo(..), MatchResult(..),
11         EqnNo, EqnSet,
12
13         tidyLitPat, tidyNPat,
14
15         mkDsLet, mkDsLets,
16
17         cantFailMatchResult, extractMatchResult,
18         combineMatchResults, 
19         adjustMatchResult, adjustMatchResultDs,
20         mkCoLetsMatchResult, mkGuardedMatchResult, 
21         mkCoPrimCaseMatchResult, mkCoAlgCaseMatchResult,
22
23         mkErrorAppDs, mkNilExpr, mkConsExpr,
24         mkStringLit, mkStringLitFS, mkIntegerLit, 
25
26         mkSelectorBinds, mkTupleExpr, mkTupleSelector,
27
28         selectMatchVar
29     ) where
30
31 #include "HsVersions.h"
32
33 import {-# SOURCE #-} Match ( matchSimply )
34
35 import HsSyn
36 import TcHsSyn          ( TypecheckedPat )
37 import DsHsSyn          ( outPatType, collectTypedPatBinders )
38 import CoreSyn
39
40 import DsMonad
41
42 import CoreUtils        ( exprType, mkIfThenElse )
43 import PrelInfo         ( iRREFUT_PAT_ERROR_ID )
44 import Id               ( idType, Id, mkWildId )
45 import Literal          ( Literal(..), inIntRange, tARGET_MAX_INT )
46 import TyCon            ( isNewTyCon, tyConDataCons )
47 import DataCon          ( DataCon, StrictnessMark, maybeMarkedUnboxed, 
48                           dataConStrictMarks, dataConId, splitProductType_maybe
49                         )
50 import Type             ( mkFunTy, isUnLiftedType, splitAlgTyConApp,
51                           Type
52                         )
53 import TysPrim          ( intPrimTy, charPrimTy, floatPrimTy, doublePrimTy )
54 import TysWiredIn       ( nilDataCon, consDataCon, 
55                           tupleCon,
56                           stringTy,
57                           unitDataConId, unitTy,
58                           charTy, charDataCon, 
59                           intTy, intDataCon, smallIntegerDataCon, 
60                           floatTy, floatDataCon, 
61                           doubleTy, doubleDataCon,
62                           stringTy
63                         )
64 import BasicTypes       ( Boxity(..) )
65 import UniqSet          ( mkUniqSet, minusUniqSet, isEmptyUniqSet, UniqSet )
66 import PrelNames        ( unpackCStringName, unpackCStringUtf8Name, 
67                           plusIntegerName, timesIntegerName )
68 import Outputable
69 import UnicodeUtil      ( stringToUtf8 )
70 \end{code}
71
72
73
74 %************************************************************************
75 %*                                                                      *
76 \subsection{Tidying lit pats}
77 %*                                                                      *
78 %************************************************************************
79
80 \begin{code}
81 tidyLitPat :: HsLit -> TypecheckedPat -> TypecheckedPat
82 tidyLitPat (HsChar c) pat = ConPat charDataCon   charTy [] [] [LitPat (HsCharPrim c)   charPrimTy]
83 tidyLitPat lit        pat = pat
84
85 tidyNPat :: HsLit -> Type -> TypecheckedPat -> TypecheckedPat
86 tidyNPat (HsString s) _ pat
87   | _LENGTH_ s <= 1     -- Short string literals only
88   = foldr (\c pat -> ConPat consDataCon stringTy [] [] [mk_char_lit c,pat])
89           (ConPat nilDataCon stringTy [] [] []) (_UNPK_INT_ s)
90         -- The stringTy is the type of the whole pattern, not 
91         -- the type to instantiate (:) or [] with!
92   where
93     mk_char_lit c = ConPat charDataCon charTy [] [] [LitPat (HsCharPrim c) charPrimTy]
94
95 tidyNPat lit lit_ty default_pat
96   | lit_ty == intTy     = ConPat intDataCon    lit_ty [] [] [LitPat (mk_int lit)    intPrimTy]
97   | lit_ty == floatTy   = ConPat floatDataCon  lit_ty [] [] [LitPat (mk_float lit)  floatPrimTy]
98   | lit_ty == doubleTy  = ConPat doubleDataCon lit_ty [] [] [LitPat (mk_double lit) doublePrimTy]
99   | otherwise           = default_pat
100
101   where
102     mk_int    (HsInteger i) = HsIntPrim i
103
104     mk_float  (HsInteger i) = HsFloatPrim (fromInteger i)
105     mk_float  (HsRat f _)   = HsFloatPrim f
106
107     mk_double (HsInteger i) = HsDoublePrim (fromInteger i)
108     mk_double (HsRat f _)   = HsDoublePrim f
109 \end{code}
110
111
112 %************************************************************************
113 %*                                                                      *
114 \subsection{Building lets}
115 %*                                                                      *
116 %************************************************************************
117
118 Use case, not let for unlifted types.  The simplifier will turn some
119 back again.
120
121 \begin{code}
122 mkDsLet :: CoreBind -> CoreExpr -> CoreExpr
123 mkDsLet (NonRec bndr rhs) body
124   | isUnLiftedType (idType bndr) = Case rhs bndr [(DEFAULT,[],body)]
125 mkDsLet bind body
126   = Let bind body
127
128 mkDsLets :: [CoreBind] -> CoreExpr -> CoreExpr
129 mkDsLets binds body = foldr mkDsLet body binds
130 \end{code}
131
132
133 %************************************************************************
134 %*                                                                      *
135 \subsection{ Selecting match variables}
136 %*                                                                      *
137 %************************************************************************
138
139 We're about to match against some patterns.  We want to make some
140 @Ids@ to use as match variables.  If a pattern has an @Id@ readily at
141 hand, which should indeed be bound to the pattern as a whole, then use it;
142 otherwise, make one up.
143
144 \begin{code}
145 selectMatchVar :: TypecheckedPat -> DsM Id
146 selectMatchVar (VarPat var)     = returnDs var
147 selectMatchVar (AsPat var pat)  = returnDs var
148 selectMatchVar (LazyPat pat)    = selectMatchVar pat
149 selectMatchVar other_pat        = newSysLocalDs (outPatType other_pat) -- OK, better make up one...
150 \end{code}
151
152
153 %************************************************************************
154 %*                                                                      *
155 %* type synonym EquationInfo and access functions for its pieces        *
156 %*                                                                      *
157 %************************************************************************
158 \subsection[EquationInfo-synonym]{@EquationInfo@: a useful synonym}
159
160 The ``equation info'' used by @match@ is relatively complicated and
161 worthy of a type synonym and a few handy functions.
162
163 \begin{code}
164
165 type EqnNo   = Int
166 type EqnSet  = UniqSet EqnNo
167
168 data EquationInfo
169   = EqnInfo
170         EqnNo           -- The number of the equation
171
172         DsMatchContext  -- The context info is used when producing warnings
173                         -- about shadowed patterns.  It's the context
174                         -- of the *first* thing matched in this group.
175                         -- Should perhaps be a list of them all!
176
177         [TypecheckedPat]    -- The patterns for an eqn
178
179         MatchResult         -- Encapsulates the guards and bindings
180 \end{code}
181
182 \begin{code}
183 data MatchResult
184   = MatchResult
185         CanItFail       -- Tells whether the failure expression is used
186         (CoreExpr -> DsM CoreExpr)
187                         -- Takes a expression to plug in at the
188                         -- failure point(s). The expression should
189                         -- be duplicatable!
190
191 data CanItFail = CanFail | CantFail
192
193 orFail CantFail CantFail = CantFail
194 orFail _        _        = CanFail
195 \end{code}
196
197 Functions on MatchResults
198
199 \begin{code}
200 cantFailMatchResult :: CoreExpr -> MatchResult
201 cantFailMatchResult expr = MatchResult CantFail (\ ignore -> returnDs expr)
202
203 extractMatchResult :: MatchResult -> CoreExpr -> DsM CoreExpr
204 extractMatchResult (MatchResult CantFail match_fn) fail_expr
205   = match_fn (error "It can't fail!")
206
207 extractMatchResult (MatchResult CanFail match_fn) fail_expr
208   = mkFailurePair fail_expr             `thenDs` \ (fail_bind, if_it_fails) ->
209     match_fn if_it_fails                `thenDs` \ body ->
210     returnDs (mkDsLet fail_bind body)
211
212
213 combineMatchResults :: MatchResult -> MatchResult -> MatchResult
214 combineMatchResults (MatchResult CanFail      body_fn1)
215                     (MatchResult can_it_fail2 body_fn2)
216   = MatchResult can_it_fail2 body_fn
217   where
218     body_fn fail = body_fn2 fail                        `thenDs` \ body2 ->
219                    mkFailurePair body2                  `thenDs` \ (fail_bind, duplicatable_expr) ->
220                    body_fn1 duplicatable_expr           `thenDs` \ body1 ->
221                    returnDs (Let fail_bind body1)
222
223 combineMatchResults match_result1@(MatchResult CantFail body_fn1) match_result2
224   = match_result1
225
226
227 adjustMatchResult :: (CoreExpr -> CoreExpr) -> MatchResult -> MatchResult
228 adjustMatchResult encl_fn (MatchResult can_it_fail body_fn)
229   = MatchResult can_it_fail (\fail -> body_fn fail      `thenDs` \ body ->
230                                       returnDs (encl_fn body))
231
232 adjustMatchResultDs :: (CoreExpr -> DsM CoreExpr) -> MatchResult -> MatchResult
233 adjustMatchResultDs encl_fn (MatchResult can_it_fail body_fn)
234   = MatchResult can_it_fail (\fail -> body_fn fail      `thenDs` \ body ->
235                                       encl_fn body)
236
237
238 mkCoLetsMatchResult :: [CoreBind] -> MatchResult -> MatchResult
239 mkCoLetsMatchResult binds match_result
240   = adjustMatchResult (mkDsLets binds) match_result
241
242
243 mkGuardedMatchResult :: CoreExpr -> MatchResult -> MatchResult
244 mkGuardedMatchResult pred_expr (MatchResult can_it_fail body_fn)
245   = MatchResult CanFail (\fail -> body_fn fail  `thenDs` \ body ->
246                                   returnDs (mkIfThenElse pred_expr body fail))
247
248 mkCoPrimCaseMatchResult :: Id                           -- Scrutinee
249                     -> [(Literal, MatchResult)]         -- Alternatives
250                     -> MatchResult
251 mkCoPrimCaseMatchResult var match_alts
252   = MatchResult CanFail mk_case
253   where
254     mk_case fail
255       = mapDs (mk_alt fail) match_alts          `thenDs` \ alts ->
256         returnDs (Case (Var var) var (alts ++ [(DEFAULT, [], fail)]))
257
258     mk_alt fail (lit, MatchResult _ body_fn) = body_fn fail     `thenDs` \ body ->
259                                                returnDs (LitAlt lit, [], body)
260
261
262 mkCoAlgCaseMatchResult :: Id                                    -- Scrutinee
263                     -> [(DataCon, [CoreBndr], MatchResult)]     -- Alternatives
264                     -> MatchResult
265
266 mkCoAlgCaseMatchResult var match_alts
267   | isNewTyCon tycon            -- Newtype case; use a let
268   = ASSERT( newtype_sanity )
269     mkCoLetsMatchResult [coercion_bind] match_result
270
271   | otherwise                   -- Datatype case; use a case
272   = MatchResult fail_flag mk_case
273   where
274         -- Common stuff
275     scrut_ty = idType var
276     (tycon, _, _) = splitAlgTyConApp scrut_ty
277
278         -- Stuff for newtype
279     (_, arg_ids, match_result) = head match_alts
280     arg_id                     = head arg_ids
281     coercion_bind              = NonRec arg_id (Note (Coerce (idType arg_id)
282                                                              scrut_ty)
283                                                      (Var var))
284     newtype_sanity             = null (tail match_alts) && null (tail arg_ids)
285
286         -- Stuff for data types
287     data_cons = tyConDataCons tycon
288
289     match_results             = [match_result | (_,_,match_result) <- match_alts]
290
291     fail_flag | exhaustive_case
292               = foldr1 orFail [can_it_fail | MatchResult can_it_fail _ <- match_results]
293               | otherwise
294               = CanFail
295
296     wild_var = mkWildId (idType var)
297     mk_case fail = mapDs (mk_alt fail) match_alts       `thenDs` \ alts ->
298                    returnDs (Case (Var var) wild_var (alts ++ mk_default fail))
299
300     mk_alt fail (con, args, MatchResult _ body_fn)
301         = body_fn fail          `thenDs` \ body ->
302           rebuildConArgs con args (dataConStrictMarks con) body 
303                                 `thenDs` \ (body', real_args) ->
304           returnDs (DataAlt con, real_args, body')
305
306     mk_default fail | exhaustive_case = []
307                     | otherwise       = [(DEFAULT, [], fail)]
308
309     un_mentioned_constructors
310         = mkUniqSet data_cons `minusUniqSet` mkUniqSet [ con | (con, _, _) <- match_alts]
311     exhaustive_case = isEmptyUniqSet un_mentioned_constructors
312 \end{code}
313 %
314 For each constructor we match on, we might need to re-pack some
315 of the strict fields if they are unpacked in the constructor.
316 %
317 \begin{code}
318 rebuildConArgs
319   :: DataCon                            -- the con we're matching on
320   -> [Id]                               -- the source-level args
321   -> [StrictnessMark]                   -- the strictness annotations (per-arg)
322   -> CoreExpr                           -- the body
323   -> DsM (CoreExpr, [Id])
324
325 rebuildConArgs con [] stricts body = returnDs (body, [])
326 rebuildConArgs con (arg:args) stricts body | isTyVar arg
327   = rebuildConArgs con args stricts body `thenDs` \ (body', args') ->
328     returnDs (body',arg:args')
329 rebuildConArgs con (arg:args) (str:stricts) body
330   = rebuildConArgs con args stricts body `thenDs` \ (body', real_args) ->
331     case maybeMarkedUnboxed str of
332         Just (pack_con1, _) -> 
333             case splitProductType_maybe (idType arg) of
334                 Just (_, tycon_args, pack_con, con_arg_tys) ->
335                     ASSERT( pack_con == pack_con1 )
336                     newSysLocalsDs con_arg_tys          `thenDs` \ unpacked_args ->
337                     returnDs (
338                          mkDsLet (NonRec arg (mkConApp pack_con 
339                                                   (map Type tycon_args ++
340                                                    map Var  unpacked_args))) body', 
341                          unpacked_args ++ real_args
342                     )
343                 
344         _ -> returnDs (body', arg:real_args)
345 \end{code}
346
347 %************************************************************************
348 %*                                                                      *
349 \subsection{Desugarer's versions of some Core functions}
350 %*                                                                      *
351 %************************************************************************
352
353 \begin{code}
354 mkErrorAppDs :: Id              -- The error function
355              -> Type            -- Type to which it should be applied
356              -> String          -- The error message string to pass
357              -> DsM CoreExpr
358
359 mkErrorAppDs err_id ty msg
360   = getSrcLocDs                 `thenDs` \ src_loc ->
361     let
362         full_msg = showSDoc (hcat [ppr src_loc, text "|", text msg])
363     in
364     mkStringLit full_msg                `thenDs` \ core_msg ->
365     returnDs (mkApps (Var err_id) [Type ty, core_msg])
366 \end{code}
367
368
369 *************************************************************
370 %*                                                                      *
371 \subsection{Making literals}
372 %*                                                                      *
373 %************************************************************************
374
375 \begin{code}
376 mkIntegerLit :: Integer -> DsM CoreExpr
377 mkIntegerLit i
378   | inIntRange i        -- Small enough, so start from an Int
379   = returnDs (mkSmallIntegerLit i)
380
381 -- Special case for integral literals with a large magnitude:
382 -- They are transformed into an expression involving only smaller
383 -- integral literals. This improves constant folding.
384
385   | otherwise           -- Big, so start from a string
386   = dsLookupGlobalValue plusIntegerName         `thenDs` \ plus_id ->
387     dsLookupGlobalValue timesIntegerName        `thenDs` \ times_id ->
388     let 
389         plus a b  = Var plus_id  `App` a `App` b
390         times a b = Var times_id `App` a `App` b
391
392         -- Transform i into (x1 + (x2 + (x3 + (...) * b) * b) * b) with abs xi <= b
393         horner :: Integer -> Integer -> CoreExpr
394         horner b i | abs q <= 1 = if r == 0 || r == i 
395                                   then mkSmallIntegerLit i 
396                                   else mkSmallIntegerLit r `plus` mkSmallIntegerLit (i-r)
397                    | r == 0     =                             horner b q `times` mkSmallIntegerLit b
398                    | otherwise  = mkSmallIntegerLit r `plus` (horner b q `times` mkSmallIntegerLit b)
399                    where
400                      (q,r) = i `quotRem` b
401
402     in
403     returnDs (horner tARGET_MAX_INT i)
404
405 mkSmallIntegerLit i = mkConApp smallIntegerDataCon [mkIntLit i]
406
407 mkStringLit   :: String       -> DsM CoreExpr
408 mkStringLit str = mkStringLitFS (_PK_ str)
409
410 mkStringLitFS :: FAST_STRING  -> DsM CoreExpr
411 mkStringLitFS str
412   | _NULL_ str
413   = returnDs (mkNilExpr charTy)
414
415   | _LENGTH_ str == 1
416   = let
417         the_char = mkConApp charDataCon [mkLit (MachChar (_HEAD_INT_ str))]
418     in
419     returnDs (mkConsExpr charTy the_char (mkNilExpr charTy))
420
421   | all safeChar chars
422   = dsLookupGlobalValue unpackCStringName       `thenDs` \ unpack_id ->
423     returnDs (App (Var unpack_id) (Lit (MachStr str)))
424
425   | otherwise
426   = dsLookupGlobalValue unpackCStringUtf8Name   `thenDs` \ unpack_id ->
427     returnDs (App (Var unpack_id) (Lit (MachStr (_PK_ (stringToUtf8 chars)))))
428
429   where
430     chars = _UNPK_INT_ str
431     safeChar c = c >= 1 && c <= 0xFF
432 \end{code}
433
434
435 %************************************************************************
436 %*                                                                      *
437 \subsection[mkSelectorBind]{Make a selector bind}
438 %*                                                                      *
439 %************************************************************************
440
441 This is used in various places to do with lazy patterns.
442 For each binder $b$ in the pattern, we create a binding:
443 \begin{verbatim}
444     b = case v of pat' -> b'
445 \end{verbatim}
446 where @pat'@ is @pat@ with each binder @b@ cloned into @b'@.
447
448 ToDo: making these bindings should really depend on whether there's
449 much work to be done per binding.  If the pattern is complex, it
450 should be de-mangled once, into a tuple (and then selected from).
451 Otherwise the demangling can be in-line in the bindings (as here).
452
453 Boring!  Boring!  One error message per binder.  The above ToDo is
454 even more helpful.  Something very similar happens for pattern-bound
455 expressions.
456
457 \begin{code}
458 mkSelectorBinds :: TypecheckedPat       -- The pattern
459                 -> CoreExpr             -- Expression to which the pattern is bound
460                 -> DsM [(Id,CoreExpr)]
461
462 mkSelectorBinds (VarPat v) val_expr
463   = returnDs [(v, val_expr)]
464
465 mkSelectorBinds pat val_expr
466   | length binders == 1 || is_simple_pat pat
467   = newSysLocalDs (exprType val_expr)   `thenDs` \ val_var ->
468
469         -- For the error message we don't use mkErrorAppDs to avoid
470         -- duplicating the string literal each time
471     newSysLocalDs stringTy                      `thenDs` \ msg_var ->
472     getSrcLocDs                                 `thenDs` \ src_loc ->
473     let
474         full_msg = showSDoc (hcat [ppr src_loc, text "|", ppr pat])
475     in
476     mkStringLit full_msg                        `thenDs` \ core_msg -> 
477     mapDs (mk_bind val_var msg_var) binders     `thenDs` \ binds ->
478     returnDs ( (val_var, val_expr) : 
479                (msg_var, core_msg) :
480                binds )
481
482
483   | otherwise
484   = mkErrorAppDs iRREFUT_PAT_ERROR_ID tuple_ty (showSDoc (ppr pat))
485     `thenDs` \ error_expr ->
486     matchSimply val_expr LetMatch pat local_tuple error_expr
487     `thenDs` \ tuple_expr ->
488     newSysLocalDs tuple_ty
489     `thenDs` \ tuple_var ->
490     let
491         mk_tup_bind binder =
492           (binder, mkTupleSelector binders binder tuple_var (Var tuple_var))
493     in
494     returnDs ( (tuple_var, tuple_expr) : map mk_tup_bind binders )
495   where
496     binders     = collectTypedPatBinders pat
497     local_tuple = mkTupleExpr binders
498     tuple_ty    = exprType local_tuple
499
500     mk_bind scrut_var msg_var bndr_var
501     -- (mk_bind sv bv) generates
502     --          bv = case sv of { pat -> bv; other -> error-msg }
503     -- Remember, pat binds bv
504       = matchSimply (Var scrut_var) LetMatch pat
505                     (Var bndr_var) error_expr                   `thenDs` \ rhs_expr ->
506         returnDs (bndr_var, rhs_expr)
507       where
508         binder_ty = idType bndr_var
509         error_expr = mkApps (Var iRREFUT_PAT_ERROR_ID) [Type binder_ty, Var msg_var]
510
511     is_simple_pat (TuplePat ps Boxed)  = all is_triv_pat ps
512     is_simple_pat (ConPat _ _ _ _ ps)  = all is_triv_pat ps
513     is_simple_pat (VarPat _)           = True
514     is_simple_pat (RecPat _ _ _ _ ps)  = and [is_triv_pat p | (_,p,_) <- ps]
515     is_simple_pat other                = False
516
517     is_triv_pat (VarPat v)  = True
518     is_triv_pat (WildPat _) = True
519     is_triv_pat other       = False
520 \end{code}
521
522
523 @mkTupleExpr@ builds a tuple; the inverse to @mkTupleSelector@.  If it
524 has only one element, it is the identity function.
525
526 \begin{code}
527 mkTupleExpr :: [Id] -> CoreExpr
528
529 mkTupleExpr []   = Var unitDataConId
530 mkTupleExpr [id] = Var id
531 mkTupleExpr ids  = mkConApp (tupleCon Boxed (length ids))
532                             (map (Type . idType) ids ++ [ Var i | i <- ids ])
533 \end{code}
534
535
536 @mkTupleSelector@ builds a selector which scrutises the given
537 expression and extracts the one name from the list given.
538 If you want the no-shadowing rule to apply, the caller
539 is responsible for making sure that none of these names
540 are in scope.
541
542 If there is just one id in the ``tuple'', then the selector is
543 just the identity.
544
545 \begin{code}
546 mkTupleSelector :: [Id]         -- The tuple args
547                 -> Id           -- The selected one
548                 -> Id           -- A variable of the same type as the scrutinee
549                 -> CoreExpr     -- Scrutinee
550                 -> CoreExpr
551
552 mkTupleSelector [var] should_be_the_same_var scrut_var scrut
553   = ASSERT(var == should_be_the_same_var)
554     scrut
555
556 mkTupleSelector vars the_var scrut_var scrut
557   = ASSERT( not (null vars) )
558     Case scrut scrut_var [(DataAlt (tupleCon Boxed (length vars)), vars, Var the_var)]
559 \end{code}
560
561
562 %************************************************************************
563 %*                                                                      *
564 \subsection[mkFailurePair]{Code for pattern-matching and other failures}
565 %*                                                                      *
566 %************************************************************************
567
568 Call the constructor Ids when building explicit lists, so that they
569 interact well with rules.
570
571 \begin{code}
572 mkNilExpr :: Type -> CoreExpr
573 mkNilExpr ty = App (Var (dataConId nilDataCon)) (Type ty)
574
575 mkConsExpr :: Type -> CoreExpr -> CoreExpr -> CoreExpr
576 mkConsExpr ty hd tl = mkApps (Var (dataConId consDataCon)) [Type ty, hd, tl]
577 \end{code}
578
579
580 %************************************************************************
581 %*                                                                      *
582 \subsection[mkFailurePair]{Code for pattern-matching and other failures}
583 %*                                                                      *
584 %************************************************************************
585
586 Generally, we handle pattern matching failure like this: let-bind a
587 fail-variable, and use that variable if the thing fails:
588 \begin{verbatim}
589         let fail.33 = error "Help"
590         in
591         case x of
592                 p1 -> ...
593                 p2 -> fail.33
594                 p3 -> fail.33
595                 p4 -> ...
596 \end{verbatim}
597 Then
598 \begin{itemize}
599 \item
600 If the case can't fail, then there'll be no mention of @fail.33@, and the
601 simplifier will later discard it.
602
603 \item
604 If it can fail in only one way, then the simplifier will inline it.
605
606 \item
607 Only if it is used more than once will the let-binding remain.
608 \end{itemize}
609
610 There's a problem when the result of the case expression is of
611 unboxed type.  Then the type of @fail.33@ is unboxed too, and
612 there is every chance that someone will change the let into a case:
613 \begin{verbatim}
614         case error "Help" of
615           fail.33 -> case ....
616 \end{verbatim}
617
618 which is of course utterly wrong.  Rather than drop the condition that
619 only boxed types can be let-bound, we just turn the fail into a function
620 for the primitive case:
621 \begin{verbatim}
622         let fail.33 :: Void -> Int#
623             fail.33 = \_ -> error "Help"
624         in
625         case x of
626                 p1 -> ...
627                 p2 -> fail.33 void
628                 p3 -> fail.33 void
629                 p4 -> ...
630 \end{verbatim}
631
632 Now @fail.33@ is a function, so it can be let-bound.
633
634 \begin{code}
635 mkFailurePair :: CoreExpr       -- Result type of the whole case expression
636               -> DsM (CoreBind, -- Binds the newly-created fail variable
637                                 -- to either the expression or \ _ -> expression
638                       CoreExpr) -- Either the fail variable, or fail variable
639                                 -- applied to unit tuple
640 mkFailurePair expr
641   | isUnLiftedType ty
642   = newFailLocalDs (unitTy `mkFunTy` ty)        `thenDs` \ fail_fun_var ->
643     newSysLocalDs unitTy                        `thenDs` \ fail_fun_arg ->
644     returnDs (NonRec fail_fun_var (Lam fail_fun_arg expr),
645               App (Var fail_fun_var) (Var unitDataConId))
646
647   | otherwise
648   = newFailLocalDs ty           `thenDs` \ fail_var ->
649     returnDs (NonRec fail_var expr, Var fail_var)
650   where
651     ty = exprType expr
652 \end{code}
653
654
655