Remove unused imports
[ghc-hetmet.git] / compiler / deSugar / MatchLit.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5
6 Pattern-matching literal patterns
7
8 \begin{code}
9 module MatchLit ( dsLit, dsOverLit, hsLitKey, hsOverLitKey,
10                   tidyLitPat, tidyNPat, 
11                   matchLiterals, matchNPlusKPats, matchNPats ) where
12
13 #include "HsVersions.h"
14
15 import {-# SOURCE #-} Match  ( match )
16 import {-# SOURCE #-} DsExpr ( dsExpr )
17
18 import DsMonad
19 import DsUtils
20
21 import HsSyn
22
23 import Id
24 import CoreSyn
25 import MkCore
26 import TyCon
27 import DataCon
28 import TcHsSyn  ( shortCutLit )
29 import TcType
30 import PrelNames
31 import TysWiredIn
32 import Literal
33 import SrcLoc
34 import Ratio
35 import Outputable
36 import Util
37 import FastString
38 \end{code}
39
40 %************************************************************************
41 %*                                                                      *
42                 Desugaring literals
43         [used to be in DsExpr, but DsMeta needs it,
44          and it's nice to avoid a loop]
45 %*                                                                      *
46 %************************************************************************
47
48 We give int/float literals type @Integer@ and @Rational@, respectively.
49 The typechecker will (presumably) have put \tr{from{Integer,Rational}s}
50 around them.
51
52 ToDo: put in range checks for when converting ``@i@''
53 (or should that be in the typechecker?)
54
55 For numeric literals, we try to detect there use at a standard type
56 (@Int@, @Float@, etc.) are directly put in the right constructor.
57 [NB: down with the @App@ conversion.]
58
59 See also below where we look for @DictApps@ for \tr{plusInt}, etc.
60
61 \begin{code}
62 dsLit :: HsLit -> DsM CoreExpr
63 dsLit (HsStringPrim s) = return (Lit (MachStr s))
64 dsLit (HsCharPrim   c) = return (Lit (MachChar c))
65 dsLit (HsIntPrim    i) = return (Lit (MachInt i))
66 dsLit (HsWordPrim   w) = return (Lit (MachWord w))
67 dsLit (HsFloatPrim  f) = return (Lit (MachFloat f))
68 dsLit (HsDoublePrim d) = return (Lit (MachDouble d))
69
70 dsLit (HsChar c)       = return (mkCharExpr c)
71 dsLit (HsString str)   = mkStringExprFS str
72 dsLit (HsInteger i _)  = mkIntegerExpr i
73 dsLit (HsInt i)        = return (mkIntExpr i)
74
75 dsLit (HsRat r ty) = do
76    num   <- mkIntegerExpr (numerator r)
77    denom <- mkIntegerExpr (denominator r)
78    return (mkConApp ratio_data_con [Type integer_ty, num, denom])
79   where
80     (ratio_data_con, integer_ty) 
81         = case tcSplitTyConApp ty of
82                 (tycon, [i_ty]) -> ASSERT(isIntegerTy i_ty && tycon `hasKey` ratioTyConKey)
83                                    (head (tyConDataCons tycon), i_ty)
84                 x -> pprPanic "dsLit" (ppr x)
85
86 dsOverLit :: HsOverLit Id -> DsM CoreExpr
87 -- Post-typechecker, the SyntaxExpr field of an OverLit contains 
88 -- (an expression for) the literal value itself
89 dsOverLit (OverLit { ol_val = val, ol_rebindable = rebindable 
90                    , ol_witness = witness, ol_type = ty })
91   | not rebindable
92   , Just expr <- shortCutLit val ty = dsExpr expr       -- Note [Literal short cut]
93   | otherwise                       = dsExpr witness
94 \end{code}
95
96 Note [Literal short cut]
97 ~~~~~~~~~~~~~~~~~~~~~~~~
98 The type checker tries to do this short-cutting as early as possible, but 
99 becuase of unification etc, more information is available to the desugarer.
100 And where it's possible to generate the correct literal right away, it's
101 much better do do so.
102
103
104 \begin{code}
105 hsLitKey :: HsLit -> Literal
106 -- Get a Core literal to use (only) a grouping key
107 -- Hence its type doesn't need to match the type of the original literal
108 --      (and doesn't for strings)
109 -- It only works for primitive types and strings; 
110 -- others have been removed by tidy
111 hsLitKey (HsIntPrim     i) = mkMachInt  i
112 hsLitKey (HsWordPrim    w) = mkMachWord w
113 hsLitKey (HsCharPrim    c) = MachChar   c
114 hsLitKey (HsStringPrim  s) = MachStr    s
115 hsLitKey (HsFloatPrim   f) = MachFloat  f
116 hsLitKey (HsDoublePrim  d) = MachDouble d
117 hsLitKey (HsString s)      = MachStr    s
118 hsLitKey l                 = pprPanic "hsLitKey" (ppr l)
119
120 hsOverLitKey :: OutputableBndr a => HsOverLit a -> Bool -> Literal
121 -- Ditto for HsOverLit; the boolean indicates to negate
122 hsOverLitKey (OverLit { ol_val = l }) neg = litValKey l neg
123
124 litValKey :: OverLitVal -> Bool -> Literal
125 litValKey (HsIntegral i)   False = MachInt i
126 litValKey (HsIntegral i)   True  = MachInt (-i)
127 litValKey (HsFractional r) False = MachFloat r
128 litValKey (HsFractional r) True  = MachFloat (-r)
129 litValKey (HsIsString s)   neg   = ASSERT( not neg) MachStr s
130 \end{code}
131
132 %************************************************************************
133 %*                                                                      *
134         Tidying lit pats
135 %*                                                                      *
136 %************************************************************************
137
138 \begin{code}
139 tidyLitPat :: HsLit -> Pat Id
140 -- Result has only the following HsLits:
141 --      HsIntPrim, HsWordPrim, HsCharPrim, HsFloatPrim
142 --      HsDoublePrim, HsStringPrim, HsString
143 --  * HsInteger, HsRat, HsInt can't show up in LitPats
144 --  * We get rid of HsChar right here
145 tidyLitPat (HsChar c) = unLoc (mkCharLitPat c)
146 tidyLitPat (HsString s)
147   | lengthFS s <= 1     -- Short string literals only
148   = unLoc $ foldr (\c pat -> mkPrefixConPat consDataCon [mkCharLitPat c, pat] stringTy)
149                   (mkNilPat stringTy) (unpackFS s)
150         -- The stringTy is the type of the whole pattern, not 
151         -- the type to instantiate (:) or [] with!
152 tidyLitPat lit = LitPat lit
153
154 ----------------
155 tidyNPat :: HsOverLit Id -> Maybe (SyntaxExpr Id) -> SyntaxExpr Id -> Pat Id
156 tidyNPat (OverLit val False _ ty) mb_neg _
157         -- Take short cuts only if the literal is not using rebindable syntax
158   | isIntTy    ty = mk_con_pat intDataCon    (HsIntPrim int_val)
159   | isWordTy   ty = mk_con_pat wordDataCon   (HsWordPrim int_val)
160   | isFloatTy  ty = mk_con_pat floatDataCon  (HsFloatPrim  rat_val)
161   | isDoubleTy ty = mk_con_pat doubleDataCon (HsDoublePrim rat_val)
162 --  | isStringTy lit_ty = mk_con_pat stringDataCon (HsStringPrim str_val)
163   where
164     mk_con_pat :: DataCon -> HsLit -> Pat Id
165     mk_con_pat con lit = unLoc (mkPrefixConPat con [noLoc $ LitPat lit] ty)
166
167     neg_val = case (mb_neg, val) of
168                 (Nothing,              _) -> val
169                 (Just _,  HsIntegral   i) -> HsIntegral   (-i)
170                 (Just _,  HsFractional f) -> HsFractional (-f)
171                 (Just _,  HsIsString _)   -> panic "tidyNPat"
172                              
173     int_val :: Integer
174     int_val = case neg_val of
175                 HsIntegral i -> i
176                 _ -> panic "tidyNPat"
177         
178     rat_val :: Rational
179     rat_val = case neg_val of
180                 HsIntegral   i -> fromInteger i
181                 HsFractional f -> f
182                 _ -> panic "tidyNPat"
183         
184 {-
185     str_val :: FastString
186     str_val = case val of
187                 HsIsString s -> s
188                 _ -> panic "tidyNPat"
189 -}
190
191 tidyNPat over_lit mb_neg eq 
192   = NPat over_lit mb_neg eq
193 \end{code}
194
195
196 %************************************************************************
197 %*                                                                      *
198                 Pattern matching on LitPat
199 %*                                                                      *
200 %************************************************************************
201
202 \begin{code}
203 matchLiterals :: [Id]
204               -> Type                   -- Type of the whole case expression
205               -> [[EquationInfo]]       -- All PgLits
206               -> DsM MatchResult
207
208 matchLiterals (var:vars) ty sub_groups
209   = ASSERT( all notNull sub_groups )
210     do  {       -- Deal with each group
211         ; alts <- mapM match_group sub_groups
212
213                 -- Combine results.  For everything except String
214                 -- we can use a case expression; for String we need
215                 -- a chain of if-then-else
216         ; if isStringTy (idType var) then
217             do  { eq_str <- dsLookupGlobalId eqStringName
218                 ; mrs <- mapM (wrap_str_guard eq_str) alts
219                 ; return (foldr1 combineMatchResults mrs) }
220           else 
221             return (mkCoPrimCaseMatchResult var ty alts)
222         }
223   where
224     match_group :: [EquationInfo] -> DsM (Literal, MatchResult)
225     match_group eqns
226         = do { let LitPat hs_lit = firstPat (head eqns)
227              ; match_result <- match vars ty (shiftEqns eqns)
228              ; return (hsLitKey hs_lit, match_result) }
229
230     wrap_str_guard :: Id -> (Literal,MatchResult) -> DsM MatchResult
231         -- Equality check for string literals
232     wrap_str_guard eq_str (MachStr s, mr)
233         = do { lit    <- mkStringExprFS s
234              ; let pred = mkApps (Var eq_str) [Var var, lit]
235              ; return (mkGuardedMatchResult pred mr) }
236     wrap_str_guard _ (l, _) = pprPanic "matchLiterals/wrap_str_guard" (ppr l)
237
238 matchLiterals [] _ _ = panic "matchLiterals []"
239 \end{code}
240
241
242 %************************************************************************
243 %*                                                                      *
244                 Pattern matching on NPat
245 %*                                                                      *
246 %************************************************************************
247
248 \begin{code}
249 matchNPats :: [Id] -> Type -> [EquationInfo] -> DsM MatchResult
250 matchNPats (var:vars) ty (eqn1:eqns)    -- All for the same literal
251   = do  { let NPat lit mb_neg eq_chk = firstPat eqn1
252         ; lit_expr <- dsOverLit lit
253         ; neg_lit <- case mb_neg of
254                             Nothing -> return lit_expr
255                             Just neg -> do { neg_expr <- dsExpr neg
256                                            ; return (App neg_expr lit_expr) }
257         ; eq_expr <- dsExpr eq_chk
258         ; let pred_expr = mkApps eq_expr [Var var, neg_lit]
259         ; match_result <- match vars ty (shiftEqns (eqn1:eqns))
260         ; return (mkGuardedMatchResult pred_expr match_result) }
261 matchNPats vars _ eqns = pprPanic "matchOneNPat" (ppr (vars, eqns))
262 \end{code}
263
264
265 %************************************************************************
266 %*                                                                      *
267                 Pattern matching on n+k patterns
268 %*                                                                      *
269 %************************************************************************
270
271 For an n+k pattern, we use the various magic expressions we've been given.
272 We generate:
273 \begin{verbatim}
274     if ge var lit then
275         let n = sub var lit
276         in  <expr-for-a-successful-match>
277     else
278         <try-next-pattern-or-whatever>
279 \end{verbatim}
280
281
282 \begin{code}
283 matchNPlusKPats :: [Id] -> Type -> [EquationInfo] -> DsM MatchResult
284 -- All NPlusKPats, for the *same* literal k
285 matchNPlusKPats (var:vars) ty (eqn1:eqns)
286   = do  { let NPlusKPat (L _ n1) lit ge minus = firstPat eqn1
287         ; ge_expr     <- dsExpr ge
288         ; minus_expr  <- dsExpr minus
289         ; lit_expr    <- dsOverLit lit
290         ; let pred_expr   = mkApps ge_expr [Var var, lit_expr]
291               minusk_expr = mkApps minus_expr [Var var, lit_expr]
292               (wraps, eqns') = mapAndUnzip (shift n1) (eqn1:eqns)
293         ; match_result <- match vars ty eqns'
294         ; return  (mkGuardedMatchResult pred_expr               $
295                    mkCoLetMatchResult (NonRec n1 minusk_expr)   $
296                    adjustMatchResult (foldr1 (.) wraps)         $
297                    match_result) }
298   where
299     shift n1 eqn@(EqnInfo { eqn_pats = NPlusKPat (L _ n) _ _ _ : pats })
300         = (wrapBind n n1, eqn { eqn_pats = pats })
301         -- The wrapBind is a no-op for the first equation
302     shift _ e = pprPanic "matchNPlusKPats/shift" (ppr e)
303
304 matchNPlusKPats vars _ eqns = pprPanic "matchNPlusKPats" (ppr (vars, eqns))
305 \end{code}