Template Haskell: added bang patterns
[ghc-hetmet.git] / compiler / hsSyn / HsPat.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5 \section[PatSyntax]{Abstract Haskell syntax---patterns}
6
7 \begin{code}
8 {-# OPTIONS -fno-warn-incomplete-patterns #-}
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 HsPat (
16         Pat(..), InPat, OutPat, LPat, 
17         
18         HsConDetails(..), 
19         HsConPatDetails, hsConPatArgs, 
20         HsRecFields(..), HsRecField(..), hsRecFields,
21
22         HsQuasiQuote(..),
23
24         mkPrefixConPat, mkCharLitPat, mkNilPat, mkCoPat, mkCoPatCoI,
25
26         isBangHsBind,   
27         patsAreAllCons, isConPat, isSigPat, isWildPat,
28         patsAreAllLits, isLitPat, isIrrefutableHsPat
29     ) where
30
31 import {-# SOURCE #-} HsExpr            (SyntaxExpr, LHsExpr, pprLExpr)
32
33 -- friends:
34 import HsBinds
35 import HsLit
36 import HsTypes
37 import BasicTypes
38 -- others:
39 import Coercion
40 import PprCore          ( {- instance OutputableBndr TyVar -} )
41 import TysWiredIn
42 import Var
43 import DataCon
44 import TyCon
45 import Outputable       
46 import Type
47 import SrcLoc
48 import FastString
49 \end{code}
50
51
52 \begin{code}
53 type InPat id  = LPat id        -- No 'Out' constructors
54 type OutPat id = LPat id        -- No 'In' constructors
55
56 type LPat id = Located (Pat id)
57
58 data Pat id
59   =     ------------ Simple patterns ---------------
60     WildPat     PostTcType              -- Wild card
61         -- The sole reason for a type on a WildPat is to
62         -- support hsPatType :: Pat Id -> Type
63
64   | VarPat      id                      -- Variable
65   | VarPatOut   id (DictBinds id)       -- Used only for overloaded Ids; the 
66                                         -- bindings give its overloaded instances
67   | LazyPat     (LPat id)               -- Lazy pattern
68   | AsPat       (Located id) (LPat id)  -- As pattern
69   | ParPat      (LPat id)               -- Parenthesised pattern
70   | BangPat     (LPat id)               -- Bang pattern
71
72         ------------ Lists, tuples, arrays ---------------
73   | ListPat     [LPat id]               -- Syntactic list
74                 PostTcType              -- The type of the elements
75                     
76   | TuplePat    [LPat id]               -- Tuple
77                 Boxity                  -- UnitPat is TuplePat []
78                 PostTcType
79         -- You might think that the PostTcType was redundant, but it's essential
80         --      data T a where
81         --        T1 :: Int -> T Int
82         --      f :: (T a, a) -> Int
83         --      f (T1 x, z) = z
84         -- When desugaring, we must generate
85         --      f = /\a. \v::a.  case v of (t::T a, w::a) ->
86         --                       case t of (T1 (x::Int)) -> 
87         -- Note the (w::a), NOT (w::Int), because we have not yet
88         -- refined 'a' to Int.  So we must know that the second component
89         -- of the tuple is of type 'a' not Int.  See selectMatchVar
90
91   | PArrPat     [LPat id]               -- Syntactic parallel array
92                 PostTcType              -- The type of the elements
93
94         ------------ Constructor patterns ---------------
95   | ConPatIn    (Located id)
96                 (HsConPatDetails id)
97
98   | ConPatOut {
99         pat_con   :: Located DataCon,
100         pat_tvs   :: [TyVar],           -- Existentially bound type variables (tyvars only)
101         pat_dicts :: [id],              -- Ditto *coercion variables* and *dictionaries*
102                                         -- One reason for putting coercion variable here, I think,
103                                         --      is to ensure their kinds are zonked
104         pat_binds :: DictBinds id,      -- Bindings involving those dictionaries
105         pat_args  :: HsConPatDetails id,
106         pat_ty    :: Type               -- The type of the pattern
107     }
108
109         ------------ View patterns ---------------
110   | ViewPat       (LHsExpr id)      
111                   (LPat id)
112                   PostTcType        -- The overall type of the pattern
113                                     -- (= the argument type of the view function)
114                                     -- for hsPatType.
115
116         ------------ Quasiquoted patterns ---------------
117         -- See Note [Quasi-quote overview] in TcSplice
118   | QuasiQuotePat   (HsQuasiQuote id)
119
120         ------------ Literal and n+k patterns ---------------
121   | LitPat          HsLit               -- Used for *non-overloaded* literal patterns:
122                                         -- Int#, Char#, Int, Char, String, etc.
123
124   | NPat            (HsOverLit id)              -- ALWAYS positive
125                     (Maybe (SyntaxExpr id))     -- Just (Name of 'negate') for negative
126                                                 -- patterns, Nothing otherwise
127                     (SyntaxExpr id)             -- Equality checker, of type t->t->Bool
128
129   | NPlusKPat       (Located id)        -- n+k pattern
130                     (HsOverLit id)      -- It'll always be an HsIntegral
131                     (SyntaxExpr id)     -- (>=) function, of type t->t->Bool
132                     (SyntaxExpr id)     -- Name of '-' (see RnEnv.lookupSyntaxName)
133
134         ------------ Generics ---------------
135   | TypePat         (LHsType id)        -- Type pattern for generic definitions
136                                         -- e.g  f{| a+b |} = ...
137                                         -- These show up only in class declarations,
138                                         -- and should be a top-level pattern
139
140         ------------ Pattern type signatures ---------------
141   | SigPatIn        (LPat id)           -- Pattern with a type signature
142                     (LHsType id)
143
144   | SigPatOut       (LPat id)           -- Pattern with a type signature
145                     Type
146
147         ------------ Pattern coercions (translation only) ---------------
148   | CoPat       HsWrapper               -- If co::t1 -> t2, p::t2, 
149                                         -- then (CoPat co p) :: t1
150                 (Pat id)                -- Why not LPat?  Ans: existing locn will do
151                 Type                    -- Type of whole pattern, t1
152         -- During desugaring a (CoPat co pat) turns into a cast with 'co' on 
153         -- the scrutinee, followed by a match on 'pat'
154 \end{code}
155
156 HsConDetails is use for patterns/expressions *and* for data type declarations
157
158 \begin{code}
159 data HsConDetails arg rec
160   = PrefixCon [arg]             -- C p1 p2 p3
161   | RecCon    rec               -- C { x = p1, y = p2 }
162   | InfixCon  arg arg           -- p1 `C` p2
163
164 type HsConPatDetails id = HsConDetails (LPat id) (HsRecFields id (LPat id))
165
166 hsConPatArgs :: HsConPatDetails id -> [LPat id]
167 hsConPatArgs (PrefixCon ps)   = ps
168 hsConPatArgs (RecCon fs)      = map hsRecFieldArg (rec_flds fs)
169 hsConPatArgs (InfixCon p1 p2) = [p1,p2]
170 \end{code}
171
172 However HsRecFields is used only for patterns and expressions
173 (not data type declarations)
174
175 \begin{code}
176 data HsRecFields id arg         -- A bunch of record fields
177                                 --      { x = 3, y = True }
178         -- Used for both expressiona and patterns
179   = HsRecFields { rec_flds   :: [HsRecField id arg],
180                   rec_dotdot :: Maybe Int }
181         -- Nothing => the normal case
182         -- Just n  => the group uses ".." notation, 
183         --              and the first n elts of rec_flds
184         --              were the user-written ones
185         -- (In the latter case, the remaining elts of
186         --  rec_flds are the non-user-written ones)
187
188 data HsRecField id arg = HsRecField {
189         hsRecFieldId  :: Located id,
190         hsRecFieldArg :: arg,
191         hsRecPun      :: Bool           -- Note [Punning]
192   }
193
194 -- Note [Punning]
195 -- ~~~~~~~~~~~~~~
196 -- If you write T { x, y = v+1 }, the HsRecFields will be
197 --      HsRecField x x True ...
198 --      HsRecField y (v+1) False ...
199 -- That is, for "punned" field x is immediately expanded to x=x
200 -- but with a punning flag so we can detect it later
201 -- (e.g. when pretty printing)
202
203 hsRecFields :: HsRecFields id arg -> [id]
204 hsRecFields rbinds = map (unLoc . hsRecFieldId) (rec_flds rbinds)
205 \end{code}
206
207 \begin{code}
208 data HsQuasiQuote id = HsQuasiQuote 
209                        id
210                        id
211                        SrcSpan
212                        FastString
213
214 instance OutputableBndr id => Outputable (HsQuasiQuote id) where
215     ppr = ppr_qq
216
217 ppr_qq :: OutputableBndr id => HsQuasiQuote id -> SDoc
218 ppr_qq (HsQuasiQuote name quoter _ quote) =
219     char '$' <> brackets (ppr name) <>
220     ptext (sLit "[:") <> ppr quoter <> ptext (sLit "|") <>
221     ppr quote <> ptext (sLit "|]")
222 \end{code}
223
224
225 %************************************************************************
226 %*                                                                      *
227 %*              Printing patterns
228 %*                                                                      *
229 %************************************************************************
230
231 \begin{code}
232 instance (OutputableBndr name) => Outputable (Pat name) where
233     ppr = pprPat
234
235 pprPatBndr :: OutputableBndr name => name -> SDoc
236 pprPatBndr var                  -- Print with type info if -dppr-debug is on
237   = getPprStyle $ \ sty ->
238     if debugStyle sty then
239         parens (pprBndr LambdaBind var)         -- Could pass the site to pprPat
240                                                 -- but is it worth it?
241     else
242         ppr var
243
244 pprPat :: (OutputableBndr name) => Pat name -> SDoc
245 pprPat (VarPat var)       = pprPatBndr var
246 pprPat (VarPatOut var bs) = parens (pprPatBndr var <+> braces (ppr bs))
247 pprPat (WildPat _)        = char '_'
248 pprPat (LazyPat pat)      = char '~' <> ppr pat
249 pprPat (BangPat pat)      = char '!' <> ppr pat
250 pprPat (AsPat name pat)   = parens (hcat [ppr name, char '@', ppr pat])
251 pprPat (ViewPat expr pat _)   = parens (hcat [pprLExpr expr, text " -> ", ppr pat])
252 pprPat (ParPat pat)       = parens (ppr pat)
253 pprPat (ListPat pats _)     = brackets (interpp'SP pats)
254 pprPat (PArrPat pats _)     = pabrackets (interpp'SP pats)
255 pprPat (TuplePat pats bx _) = tupleParens bx (interpp'SP pats)
256
257 pprPat (ConPatIn con details) = pprUserCon con details
258 pprPat (ConPatOut { pat_con = con, pat_tvs = tvs, pat_dicts = dicts, 
259                     pat_binds = binds, pat_args = details })
260   = getPprStyle $ \ sty ->      -- Tiresome; in TcBinds.tcRhs we print out a 
261     if debugStyle sty then      -- typechecked Pat in an error message, 
262                                 -- and we want to make sure it prints nicely
263         ppr con <+> sep [ hsep (map pprPatBndr tvs) <+> hsep (map pprPatBndr dicts),
264                           pprLHsBinds binds, pprConArgs details]
265     else pprUserCon con details
266
267 pprPat (LitPat s)             = ppr s
268 pprPat (NPat l Nothing  _)  = ppr l
269 pprPat (NPat l (Just _) _)  = char '-' <> ppr l
270 pprPat (NPlusKPat n k _ _)    = hcat [ppr n, char '+', ppr k]
271 pprPat (QuasiQuotePat (HsQuasiQuote name quoter _ quote)) 
272     = char '$' <> brackets (ppr name) <>
273       ptext (sLit "[:") <> ppr quoter <> ptext (sLit "|") <>
274       ppr quote <> ptext (sLit "|]")
275 pprPat (TypePat ty)           = ptext (sLit "{|") <> ppr ty <> ptext (sLit "|}")
276 pprPat (CoPat co pat _)       = parens (pprHsWrapper (ppr pat) co)
277 pprPat (SigPatIn pat ty)      = ppr pat <+> dcolon <+> ppr ty
278 pprPat (SigPatOut pat ty)     = ppr pat <+> dcolon <+> ppr ty
279
280 pprUserCon :: (Outputable con, OutputableBndr id) => con -> HsConPatDetails id -> SDoc
281 pprUserCon c (InfixCon p1 p2) = ppr p1 <+> ppr c <+> ppr p2
282 pprUserCon c details          = ppr c <+> pprConArgs details
283
284 pprConArgs ::  OutputableBndr id => HsConPatDetails id -> SDoc
285 pprConArgs (PrefixCon pats) = interppSP pats
286 pprConArgs (InfixCon p1 p2) = interppSP [p1,p2]
287 pprConArgs (RecCon rpats)   = ppr rpats
288
289 instance (OutputableBndr id, Outputable arg)
290       => Outputable (HsRecFields id arg) where
291   ppr (HsRecFields { rec_flds = flds, rec_dotdot = Nothing })
292         = braces (fsep (punctuate comma (map ppr flds)))
293   ppr (HsRecFields { rec_flds = flds, rec_dotdot = Just n })
294         = braces (fsep (punctuate comma (map ppr (take n flds) ++ [dotdot])))
295         where
296           dotdot = ptext (sLit "..") <+> ifPprDebug (ppr (drop n flds))
297
298 instance (OutputableBndr id, Outputable arg)
299       => Outputable (HsRecField id arg) where
300   ppr (HsRecField { hsRecFieldId = f, hsRecFieldArg = arg, 
301                     hsRecPun = pun })
302     = ppr f <+> (if pun then empty else equals <+> ppr arg)
303
304 -- add parallel array brackets around a document
305 --
306 pabrackets   :: SDoc -> SDoc
307 pabrackets p  = ptext (sLit "[:") <> p <> ptext (sLit ":]")
308 \end{code}
309
310
311 %************************************************************************
312 %*                                                                      *
313 %*              Building patterns
314 %*                                                                      *
315 %************************************************************************
316
317 \begin{code}
318 mkPrefixConPat :: DataCon -> [OutPat id] -> Type -> OutPat id
319 -- Make a vanilla Prefix constructor pattern
320 mkPrefixConPat dc pats ty 
321   = noLoc $ ConPatOut { pat_con = noLoc dc, pat_tvs = [], pat_dicts = [],
322                         pat_binds = emptyLHsBinds, pat_args = PrefixCon pats, 
323                         pat_ty = ty }
324
325 mkNilPat :: Type -> OutPat id
326 mkNilPat ty = mkPrefixConPat nilDataCon [] ty
327
328 mkCharLitPat :: Char -> OutPat id
329 mkCharLitPat c = mkPrefixConPat charDataCon [noLoc $ LitPat (HsCharPrim c)] charTy
330
331 mkCoPat :: HsWrapper -> Pat id -> Type -> Pat id
332 mkCoPat co pat ty
333   | isIdHsWrapper co = pat
334   | otherwise        = CoPat co pat ty
335
336 mkCoPatCoI :: CoercionI -> Pat id -> Type -> Pat id
337 mkCoPatCoI IdCo     pat _  = pat
338 mkCoPatCoI (ACo co) pat ty = mkCoPat (WpCast co) pat ty
339 \end{code}
340
341
342 %************************************************************************
343 %*                                                                      *
344 %* Predicates for checking things about pattern-lists in EquationInfo   *
345 %*                                                                      *
346 %************************************************************************
347
348 \subsection[Pat-list-predicates]{Look for interesting things in patterns}
349
350 Unlike in the Wadler chapter, where patterns are either ``variables''
351 or ``constructors,'' here we distinguish between:
352 \begin{description}
353 \item[unfailable:]
354 Patterns that cannot fail to match: variables, wildcards, and lazy
355 patterns.
356
357 These are the irrefutable patterns; the two other categories
358 are refutable patterns.
359
360 \item[constructor:]
361 A non-literal constructor pattern (see next category).
362
363 \item[literal patterns:]
364 At least the numeric ones may be overloaded.
365 \end{description}
366
367 A pattern is in {\em exactly one} of the above three categories; `as'
368 patterns are treated specially, of course.
369
370 The 1.3 report defines what ``irrefutable'' and ``failure-free'' patterns are.
371 \begin{code}
372 isWildPat :: Pat id -> Bool
373 isWildPat (WildPat _) = True
374 isWildPat _           = False
375
376 patsAreAllCons :: [Pat id] -> Bool
377 patsAreAllCons pat_list = all isConPat pat_list
378
379 isConPat :: Pat id -> Bool
380 isConPat (AsPat _ pat)   = isConPat (unLoc pat)
381 isConPat (ConPatIn {})   = True
382 isConPat (ConPatOut {})  = True
383 isConPat (ListPat {})    = True
384 isConPat (PArrPat {})    = True
385 isConPat (TuplePat {})   = True
386 isConPat _               = False
387
388 isSigPat :: Pat id -> Bool
389 isSigPat (SigPatIn _ _)  = True
390 isSigPat (SigPatOut _ _) = True
391 isSigPat _               = False
392
393 patsAreAllLits :: [Pat id] -> Bool
394 patsAreAllLits pat_list = all isLitPat pat_list
395
396 isLitPat :: Pat id -> Bool
397 isLitPat (AsPat _ pat)          = isLitPat (unLoc pat)
398 isLitPat (LitPat _)             = True
399 isLitPat (NPat _ _ _)           = True
400 isLitPat (NPlusKPat _ _ _ _)    = True
401 isLitPat _                      = False
402
403 isBangHsBind :: HsBind id -> Bool
404 -- In this module because HsPat is above HsBinds in the import graph
405 isBangHsBind (PatBind { pat_lhs = L _ (BangPat _) }) = True
406 isBangHsBind _                                       = False
407
408 isIrrefutableHsPat :: OutputableBndr id => LPat id -> Bool
409 -- (isIrrefutableHsPat p) is true if matching against p cannot fail,
410 -- in the sense of falling through to the next pattern.
411 --      (NB: this is not quite the same as the (silly) defn
412 --      in 3.17.2 of the Haskell 98 report.)
413 -- 
414 -- isIrrefutableHsPat returns False if it's in doubt; specifically
415 -- on a ConPatIn it doesn't know the size of the constructor family
416 -- But if it returns True, the pattern is definitely irrefutable
417 isIrrefutableHsPat pat
418   = go pat
419   where
420     go (L _ pat)         = go1 pat
421
422     go1 (WildPat _)         = True
423     go1 (VarPat _)          = True
424     go1 (VarPatOut _ _)     = True
425     go1 (LazyPat _)         = True
426     go1 (BangPat pat)       = go pat
427     go1 (CoPat _ pat _)     = go1 pat
428     go1 (ParPat pat)        = go pat
429     go1 (AsPat _ pat)       = go pat
430     go1 (ViewPat _ pat _)   = go pat
431     go1 (SigPatIn pat _)    = go pat
432     go1 (SigPatOut pat _)   = go pat
433     go1 (TuplePat pats _ _) = all go pats
434     go1 (ListPat _ _)       = False
435     go1 (PArrPat _ _)       = False     -- ?
436
437     go1 (ConPatIn _ _) = False  -- Conservative
438     go1 (ConPatOut{ pat_con = L _ con, pat_args = details }) 
439         =  isProductTyCon (dataConTyCon con)
440         && all go (hsConPatArgs details)
441
442     go1 (LitPat _)         = False
443     go1 (NPat _ _ _)       = False
444     go1 (NPlusKPat _ _ _ _) = False
445
446     go1 (QuasiQuotePat {}) = urk pat    -- Gotten rid of by renamer, before
447                                         -- isIrrefutablePat is called
448     go1 (TypePat {})       = urk pat
449
450     urk pat = pprPanic "isIrrefutableHsPat:" (ppr pat)
451 \end{code}
452