Comments only
[ghc-hetmet.git] / compiler / coreSyn / CoreSyn.lhs
1 %
2 % (c) The University of Glasgow 2006
3 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 %
5
6 \begin{code}
7
8 -- | CoreSyn holds all the main data types for use by for the Glasgow Haskell Compiler midsection
9 module CoreSyn (
10         -- * Main data types
11         Expr(..), Alt, Bind(..), AltCon(..), Arg, Note(..),
12         CoreExpr, CoreAlt, CoreBind, CoreArg, CoreBndr,
13         TaggedExpr, TaggedAlt, TaggedBind, TaggedArg, TaggedBndr(..),
14
15         -- ** 'Expr' construction
16         mkLets, mkLams,
17         mkApps, mkTyApps, mkVarApps,
18         
19         mkIntLit, mkIntLitInt,
20         mkWordLit, mkWordLitWord,
21         mkCharLit, mkStringLit,
22         mkFloatLit, mkFloatLitFloat,
23         mkDoubleLit, mkDoubleLitDouble,
24         
25         mkConApp, mkTyBind,
26         varToCoreExpr, varsToCoreExprs,
27
28         isTyVar, isId, cmpAltCon, cmpAlt, ltAlt,
29         
30         -- ** Simple 'Expr' access functions and predicates
31         bindersOf, bindersOfBinds, rhssOfBind, rhssOfAlts, 
32         collectBinders, collectTyBinders, collectValBinders, collectTyAndValBinders,
33         collectArgs, coreExprCc, flattenBinds, 
34
35         isValArg, isTypeArg, valArgCount, valBndrCount, isRuntimeArg, isRuntimeVar,
36
37         -- * Unfolding data types
38         Unfolding(..),  UnfoldingGuidance(..), UnfoldingSource(..),
39                 -- Abstract everywhere but in CoreUnfold.lhs
40         
41         -- ** Constructing 'Unfolding's
42         noUnfolding, evaldUnfolding, mkOtherCon,
43         unSaturatedOk, needSaturated, boringCxtOk, boringCxtNotOk,
44         
45         -- ** Predicates and deconstruction on 'Unfolding'
46         unfoldingTemplate, setUnfoldingTemplate, expandUnfolding_maybe,
47         maybeUnfoldingTemplate, otherCons, unfoldingArity,
48         isValueUnfolding, isEvaldUnfolding, isCheapUnfolding,
49         isExpandableUnfolding, isConLikeUnfolding, isCompulsoryUnfolding,
50         isInlineRule, isInlineRule_maybe, isClosedUnfolding, hasSomeUnfolding, 
51         isStableUnfolding, canUnfold, neverUnfoldGuidance, isInlineRuleSource,
52
53         -- * Strictness
54         seqExpr, seqExprs, seqUnfolding, 
55
56         -- * Annotated expression data types
57         AnnExpr, AnnExpr'(..), AnnBind(..), AnnAlt,
58         
59         -- ** Operations on annotations
60         deAnnotate, deAnnotate', deAnnAlt, collectAnnBndrs,
61
62         -- * Core rule data types
63         CoreRule(..),   -- CoreSubst, CoreTidy, CoreFVs, PprCore only
64         RuleName, IdUnfoldingFun,
65         
66         -- ** Operations on 'CoreRule's 
67         seqRules, ruleArity, ruleName, ruleIdName, ruleActivation_maybe,
68         setRuleIdName,
69         isBuiltinRule, isLocalRule
70     ) where
71
72 #include "HsVersions.h"
73
74 import CostCentre
75 import Var
76 import Type
77 import Coercion
78 import Name
79 import Literal
80 import DataCon
81 import BasicTypes
82 import FastString
83 import Outputable
84 import Util
85
86 import Data.Word
87
88 infixl 4 `mkApps`, `mkTyApps`, `mkVarApps`
89 -- Left associative, so that we can say (f `mkTyApps` xs `mkVarApps` ys)
90 \end{code}
91
92 %************************************************************************
93 %*                                                                      *
94 \subsection{The main data types}
95 %*                                                                      *
96 %************************************************************************
97
98 These data types are the heart of the compiler
99
100 \begin{code}
101 infixl 8 `App`  -- App brackets to the left
102
103 -- | This is the data type that represents GHCs core intermediate language. Currently
104 -- GHC uses System FC <http://research.microsoft.com/~simonpj/papers/ext-f/> for this purpose,
105 -- which is closely related to the simpler and better known System F <http://en.wikipedia.org/wiki/System_F>.
106 --
107 -- We get from Haskell source to this Core language in a number of stages:
108 --
109 -- 1. The source code is parsed into an abstract syntax tree, which is represented
110 --    by the data type 'HsExpr.HsExpr' with the names being 'RdrName.RdrNames'
111 --
112 -- 2. This syntax tree is /renamed/, which attaches a 'Unique.Unique' to every 'RdrName.RdrName'
113 --    (yielding a 'Name.Name') to disambiguate identifiers which are lexically identical. 
114 --    For example, this program:
115 --
116 -- @
117 --      f x = let f x = x + 1
118 --            in f (x - 2)
119 -- @
120 --
121 --    Would be renamed by having 'Unique's attached so it looked something like this:
122 --
123 -- @
124 --      f_1 x_2 = let f_3 x_4 = x_4 + 1
125 --                in f_3 (x_2 - 2)
126 -- @
127 --
128 -- 3. The resulting syntax tree undergoes type checking (which also deals with instantiating
129 --    type class arguments) to yield a 'HsExpr.HsExpr' type that has 'Id.Id' as it's names.
130 --
131 -- 4. Finally the syntax tree is /desugared/ from the expressive 'HsExpr.HsExpr' type into
132 --    this 'Expr' type, which has far fewer constructors and hence is easier to perform
133 --    optimization, analysis and code generation on.
134 --
135 -- The type parameter @b@ is for the type of binders in the expression tree.
136 data Expr b
137   = Var   Id                            -- ^ Variables
138   | Lit   Literal                       -- ^ Primitive literals
139   | App   (Expr b) (Arg b)              -- ^ Applications: note that the argument may be a 'Type'.
140                                         --
141                                         -- See "CoreSyn#let_app_invariant" for another invariant
142   | Lam   b (Expr b)                    -- ^ Lambda abstraction
143   | Let   (Bind b) (Expr b)             -- ^ Recursive and non recursive @let@s. Operationally
144                                         -- this corresponds to allocating a thunk for the things
145                                         -- bound and then executing the sub-expression.
146                                         -- 
147                                         -- #top_level_invariant#
148                                         -- #letrec_invariant#
149                                         --
150                                         -- The right hand sides of all top-level and recursive @let@s
151                                         -- /must/ be of lifted type (see "Type#type_classification" for
152                                         -- the meaning of /lifted/ vs. /unlifted/).
153                                         --
154                                         -- #let_app_invariant#
155                                         -- The right hand side of of a non-recursive 'Let' _and_ the argument of an 'App',
156                                         -- /may/ be of unlifted type, but only if the expression 
157                                         -- is ok-for-speculation.  This means that the let can be floated around 
158                                         -- without difficulty. For example, this is OK:
159                                         --
160                                         -- > y::Int# = x +# 1#
161                                         --
162                                         -- But this is not, as it may affect termination if the expression is floated out:
163                                         --
164                                         -- > y::Int# = fac 4#
165                                         --
166                                         -- In this situation you should use @case@ rather than a @let@. The function
167                                         -- 'CoreUtils.needsCaseBinding' can help you determine which to generate, or
168                                         -- alternatively use 'MkCore.mkCoreLet' rather than this constructor directly,
169                                         -- which will generate a @case@ if necessary
170                                         --
171                                         -- #type_let#
172                                         -- We allow a /non-recursive/ let to bind a type variable, thus:
173                                         --
174                                         -- > Let (NonRec tv (Type ty)) body
175                                         --
176                                         -- This can be very convenient for postponing type substitutions until
177                                         -- the next run of the simplifier.
178                                         --
179                                         -- At the moment, the rest of the compiler only deals with type-let
180                                         -- in a Let expression, rather than at top level.  We may want to revist
181                                         -- this choice.
182   | Case  (Expr b) b Type [Alt b]       -- ^ Case split. Operationally this corresponds to evaluating
183                                         -- the scrutinee (expression examined) to weak head normal form
184                                         -- and then examining at most one level of resulting constructor (i.e. you
185                                         -- cannot do nested pattern matching directly with this).
186                                         --
187                                         -- The binder gets bound to the value of the scrutinee,
188                                         -- and the 'Type' must be that of all the case alternatives
189                                         --
190                                         -- #case_invariants#
191                                         -- This is one of the more complicated elements of the Core language, and comes
192                                         -- with a number of restrictions:
193                                         --
194                                         -- The 'DEFAULT' case alternative must be first in the list, if it occurs at all.
195                                         --
196                                         -- The remaining cases are in order of increasing 
197                                         --      tag     (for 'DataAlts') or
198                                         --      lit     (for 'LitAlts').
199                                         -- This makes finding the relevant constructor easy, and makes comparison easier too.
200                                         --
201                                         -- The list of alternatives must be exhaustive. An /exhaustive/ case 
202                                         -- does not necessarily mention all constructors:
203                                         --
204                                         -- @
205                                         --      data Foo = Red | Green | Blue
206                                         -- ... case x of 
207                                         --      Red   -> True
208                                         --      other -> f (case x of 
209                                         --                      Green -> ...
210                                         --                      Blue  -> ... ) ...
211                                         -- @
212                                         --
213                                         -- The inner case does not need a @Red@ alternative, because @x@ can't be @Red@ at
214                                         -- that program point.
215   | Cast  (Expr b) Coercion             -- ^ Cast an expression to a particular type. This is used to implement @newtype@s
216                                         -- (a @newtype@ constructor or destructor just becomes a 'Cast' in Core) and GADTs.
217   | Note  Note (Expr b)                 -- ^ Notes. These allow general information to be
218                                         -- added to expressions in the syntax tree
219   | Type  Type                          -- ^ A type: this should only show up at the top
220                                         -- level of an Arg
221
222 -- | Type synonym for expressions that occur in function argument positions.
223 -- Only 'Arg' should contain a 'Type' at top level, general 'Expr' should not
224 type Arg b = Expr b
225
226 -- | A case split alternative. Consists of the constructor leading to the alternative,
227 -- the variables bound from the constructor, and the expression to be executed given that binding.
228 -- The default alternative is @(DEFAULT, [], rhs)@
229 type Alt b = (AltCon, [b], Expr b)
230
231 -- | A case alternative constructor (i.e. pattern match)
232 data AltCon = DataAlt DataCon   -- ^ A plain data constructor: @case e of { Foo x -> ... }@.
233                                 -- Invariant: the 'DataCon' is always from a @data@ type, and never from a @newtype@
234             | LitAlt  Literal   -- ^ A literal: @case e of { 1 -> ... }@
235             | DEFAULT           -- ^ Trivial alternative: @case e of { _ -> ... }@
236          deriving (Eq, Ord)
237
238 -- | Binding, used for top level bindings in a module and local bindings in a @let@.
239 data Bind b = NonRec b (Expr b)
240             | Rec [(b, (Expr b))]
241 \end{code}
242
243 -------------------------- CoreSyn INVARIANTS ---------------------------
244
245 Note [CoreSyn top-level invariant]
246 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
247 See #toplevel_invariant#
248
249 Note [CoreSyn letrec invariant]
250 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
251 See #letrec_invariant#
252
253 Note [CoreSyn let/app invariant]
254 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
255 See #let_app_invariant#
256
257 This is intially enforced by DsUtils.mkCoreLet and mkCoreApp
258
259 Note [CoreSyn case invariants]
260 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
261 See #case_invariants#
262
263 Note [CoreSyn let goal]
264 ~~~~~~~~~~~~~~~~~~~~~~~
265 * The simplifier tries to ensure that if the RHS of a let is a constructor
266   application, its arguments are trivial, so that the constructor can be
267   inlined vigorously.
268
269
270 Note [Type let]
271 ~~~~~~~~~~~~~~~
272 See #type_let#
273
274 \begin{code}
275
276 -- | Allows attaching extra information to points in expressions rather than e.g. identifiers.
277 data Note
278   = SCC CostCentre      -- ^ A cost centre annotation for profiling
279   | CoreNote String     -- ^ A generic core annotation, propagated but not used by GHC
280 \end{code}
281
282
283 %************************************************************************
284 %*                                                                      *
285 \subsection{Transformation rules}
286 %*                                                                      *
287 %************************************************************************
288
289 The CoreRule type and its friends are dealt with mainly in CoreRules,
290 but CoreFVs, Subst, PprCore, CoreTidy also inspect the representation.
291
292 \begin{code}
293 -- | A 'CoreRule' is:
294 --
295 -- * \"Local\" if the function it is a rule for is defined in the
296 --   same module as the rule itself.
297 --
298 -- * \"Orphan\" if nothing on the LHS is defined in the same module
299 --   as the rule itself
300 data CoreRule
301   = Rule { 
302         ru_name :: RuleName,            -- ^ Name of the rule, for communication with the user
303         ru_act  :: Activation,          -- ^ When the rule is active
304         
305         -- Rough-matching stuff
306         -- see comments with InstEnv.Instance( is_cls, is_rough )
307         ru_fn    :: Name,               -- ^ Name of the 'Id.Id' at the head of this rule
308         ru_rough :: [Maybe Name],       -- ^ Name at the head of each argument to the left hand side
309         
310         -- Proper-matching stuff
311         -- see comments with InstEnv.Instance( is_tvs, is_tys )
312         ru_bndrs :: [CoreBndr],         -- ^ Variables quantified over
313         ru_args  :: [CoreExpr],         -- ^ Left hand side arguments
314         
315         -- And the right-hand side
316         ru_rhs   :: CoreExpr,           -- ^ Right hand side of the rule
317                                         -- Occurrence info is guaranteed correct
318                                         -- See Note [OccInfo in unfoldings and rules]
319
320         -- Locality
321         ru_local :: Bool        -- ^ @True@ iff the fn at the head of the rule is
322                                 -- defined in the same module as the rule
323                                 -- and is not an implicit 'Id' (like a record selector,
324                                 -- class operation, or data constructor)
325
326                 -- NB: ru_local is *not* used to decide orphan-hood
327                 --      c.g. MkIface.coreRuleToIfaceRule
328     }
329
330   -- | Built-in rules are used for constant folding
331   -- and suchlike.  They have no free variables.
332   | BuiltinRule {               
333         ru_name  :: RuleName,   -- ^ As above
334         ru_fn    :: Name,       -- ^ As above
335         ru_nargs :: Int,        -- ^ Number of arguments that 'ru_try' consumes,
336                                 -- if it fires, including type arguments
337         ru_try  :: IdUnfoldingFun -> [CoreExpr] -> Maybe CoreExpr
338                 -- ^ This function does the rewrite.  It given too many
339                 -- arguments, it simply discards them; the returned 'CoreExpr'
340                 -- is just the rewrite of 'ru_fn' applied to the first 'ru_nargs' args
341     }
342                 -- See Note [Extra args in rule matching] in Rules.lhs
343
344 type IdUnfoldingFun = Id -> Unfolding
345 -- A function that embodies how to unfold an Id if you need
346 -- to do that in the Rule.  The reason we need to pass this info in
347 -- is that whether an Id is unfoldable depends on the simplifier phase
348
349 isBuiltinRule :: CoreRule -> Bool
350 isBuiltinRule (BuiltinRule {}) = True
351 isBuiltinRule _                = False
352
353 -- | The number of arguments the 'ru_fn' must be applied 
354 -- to before the rule can match on it
355 ruleArity :: CoreRule -> Int
356 ruleArity (BuiltinRule {ru_nargs = n}) = n
357 ruleArity (Rule {ru_args = args})      = length args
358
359 ruleName :: CoreRule -> RuleName
360 ruleName = ru_name
361
362 ruleActivation_maybe :: CoreRule -> Maybe Activation
363 ruleActivation_maybe (BuiltinRule { })       = Nothing
364 ruleActivation_maybe (Rule { ru_act = act }) = Just act
365
366 -- | The 'Name' of the 'Id.Id' at the head of the rule left hand side
367 ruleIdName :: CoreRule -> Name
368 ruleIdName = ru_fn
369
370 isLocalRule :: CoreRule -> Bool
371 isLocalRule = ru_local
372
373 -- | Set the 'Name' of the 'Id.Id' at the head of the rule left hand side
374 setRuleIdName :: Name -> CoreRule -> CoreRule
375 setRuleIdName nm ru = ru { ru_fn = nm }
376 \end{code}
377
378
379 %************************************************************************
380 %*                                                                      *
381                 Unfoldings
382 %*                                                                      *
383 %************************************************************************
384
385 The @Unfolding@ type is declared here to avoid numerous loops
386
387 \begin{code}
388 -- | Records the /unfolding/ of an identifier, which is approximately the form the
389 -- identifier would have if we substituted its definition in for the identifier.
390 -- This type should be treated as abstract everywhere except in "CoreUnfold"
391 data Unfolding
392   = NoUnfolding        -- ^ We have no information about the unfolding
393
394   | OtherCon [AltCon]  -- ^ It ain't one of these constructors.
395                        -- @OtherCon xs@ also indicates that something has been evaluated
396                        -- and hence there's no point in re-evaluating it.
397                        -- @OtherCon []@ is used even for non-data-type values
398                        -- to indicated evaluated-ness.  Notably:
399                        --
400                        -- > data C = C !(Int -> Int)
401                        -- > case x of { C f -> ... }
402                        --
403                        -- Here, @f@ gets an @OtherCon []@ unfolding.
404
405   | DFunUnfolding DataCon [CoreExpr]    
406                         -- The Unfolding of a DFunId
407                         --     df = /\a1..am. \d1..dn. MkD (op1 a1..am d1..dn)
408                         --                                 (op2 a1..am d1..dn)
409                         -- where Arity = n, the number of dict args to the dfun
410                         -- The [CoreExpr] are the superclasses and methods [op1,op2], 
411                         -- in positional order.
412                         -- They are usually variables, but can be trivial expressions
413                         -- instead (e.g. a type application).  
414
415   | CoreUnfolding {             -- An unfolding for an Id with no pragma, or perhaps a NOINLINE pragma
416                                 -- (For NOINLINE, the phase, if any, is in the InlinePragInfo for this Id.)
417         uf_tmpl       :: CoreExpr,        -- Template; occurrence info is correct
418         uf_src        :: UnfoldingSource, -- Where the unfolding came from
419         uf_is_top     :: Bool,          -- True <=> top level binding
420         uf_arity      :: Arity,         -- Number of value arguments expected
421         uf_is_value   :: Bool,          -- exprIsHNF template (cached); it is ok to discard a `seq` on
422                                         --      this variable
423         uf_is_conlike :: Bool,          -- True <=> application of constructor or CONLIKE function
424                                         --      Cached version of exprIsConLike
425         uf_is_cheap   :: Bool,          -- True <=> doesn't waste (much) work to expand inside an inlining
426                                         --      Cached version of exprIsCheap
427         uf_expandable :: Bool,          -- True <=> can expand in RULE matching
428                                         --      Cached version of exprIsExpandable
429         uf_guidance   :: UnfoldingGuidance      -- Tells about the *size* of the template.
430     }
431   -- ^ An unfolding with redundant cached information. Parameters:
432   --
433   --  uf_tmpl: Template used to perform unfolding; 
434   --           NB: Occurrence info is guaranteed correct: 
435   --               see Note [OccInfo in unfoldings and rules]
436   --
437   --  uf_is_top: Is this a top level binding?
438   --
439   --  uf_is_value: 'exprIsHNF' template (cached); it is ok to discard a 'seq' on
440   --     this variable
441   --
442   --  uf_is_cheap:  Does this waste only a little work if we expand it inside an inlining?
443   --     Basically this is a cached version of 'exprIsCheap'
444   --
445   --  uf_guidance:  Tells us about the /size/ of the unfolding template
446
447 ------------------------------------------------
448 data UnfoldingSource 
449   = InlineCompulsory   -- Something that *has* no binding, so you *must* inline it
450                        -- Only a few primop-like things have this property 
451                        -- (see MkId.lhs, calls to mkCompulsoryUnfolding).
452                        -- Inline absolutely always, however boring the context.
453
454   | InlineRule         -- From an {-# INLINE #-} pragma; See Note [InlineRules]
455
456   | InlineWrapper Id   -- This unfolding is a the wrapper in a 
457                        --     worker/wrapper split from the strictness analyser
458                        -- The Id is the worker-id
459                        -- Used to abbreviate the uf_tmpl in interface files
460                        --       which don't need to contain the RHS; 
461                        --       it can be derived from the strictness info
462
463   | InlineRhs          -- The current rhs of the function
464
465    -- For InlineRhs, the uf_tmpl is replaced each time around
466    -- For all the others we leave uf_tmpl alone
467
468
469 -- | 'UnfoldingGuidance' says when unfolding should take place
470 data UnfoldingGuidance
471   = UnfWhen {   -- Inline without thinking about the *size* of the uf_tmpl
472                 -- Used (a) for small *and* cheap unfoldings
473                 --      (b) for INLINE functions 
474                 -- See Note [INLINE for small functions] in CoreUnfold
475       ug_unsat_ok  :: Bool,     -- True <=> ok to inline even if unsaturated
476       ug_boring_ok :: Bool      -- True <=> ok to inline even if the context is boring
477                 -- So True,True means "always"
478     }
479
480   | UnfIfGoodArgs {     -- Arose from a normal Id; the info here is the
481                         -- result of a simple analysis of the RHS
482
483       ug_args ::  [Int],  -- Discount if the argument is evaluated.
484                           -- (i.e., a simplification will definitely
485                           -- be possible).  One elt of the list per *value* arg.
486
487       ug_size :: Int,     -- The "size" of the unfolding.
488
489       ug_res :: Int       -- Scrutinee discount: the discount to substract if the thing is in
490     }                     -- a context (case (thing args) of ...),
491                           -- (where there are the right number of arguments.)
492
493   | UnfNever        -- The RHS is big, so don't inline it
494
495 -- Constants for the UnfWhen constructor
496 needSaturated, unSaturatedOk :: Bool
497 needSaturated = False
498 unSaturatedOk = True
499
500 boringCxtNotOk, boringCxtOk :: Bool
501 boringCxtOk    = True
502 boringCxtNotOk = False
503
504 ------------------------------------------------
505 noUnfolding :: Unfolding
506 -- ^ There is no known 'Unfolding'
507 evaldUnfolding :: Unfolding
508 -- ^ This unfolding marks the associated thing as being evaluated
509
510 noUnfolding    = NoUnfolding
511 evaldUnfolding = OtherCon []
512
513 mkOtherCon :: [AltCon] -> Unfolding
514 mkOtherCon = OtherCon
515
516 seqUnfolding :: Unfolding -> ()
517 seqUnfolding (CoreUnfolding { uf_tmpl = e, uf_is_top = top, 
518                 uf_is_value = b1, uf_is_cheap = b2, 
519                 uf_expandable = b3, uf_is_conlike = b4,
520                 uf_arity = a, uf_guidance = g})
521   = seqExpr e `seq` top `seq` b1 `seq` a `seq` b2 `seq` b3 `seq` b4 `seq` seqGuidance g
522
523 seqUnfolding _ = ()
524
525 seqGuidance :: UnfoldingGuidance -> ()
526 seqGuidance (UnfIfGoodArgs ns n b) = n `seq` sum ns `seq` b `seq` ()
527 seqGuidance _                      = ()
528 \end{code}
529
530 \begin{code}
531 isInlineRuleSource :: UnfoldingSource -> Bool
532 isInlineRuleSource InlineCompulsory   = True
533 isInlineRuleSource InlineRule         = True
534 isInlineRuleSource (InlineWrapper {}) = True
535 isInlineRuleSource InlineRhs          = False
536  
537 -- | Retrieves the template of an unfolding: panics if none is known
538 unfoldingTemplate :: Unfolding -> CoreExpr
539 unfoldingTemplate = uf_tmpl
540
541 setUnfoldingTemplate :: Unfolding -> CoreExpr -> Unfolding
542 setUnfoldingTemplate unf rhs = unf { uf_tmpl = rhs }
543
544 -- | Retrieves the template of an unfolding if possible
545 maybeUnfoldingTemplate :: Unfolding -> Maybe CoreExpr
546 maybeUnfoldingTemplate (CoreUnfolding { uf_tmpl = expr })       = Just expr
547 maybeUnfoldingTemplate _                                        = Nothing
548
549 -- | The constructors that the unfolding could never be: 
550 -- returns @[]@ if no information is available
551 otherCons :: Unfolding -> [AltCon]
552 otherCons (OtherCon cons) = cons
553 otherCons _               = []
554
555 -- | Determines if it is certainly the case that the unfolding will
556 -- yield a value (something in HNF): returns @False@ if unsure
557 isValueUnfolding :: Unfolding -> Bool
558         -- Returns False for OtherCon
559 isValueUnfolding (CoreUnfolding { uf_is_value = is_evald }) = is_evald
560 isValueUnfolding _                                          = False
561
562 -- | Determines if it possibly the case that the unfolding will
563 -- yield a value. Unlike 'isValueUnfolding' it returns @True@
564 -- for 'OtherCon'
565 isEvaldUnfolding :: Unfolding -> Bool
566         -- Returns True for OtherCon
567 isEvaldUnfolding (OtherCon _)                               = True
568 isEvaldUnfolding (CoreUnfolding { uf_is_value = is_evald }) = is_evald
569 isEvaldUnfolding _                                          = False
570
571 -- | @True@ if the unfolding is a constructor application, the application
572 -- of a CONLIKE function or 'OtherCon'
573 isConLikeUnfolding :: Unfolding -> Bool
574 isConLikeUnfolding (OtherCon _)                             = True
575 isConLikeUnfolding (CoreUnfolding { uf_is_conlike = con })  = con
576 isConLikeUnfolding _                                        = False
577
578 -- | Is the thing we will unfold into certainly cheap?
579 isCheapUnfolding :: Unfolding -> Bool
580 isCheapUnfolding (CoreUnfolding { uf_is_cheap = is_cheap }) = is_cheap
581 isCheapUnfolding _                                          = False
582
583 isExpandableUnfolding :: Unfolding -> Bool
584 isExpandableUnfolding (CoreUnfolding { uf_expandable = is_expable }) = is_expable
585 isExpandableUnfolding _                                              = False
586
587 expandUnfolding_maybe :: Unfolding -> Maybe CoreExpr
588 -- Expand an expandable unfolding; this is used in rule matching 
589 --   See Note [Expanding variables] in Rules.lhs
590 -- The key point here is that CONLIKE things can be expanded
591 expandUnfolding_maybe (CoreUnfolding { uf_expandable = True, uf_tmpl = rhs }) = Just rhs
592 expandUnfolding_maybe _                                                       = Nothing
593
594 isInlineRule :: Unfolding -> Bool
595 isInlineRule (CoreUnfolding { uf_src = src }) = isInlineRuleSource src
596 isInlineRule _                                = False
597
598 isInlineRule_maybe :: Unfolding -> Maybe (UnfoldingSource, Bool)
599 isInlineRule_maybe (CoreUnfolding { uf_src = src, uf_guidance = guide }) 
600    | isInlineRuleSource src
601    = Just (src, unsat_ok)
602    where
603      unsat_ok = case guide of
604                   UnfWhen unsat_ok _ -> unsat_ok
605                   _                  -> needSaturated
606 isInlineRule_maybe _ = Nothing
607
608 isCompulsoryUnfolding :: Unfolding -> Bool
609 isCompulsoryUnfolding (CoreUnfolding { uf_src = InlineCompulsory }) = True
610 isCompulsoryUnfolding _                                             = False
611
612 isStableUnfolding :: Unfolding -> Bool
613 -- True of unfoldings that should not be overwritten 
614 -- by a CoreUnfolding for the RHS of a let-binding
615 isStableUnfolding (CoreUnfolding { uf_src = src }) = isInlineRuleSource src
616 isStableUnfolding (DFunUnfolding {})               = True
617 isStableUnfolding _                                = False
618
619 unfoldingArity :: Unfolding -> Arity
620 unfoldingArity (CoreUnfolding { uf_arity = arity }) = arity
621 unfoldingArity _                                    = panic "unfoldingArity"
622
623 isClosedUnfolding :: Unfolding -> Bool          -- No free variables
624 isClosedUnfolding (CoreUnfolding {}) = False
625 isClosedUnfolding _                  = True
626
627 -- | Only returns False if there is no unfolding information available at all
628 hasSomeUnfolding :: Unfolding -> Bool
629 hasSomeUnfolding NoUnfolding = False
630 hasSomeUnfolding _           = True
631
632 neverUnfoldGuidance :: UnfoldingGuidance -> Bool
633 neverUnfoldGuidance UnfNever = True
634 neverUnfoldGuidance _        = False
635
636 canUnfold :: Unfolding -> Bool
637 canUnfold (CoreUnfolding { uf_guidance = g }) = not (neverUnfoldGuidance g)
638 canUnfold _                                   = False
639 \end{code}
640
641 Note [InlineRules]
642 ~~~~~~~~~~~~~~~~~
643 When you say 
644       {-# INLINE f #-}
645       f x = <rhs>
646 you intend that calls (f e) are replaced by <rhs>[e/x] So we
647 should capture (\x.<rhs>) in the Unfolding of 'f', and never meddle
648 with it.  Meanwhile, we can optimise <rhs> to our heart's content,
649 leaving the original unfolding intact in Unfolding of 'f'. For example
650         all xs = foldr (&&) True xs
651         any p = all . map p  {-# INLINE any #-}
652 We optimise any's RHS fully, but leave the InlineRule saying "all . map p",
653 which deforests well at the call site.
654
655 So INLINE pragma gives rise to an InlineRule, which captures the original RHS.
656
657 Moreover, it's only used when 'f' is applied to the
658 specified number of arguments; that is, the number of argument on 
659 the LHS of the '=' sign in the original source definition. 
660 For example, (.) is now defined in the libraries like this
661    {-# INLINE (.) #-}
662    (.) f g = \x -> f (g x)
663 so that it'll inline when applied to two arguments. If 'x' appeared
664 on the left, thus
665    (.) f g x = f (g x)
666 it'd only inline when applied to three arguments.  This slightly-experimental
667 change was requested by Roman, but it seems to make sense.
668
669 See also Note [Inlining an InlineRule] in CoreUnfold.
670
671
672 Note [OccInfo in unfoldings and rules]
673 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
674 In unfoldings and rules, we guarantee that the template is occ-analysed,
675 so that the occurence info on the binders is correct.  This is important,
676 because the Simplifier does not re-analyse the template when using it. If
677 the occurrence info is wrong
678   - We may get more simpifier iterations than necessary, because
679     once-occ info isn't there
680   - More seriously, we may get an infinite loop if there's a Rec
681     without a loop breaker marked
682
683
684 %************************************************************************
685 %*                                                                      *
686 \subsection{The main data type}
687 %*                                                                      *
688 %************************************************************************
689
690 \begin{code}
691 -- The Ord is needed for the FiniteMap used in the lookForConstructor
692 -- in SimplEnv.  If you declared that lookForConstructor *ignores*
693 -- constructor-applications with LitArg args, then you could get
694 -- rid of this Ord.
695
696 instance Outputable AltCon where
697   ppr (DataAlt dc) = ppr dc
698   ppr (LitAlt lit) = ppr lit
699   ppr DEFAULT      = ptext (sLit "__DEFAULT")
700
701 instance Show AltCon where
702   showsPrec p con = showsPrecSDoc p (ppr con)
703
704 cmpAlt :: Alt b -> Alt b -> Ordering
705 cmpAlt (con1, _, _) (con2, _, _) = con1 `cmpAltCon` con2
706
707 ltAlt :: Alt b -> Alt b -> Bool
708 ltAlt a1 a2 = (a1 `cmpAlt` a2) == LT
709
710 cmpAltCon :: AltCon -> AltCon -> Ordering
711 -- ^ Compares 'AltCon's within a single list of alternatives
712 cmpAltCon DEFAULT      DEFAULT     = EQ
713 cmpAltCon DEFAULT      _           = LT
714
715 cmpAltCon (DataAlt d1) (DataAlt d2) = dataConTag d1 `compare` dataConTag d2
716 cmpAltCon (DataAlt _)  DEFAULT      = GT
717 cmpAltCon (LitAlt  l1) (LitAlt  l2) = l1 `compare` l2
718 cmpAltCon (LitAlt _)   DEFAULT      = GT
719
720 cmpAltCon con1 con2 = WARN( True, text "Comparing incomparable AltCons" <+> 
721                                   ppr con1 <+> ppr con2 )
722                       LT
723 \end{code}
724
725 %************************************************************************
726 %*                                                                      *
727 \subsection{Useful synonyms}
728 %*                                                                      *
729 %************************************************************************
730
731 \begin{code}
732 -- | The common case for the type of binders and variables when
733 -- we are manipulating the Core language within GHC
734 type CoreBndr = Var
735 -- | Expressions where binders are 'CoreBndr's
736 type CoreExpr = Expr CoreBndr
737 -- | Argument expressions where binders are 'CoreBndr's
738 type CoreArg  = Arg  CoreBndr
739 -- | Binding groups where binders are 'CoreBndr's
740 type CoreBind = Bind CoreBndr
741 -- | Case alternatives where binders are 'CoreBndr's
742 type CoreAlt  = Alt  CoreBndr
743 \end{code}
744
745 %************************************************************************
746 %*                                                                      *
747 \subsection{Tagging}
748 %*                                                                      *
749 %************************************************************************
750
751 \begin{code}
752 -- | Binders are /tagged/ with a t
753 data TaggedBndr t = TB CoreBndr t       -- TB for "tagged binder"
754
755 type TaggedBind t = Bind (TaggedBndr t)
756 type TaggedExpr t = Expr (TaggedBndr t)
757 type TaggedArg  t = Arg  (TaggedBndr t)
758 type TaggedAlt  t = Alt  (TaggedBndr t)
759
760 instance Outputable b => Outputable (TaggedBndr b) where
761   ppr (TB b l) = char '<' <> ppr b <> comma <> ppr l <> char '>'
762
763 instance Outputable b => OutputableBndr (TaggedBndr b) where
764   pprBndr _ b = ppr b   -- Simple
765 \end{code}
766
767
768 %************************************************************************
769 %*                                                                      *
770 \subsection{Core-constructing functions with checking}
771 %*                                                                      *
772 %************************************************************************
773
774 \begin{code}
775 -- | Apply a list of argument expressions to a function expression in a nested fashion. Prefer to
776 -- use 'CoreUtils.mkCoreApps' if possible
777 mkApps    :: Expr b -> [Arg b]  -> Expr b
778 -- | Apply a list of type argument expressions to a function expression in a nested fashion
779 mkTyApps  :: Expr b -> [Type]   -> Expr b
780 -- | Apply a list of type or value variables to a function expression in a nested fashion
781 mkVarApps :: Expr b -> [Var] -> Expr b
782 -- | Apply a list of argument expressions to a data constructor in a nested fashion. Prefer to
783 -- use 'MkCore.mkCoreConApps' if possible
784 mkConApp      :: DataCon -> [Arg b] -> Expr b
785
786 mkApps    f args = foldl App                       f args
787 mkTyApps  f args = foldl (\ e a -> App e (Type a)) f args
788 mkVarApps f vars = foldl (\ e a -> App e (varToCoreExpr a)) f vars
789 mkConApp con args = mkApps (Var (dataConWorkId con)) args
790
791
792 -- | Create a machine integer literal expression of type @Int#@ from an @Integer@.
793 -- If you want an expression of type @Int@ use 'MkCore.mkIntExpr'
794 mkIntLit      :: Integer -> Expr b
795 -- | Create a machine integer literal expression of type @Int#@ from an @Int@.
796 -- If you want an expression of type @Int@ use 'MkCore.mkIntExpr'
797 mkIntLitInt   :: Int     -> Expr b
798
799 mkIntLit    n = Lit (mkMachInt n)
800 mkIntLitInt n = Lit (mkMachInt (toInteger n))
801
802 -- | Create a machine word literal expression of type  @Word#@ from an @Integer@.
803 -- If you want an expression of type @Word@ use 'MkCore.mkWordExpr'
804 mkWordLit     :: Integer -> Expr b
805 -- | Create a machine word literal expression of type  @Word#@ from a @Word@.
806 -- If you want an expression of type @Word@ use 'MkCore.mkWordExpr'
807 mkWordLitWord :: Word -> Expr b
808
809 mkWordLit     w = Lit (mkMachWord w)
810 mkWordLitWord w = Lit (mkMachWord (toInteger w))
811
812 -- | Create a machine character literal expression of type @Char#@.
813 -- If you want an expression of type @Char@ use 'MkCore.mkCharExpr'
814 mkCharLit :: Char -> Expr b
815 -- | Create a machine string literal expression of type @Addr#@.
816 -- If you want an expression of type @String@ use 'MkCore.mkStringExpr'
817 mkStringLit :: String -> Expr b
818
819 mkCharLit   c = Lit (mkMachChar c)
820 mkStringLit s = Lit (mkMachString s)
821
822 -- | Create a machine single precision literal expression of type @Float#@ from a @Rational@.
823 -- If you want an expression of type @Float@ use 'MkCore.mkFloatExpr'
824 mkFloatLit :: Rational -> Expr b
825 -- | Create a machine single precision literal expression of type @Float#@ from a @Float@.
826 -- If you want an expression of type @Float@ use 'MkCore.mkFloatExpr'
827 mkFloatLitFloat :: Float -> Expr b
828
829 mkFloatLit      f = Lit (mkMachFloat f)
830 mkFloatLitFloat f = Lit (mkMachFloat (toRational f))
831
832 -- | Create a machine double precision literal expression of type @Double#@ from a @Rational@.
833 -- If you want an expression of type @Double@ use 'MkCore.mkDoubleExpr'
834 mkDoubleLit :: Rational -> Expr b
835 -- | Create a machine double precision literal expression of type @Double#@ from a @Double@.
836 -- If you want an expression of type @Double@ use 'MkCore.mkDoubleExpr'
837 mkDoubleLitDouble :: Double -> Expr b
838
839 mkDoubleLit       d = Lit (mkMachDouble d)
840 mkDoubleLitDouble d = Lit (mkMachDouble (toRational d))
841
842 -- | Bind all supplied binding groups over an expression in a nested let expression. Prefer to
843 -- use 'CoreUtils.mkCoreLets' if possible
844 mkLets        :: [Bind b] -> Expr b -> Expr b
845 -- | Bind all supplied binders over an expression in a nested lambda expression. Prefer to
846 -- use 'CoreUtils.mkCoreLams' if possible
847 mkLams        :: [b] -> Expr b -> Expr b
848
849 mkLams binders body = foldr Lam body binders
850 mkLets binds body   = foldr Let body binds
851
852
853 -- | Create a binding group where a type variable is bound to a type. Per "CoreSyn#type_let",
854 -- this can only be used to bind something in a non-recursive @let@ expression
855 mkTyBind :: TyVar -> Type -> CoreBind
856 mkTyBind tv ty      = NonRec tv (Type ty)
857
858 -- | Convert a binder into either a 'Var' or 'Type' 'Expr' appropriately
859 varToCoreExpr :: CoreBndr -> Expr b
860 varToCoreExpr v | isId v = Var v
861                 | otherwise = Type (mkTyVarTy v)
862
863 varsToCoreExprs :: [CoreBndr] -> [Expr b]
864 varsToCoreExprs vs = map varToCoreExpr vs
865 \end{code}
866
867
868 %************************************************************************
869 %*                                                                      *
870 \subsection{Simple access functions}
871 %*                                                                      *
872 %************************************************************************
873
874 \begin{code}
875 -- | Extract every variable by this group
876 bindersOf  :: Bind b -> [b]
877 bindersOf (NonRec binder _) = [binder]
878 bindersOf (Rec pairs)       = [binder | (binder, _) <- pairs]
879
880 -- | 'bindersOf' applied to a list of binding groups
881 bindersOfBinds :: [Bind b] -> [b]
882 bindersOfBinds binds = foldr ((++) . bindersOf) [] binds
883
884 rhssOfBind :: Bind b -> [Expr b]
885 rhssOfBind (NonRec _ rhs) = [rhs]
886 rhssOfBind (Rec pairs)    = [rhs | (_,rhs) <- pairs]
887
888 rhssOfAlts :: [Alt b] -> [Expr b]
889 rhssOfAlts alts = [e | (_,_,e) <- alts]
890
891 -- | Collapse all the bindings in the supplied groups into a single
892 -- list of lhs\/rhs pairs suitable for binding in a 'Rec' binding group
893 flattenBinds :: [Bind b] -> [(b, Expr b)]
894 flattenBinds (NonRec b r : binds) = (b,r) : flattenBinds binds
895 flattenBinds (Rec prs1   : binds) = prs1 ++ flattenBinds binds
896 flattenBinds []                   = []
897 \end{code}
898
899 \begin{code}
900 -- | We often want to strip off leading lambdas before getting down to
901 -- business. This function is your friend.
902 collectBinders               :: Expr b -> ([b],         Expr b)
903 -- | Collect as many type bindings as possible from the front of a nested lambda
904 collectTyBinders             :: CoreExpr -> ([TyVar],     CoreExpr)
905 -- | Collect as many value bindings as possible from the front of a nested lambda
906 collectValBinders            :: CoreExpr -> ([Id],        CoreExpr)
907 -- | Collect type binders from the front of the lambda first, 
908 -- then follow up by collecting as many value bindings as possible
909 -- from the resulting stripped expression
910 collectTyAndValBinders       :: CoreExpr -> ([TyVar], [Id], CoreExpr)
911
912 collectBinders expr
913   = go [] expr
914   where
915     go bs (Lam b e) = go (b:bs) e
916     go bs e          = (reverse bs, e)
917
918 collectTyAndValBinders expr
919   = (tvs, ids, body)
920   where
921     (tvs, body1) = collectTyBinders expr
922     (ids, body)  = collectValBinders body1
923
924 collectTyBinders expr
925   = go [] expr
926   where
927     go tvs (Lam b e) | isTyVar b = go (b:tvs) e
928     go tvs e                     = (reverse tvs, e)
929
930 collectValBinders expr
931   = go [] expr
932   where
933     go ids (Lam b e) | isId b = go (b:ids) e
934     go ids body               = (reverse ids, body)
935 \end{code}
936
937 \begin{code}
938 -- | Takes a nested application expression and returns the the function
939 -- being applied and the arguments to which it is applied
940 collectArgs :: Expr b -> (Expr b, [Arg b])
941 collectArgs expr
942   = go expr []
943   where
944     go (App f a) as = go f (a:as)
945     go e         as = (e, as)
946 \end{code}
947
948 \begin{code}
949 -- | Gets the cost centre enclosing an expression, if any.
950 -- It looks inside lambdas because @(scc \"foo\" \\x.e) = \\x. scc \"foo\" e@
951 coreExprCc :: Expr b -> CostCentre
952 coreExprCc (Note (SCC cc) _)   = cc
953 coreExprCc (Note _ e)          = coreExprCc e
954 coreExprCc (Lam _ e)           = coreExprCc e
955 coreExprCc _                   = noCostCentre
956 \end{code}
957
958 %************************************************************************
959 %*                                                                      *
960 \subsection{Predicates}
961 %*                                                                      *
962 %************************************************************************
963
964 At one time we optionally carried type arguments through to runtime.
965 @isRuntimeVar v@ returns if (Lam v _) really becomes a lambda at runtime,
966 i.e. if type applications are actual lambdas because types are kept around
967 at runtime.  Similarly isRuntimeArg.  
968
969 \begin{code}
970 -- | Will this variable exist at runtime?
971 isRuntimeVar :: Var -> Bool
972 isRuntimeVar = isId 
973
974 -- | Will this argument expression exist at runtime?
975 isRuntimeArg :: CoreExpr -> Bool
976 isRuntimeArg = isValArg
977
978 -- | Returns @False@ iff the expression is a 'Type' expression at its top level
979 isValArg :: Expr b -> Bool
980 isValArg (Type _) = False
981 isValArg _        = True
982
983 -- | Returns @True@ iff the expression is a 'Type' expression at its top level
984 isTypeArg :: Expr b -> Bool
985 isTypeArg (Type _) = True
986 isTypeArg _        = False
987
988 -- | The number of binders that bind values rather than types
989 valBndrCount :: [CoreBndr] -> Int
990 valBndrCount = count isId
991
992 -- | The number of argument expressions that are values rather than types at their top level
993 valArgCount :: [Arg b] -> Int
994 valArgCount = count isValArg
995 \end{code}
996
997
998 %************************************************************************
999 %*                                                                      *
1000 \subsection{Seq stuff}
1001 %*                                                                      *
1002 %************************************************************************
1003
1004 \begin{code}
1005 seqExpr :: CoreExpr -> ()
1006 seqExpr (Var v)         = v `seq` ()
1007 seqExpr (Lit lit)       = lit `seq` ()
1008 seqExpr (App f a)       = seqExpr f `seq` seqExpr a
1009 seqExpr (Lam b e)       = seqBndr b `seq` seqExpr e
1010 seqExpr (Let b e)       = seqBind b `seq` seqExpr e
1011 seqExpr (Case e b t as) = seqExpr e `seq` seqBndr b `seq` seqType t `seq` seqAlts as
1012 seqExpr (Cast e co)     = seqExpr e `seq` seqType co
1013 seqExpr (Note n e)      = seqNote n `seq` seqExpr e
1014 seqExpr (Type t)        = seqType t
1015
1016 seqExprs :: [CoreExpr] -> ()
1017 seqExprs [] = ()
1018 seqExprs (e:es) = seqExpr e `seq` seqExprs es
1019
1020 seqNote :: Note -> ()
1021 seqNote (CoreNote s)   = s `seq` ()
1022 seqNote _              = ()
1023
1024 seqBndr :: CoreBndr -> ()
1025 seqBndr b = b `seq` ()
1026
1027 seqBndrs :: [CoreBndr] -> ()
1028 seqBndrs [] = ()
1029 seqBndrs (b:bs) = seqBndr b `seq` seqBndrs bs
1030
1031 seqBind :: Bind CoreBndr -> ()
1032 seqBind (NonRec b e) = seqBndr b `seq` seqExpr e
1033 seqBind (Rec prs)    = seqPairs prs
1034
1035 seqPairs :: [(CoreBndr, CoreExpr)] -> ()
1036 seqPairs [] = ()
1037 seqPairs ((b,e):prs) = seqBndr b `seq` seqExpr e `seq` seqPairs prs
1038
1039 seqAlts :: [CoreAlt] -> ()
1040 seqAlts [] = ()
1041 seqAlts ((c,bs,e):alts) = c `seq` seqBndrs bs `seq` seqExpr e `seq` seqAlts alts
1042
1043 seqRules :: [CoreRule] -> ()
1044 seqRules [] = ()
1045 seqRules (Rule { ru_bndrs = bndrs, ru_args = args, ru_rhs = rhs } : rules) 
1046   = seqBndrs bndrs `seq` seqExprs (rhs:args) `seq` seqRules rules
1047 seqRules (BuiltinRule {} : rules) = seqRules rules
1048 \end{code}
1049
1050 %************************************************************************
1051 %*                                                                      *
1052 \subsection{Annotated core}
1053 %*                                                                      *
1054 %************************************************************************
1055
1056 \begin{code}
1057 -- | Annotated core: allows annotation at every node in the tree
1058 type AnnExpr bndr annot = (annot, AnnExpr' bndr annot)
1059
1060 -- | A clone of the 'Expr' type but allowing annotation at every tree node
1061 data AnnExpr' bndr annot
1062   = AnnVar      Id
1063   | AnnLit      Literal
1064   | AnnLam      bndr (AnnExpr bndr annot)
1065   | AnnApp      (AnnExpr bndr annot) (AnnExpr bndr annot)
1066   | AnnCase     (AnnExpr bndr annot) bndr Type [AnnAlt bndr annot]
1067   | AnnLet      (AnnBind bndr annot) (AnnExpr bndr annot)
1068   | AnnCast     (AnnExpr bndr annot) Coercion
1069   | AnnNote     Note (AnnExpr bndr annot)
1070   | AnnType     Type
1071
1072 -- | A clone of the 'Alt' type but allowing annotation at every tree node
1073 type AnnAlt bndr annot = (AltCon, [bndr], AnnExpr bndr annot)
1074
1075 -- | A clone of the 'Bind' type but allowing annotation at every tree node
1076 data AnnBind bndr annot
1077   = AnnNonRec bndr (AnnExpr bndr annot)
1078   | AnnRec    [(bndr, AnnExpr bndr annot)]
1079 \end{code}
1080
1081 \begin{code}
1082 deAnnotate :: AnnExpr bndr annot -> Expr bndr
1083 deAnnotate (_, e) = deAnnotate' e
1084
1085 deAnnotate' :: AnnExpr' bndr annot -> Expr bndr
1086 deAnnotate' (AnnType t)           = Type t
1087 deAnnotate' (AnnVar  v)           = Var v
1088 deAnnotate' (AnnLit  lit)         = Lit lit
1089 deAnnotate' (AnnLam  binder body) = Lam binder (deAnnotate body)
1090 deAnnotate' (AnnApp  fun arg)     = App (deAnnotate fun) (deAnnotate arg)
1091 deAnnotate' (AnnCast e co)        = Cast (deAnnotate e) co
1092 deAnnotate' (AnnNote note body)   = Note note (deAnnotate body)
1093
1094 deAnnotate' (AnnLet bind body)
1095   = Let (deAnnBind bind) (deAnnotate body)
1096   where
1097     deAnnBind (AnnNonRec var rhs) = NonRec var (deAnnotate rhs)
1098     deAnnBind (AnnRec pairs) = Rec [(v,deAnnotate rhs) | (v,rhs) <- pairs]
1099
1100 deAnnotate' (AnnCase scrut v t alts)
1101   = Case (deAnnotate scrut) v t (map deAnnAlt alts)
1102
1103 deAnnAlt :: AnnAlt bndr annot -> Alt bndr
1104 deAnnAlt (con,args,rhs) = (con,args,deAnnotate rhs)
1105 \end{code}
1106
1107 \begin{code}
1108 -- | As 'collectBinders' but for 'AnnExpr' rather than 'Expr'
1109 collectAnnBndrs :: AnnExpr bndr annot -> ([bndr], AnnExpr bndr annot)
1110 collectAnnBndrs e
1111   = collect [] e
1112   where
1113     collect bs (_, AnnLam b body) = collect (b:bs) body
1114     collect bs body               = (reverse bs, body)
1115 \end{code}