Remove GADT refinements, part 5
[ghc-hetmet.git] / compiler / basicTypes / MkId.lhs
1 \%
2 % (c) The University of Glasgow 2006
3 % (c) The AQUA Project, Glasgow University, 1998
4 %
5
6 This module contains definitions for the IdInfo for things that
7 have a standard form, namely:
8
9 * data constructors
10 * record selectors
11 * method and superclass selectors
12 * primitive operations
13
14 \begin{code}
15 {-# OPTIONS -fno-warn-missing-signatures #-}
16 -- The above warning supression flag is a temporary kludge.
17 -- While working on this module you are encouraged to remove it and fix
18 -- any warnings in the module. See
19 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
20 -- for details
21
22 module MkId (
23         mkDictFunId, mkDefaultMethodId,
24         mkDictSelId, 
25
26         mkDataConIds,
27         mkRecordSelId, 
28         mkPrimOpId, mkFCallId, mkTickBoxOpId, mkBreakPointOpId,
29
30         mkReboxingAlt, wrapNewTypeBody, unwrapNewTypeBody,
31         wrapFamInstBody, unwrapFamInstScrut,
32         mkUnpackCase, mkProductBox,
33
34         -- And some particular Ids; see below for why they are wired in
35         wiredInIds, ghcPrimIds,
36         unsafeCoerceId, realWorldPrimId, voidArgId, nullAddrId, seqId,
37         lazyId, lazyIdUnfolding, lazyIdKey, 
38
39         mkRuntimeErrorApp,
40         rEC_CON_ERROR_ID, iRREFUT_PAT_ERROR_ID, rUNTIME_ERROR_ID,
41         nON_EXHAUSTIVE_GUARDS_ERROR_ID, nO_METHOD_BINDING_ERROR_ID,
42         pAT_ERROR_ID, eRROR_ID,
43
44         unsafeCoerceName
45     ) where
46
47 #include "HsVersions.h"
48
49 import Rules
50 import TysPrim
51 import TysWiredIn
52 import PrelRules
53 import Unify
54 import Type
55 import TypeRep
56 import Coercion
57 import TcType
58 import CoreUtils
59 import CoreUnfold
60 import Literal
61 import TyCon
62 import Class
63 import VarSet
64 import Name
65 import OccName
66 import PrimOp
67 import ForeignCall
68 import DataCon
69 import Id
70 import Var              ( Var, TyVar, mkCoVar)
71 import IdInfo
72 import NewDemand
73 import DmdAnal
74 import CoreSyn
75 import Unique
76 import Maybes
77 import PrelNames
78 import BasicTypes       hiding ( SuccessFlag(..) )
79 import Util
80 import Outputable
81 import FastString
82 import ListSetOps
83 import Module
84 \end{code}
85
86 %************************************************************************
87 %*                                                                      *
88 \subsection{Wired in Ids}
89 %*                                                                      *
90 %************************************************************************
91
92 \begin{code}
93 wiredInIds
94   = [   -- These error-y things are wired in because we don't yet have
95         -- a way to express in an interface file that the result type variable
96         -- is 'open'; that is can be unified with an unboxed type
97         -- 
98         -- [The interface file format now carry such information, but there's
99         -- no way yet of expressing at the definition site for these 
100         -- error-reporting functions that they have an 'open' 
101         -- result type. -- sof 1/99]
102
103     eRROR_ID,   -- This one isn't used anywhere else in the compiler
104                 -- But we still need it in wiredInIds so that when GHC
105                 -- compiles a program that mentions 'error' we don't
106                 -- import its type from the interface file; we just get
107                 -- the Id defined here.  Which has an 'open-tyvar' type.
108
109     rUNTIME_ERROR_ID,
110     iRREFUT_PAT_ERROR_ID,
111     nON_EXHAUSTIVE_GUARDS_ERROR_ID,
112     nO_METHOD_BINDING_ERROR_ID,
113     pAT_ERROR_ID,
114     rEC_CON_ERROR_ID,
115
116     lazyId
117     ] ++ ghcPrimIds
118
119 -- These Ids are exported from GHC.Prim
120 ghcPrimIds
121   = [   -- These can't be defined in Haskell, but they have
122         -- perfectly reasonable unfoldings in Core
123     realWorldPrimId,
124     unsafeCoerceId,
125     nullAddrId,
126     seqId
127     ]
128 \end{code}
129
130 %************************************************************************
131 %*                                                                      *
132 \subsection{Data constructors}
133 %*                                                                      *
134 %************************************************************************
135
136 The wrapper for a constructor is an ordinary top-level binding that evaluates
137 any strict args, unboxes any args that are going to be flattened, and calls
138 the worker.
139
140 We're going to build a constructor that looks like:
141
142         data (Data a, C b) =>  T a b = T1 !a !Int b
143
144         T1 = /\ a b -> 
145              \d1::Data a, d2::C b ->
146              \p q r -> case p of { p ->
147                        case q of { q ->
148                        Con T1 [a,b] [p,q,r]}}
149
150 Notice that
151
152 * d2 is thrown away --- a context in a data decl is used to make sure
153   one *could* construct dictionaries at the site the constructor
154   is used, but the dictionary isn't actually used.
155
156 * We have to check that we can construct Data dictionaries for
157   the types a and Int.  Once we've done that we can throw d1 away too.
158
159 * We use (case p of q -> ...) to evaluate p, rather than "seq" because
160   all that matters is that the arguments are evaluated.  "seq" is 
161   very careful to preserve evaluation order, which we don't need
162   to be here.
163
164   You might think that we could simply give constructors some strictness
165   info, like PrimOps, and let CoreToStg do the let-to-case transformation.
166   But we don't do that because in the case of primops and functions strictness
167   is a *property* not a *requirement*.  In the case of constructors we need to
168   do something active to evaluate the argument.
169
170   Making an explicit case expression allows the simplifier to eliminate
171   it in the (common) case where the constructor arg is already evaluated.
172
173 Note [Wrappers for data instance tycons]
174 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
175 In the case of data instances, the wrapper also applies the coercion turning
176 the representation type into the family instance type to cast the result of
177 the wrapper.  For example, consider the declarations
178
179   data family Map k :: * -> *
180   data instance Map (a, b) v = MapPair (Map a (Pair b v))
181
182 The tycon to which the datacon MapPair belongs gets a unique internal
183 name of the form :R123Map, and we call it the representation tycon.
184 In contrast, Map is the family tycon (accessible via
185 tyConFamInst_maybe). A coercion allows you to move between
186 representation and family type.  It is accessible from :R123Map via
187 tyConFamilyCoercion_maybe and has kind
188
189   Co123Map a b v :: {Map (a, b) v :=: :R123Map a b v}
190
191 The wrapper and worker of MapPair get the types
192
193         -- Wrapper
194   $WMapPair :: forall a b v. Map a (Map a b v) -> Map (a, b) v
195   $WMapPair a b v = MapPair a b v `cast` sym (Co123Map a b v)
196
197         -- Worker
198   MapPair :: forall a b v. Map a (Map a b v) -> :R123Map a b v
199
200 This coercion is conditionally applied by wrapFamInstBody.
201
202 It's a bit more complicated if the data instance is a GADT as well!
203
204    data instance T [a] where
205         T1 :: forall b. b -> T [Maybe b]
206 Hence
207    Co7T a :: T [a] ~ :R7T a
208
209 Now we want
210
211         -- Wrapper
212   $WT1 :: forall b. b -> T [Maybe b]
213   $WT1 b v = T1 (Maybe b) b (Maybe b) v
214                         `cast` sym (Co7T (Maybe b))
215
216         -- Worker
217   T1 :: forall c b. (c ~ Maybe b) => b -> :R7T c
218
219 \begin{code}
220 mkDataConIds :: Name -> Name -> DataCon -> DataConIds
221 mkDataConIds wrap_name wkr_name data_con
222   | isNewTyCon tycon                    -- Newtype, only has a worker
223   = DCIds Nothing nt_work_id                 
224
225   | any isMarkedStrict all_strict_marks      -- Algebraic, needs wrapper
226     || not (null eq_spec)                    -- NB: LoadIface.ifaceDeclSubBndrs
227     || isFamInstTyCon tycon                  --     depends on this test
228   = DCIds (Just alg_wrap_id) wrk_id
229
230   | otherwise                                -- Algebraic, no wrapper
231   = DCIds Nothing wrk_id
232   where
233     (univ_tvs, ex_tvs, eq_spec, 
234      eq_theta, dict_theta, orig_arg_tys, res_ty) = dataConFullSig data_con
235     tycon = dataConTyCon data_con       -- The representation TyCon (not family)
236
237         ----------- Worker (algebraic data types only) --------------
238         -- The *worker* for the data constructor is the function that
239         -- takes the representation arguments and builds the constructor.
240     wrk_id = mkGlobalId (DataConWorkId data_con) wkr_name
241                         (dataConRepType data_con) wkr_info
242
243     wkr_arity = dataConRepArity data_con
244     wkr_info  = noCafIdInfo
245                 `setArityInfo`          wkr_arity
246                 `setAllStrictnessInfo`  Just wkr_sig
247                 `setUnfoldingInfo`      evaldUnfolding  -- Record that it's evaluated,
248                                                         -- even if arity = 0
249
250     wkr_sig = mkStrictSig (mkTopDmdType (replicate wkr_arity topDmd) cpr_info)
251         --      Note [Data-con worker strictness]
252         -- Notice that we do *not* say the worker is strict
253         -- even if the data constructor is declared strict
254         --      e.g.    data T = MkT !(Int,Int)
255         -- Why?  Because the *wrapper* is strict (and its unfolding has case
256         -- expresssions that do the evals) but the *worker* itself is not.
257         -- If we pretend it is strict then when we see
258         --      case x of y -> $wMkT y
259         -- the simplifier thinks that y is "sure to be evaluated" (because
260         --  $wMkT is strict) and drops the case.  No, $wMkT is not strict.
261         --
262         -- When the simplifer sees a pattern 
263         --      case e of MkT x -> ...
264         -- it uses the dataConRepStrictness of MkT to mark x as evaluated;
265         -- but that's fine... dataConRepStrictness comes from the data con
266         -- not from the worker Id.
267
268     cpr_info | isProductTyCon tycon && 
269                isDataTyCon tycon    &&
270                wkr_arity > 0        &&
271                wkr_arity <= mAX_CPR_SIZE        = retCPR
272              | otherwise                        = TopRes
273         -- RetCPR is only true for products that are real data types;
274         -- that is, not unboxed tuples or [non-recursive] newtypes
275
276         ----------- Workers for newtypes --------------
277     nt_work_id   = mkGlobalId (DataConWrapId data_con) wkr_name wrap_ty nt_work_info
278     nt_work_info = noCafIdInfo          -- The NoCaf-ness is set by noCafIdInfo
279                   `setArityInfo` 1      -- Arity 1
280                   `setUnfoldingInfo`     newtype_unf
281     newtype_unf  = -- The assertion below is no longer correct:
282                    --   there may be a dict theta rather than a singleton orig_arg_ty
283                    -- ASSERT( isVanillaDataCon data_con &&
284                    --      isSingleton orig_arg_tys )
285                    --
286                    -- No existentials on a newtype, but it can have a context
287                    -- e.g.      newtype Eq a => T a = MkT (...)
288                    mkCompulsoryUnfolding $ 
289                    mkLams wrap_tvs $ Lam id_arg1 $ 
290                    wrapNewTypeBody tycon res_ty_args
291                        (Var id_arg1)
292
293     id_arg1 = mkTemplateLocal 1 
294                 (if null orig_arg_tys
295                     then ASSERT(not (null $ dataConDictTheta data_con)) mkPredTy $ head (dataConDictTheta data_con)
296                     else head orig_arg_tys
297                 )
298
299         ----------- Wrapper --------------
300         -- We used to include the stupid theta in the wrapper's args
301         -- but now we don't.  Instead the type checker just injects these
302         -- extra constraints where necessary.
303     wrap_tvs    = (univ_tvs `minusList` map fst eq_spec) ++ ex_tvs
304     res_ty_args = substTyVars (mkTopTvSubst eq_spec) univ_tvs
305     eq_tys   = mkPredTys eq_theta
306     dict_tys = mkPredTys dict_theta
307     wrap_ty  = mkForAllTys wrap_tvs $ mkFunTys eq_tys $ mkFunTys dict_tys $
308                mkFunTys orig_arg_tys $ res_ty
309         -- NB: watch out here if you allow user-written equality 
310         --     constraints in data constructor signatures
311
312         ----------- Wrappers for algebraic data types -------------- 
313     alg_wrap_id = mkGlobalId (DataConWrapId data_con) wrap_name wrap_ty alg_wrap_info
314     alg_wrap_info = noCafIdInfo         -- The NoCaf-ness is set by noCafIdInfo
315                     `setArityInfo`         wrap_arity
316                         -- It's important to specify the arity, so that partial
317                         -- applications are treated as values
318                     `setUnfoldingInfo`     wrap_unf
319                     `setAllStrictnessInfo` Just wrap_sig
320
321     all_strict_marks = dataConExStricts data_con ++ dataConStrictMarks data_con
322     wrap_sig = mkStrictSig (mkTopDmdType arg_dmds cpr_info)
323     arg_dmds = map mk_dmd all_strict_marks
324     mk_dmd str | isMarkedStrict str = evalDmd
325                | otherwise          = lazyDmd
326         -- The Cpr info can be important inside INLINE rhss, where the
327         -- wrapper constructor isn't inlined.
328         -- And the argument strictness can be important too; we
329         -- may not inline a contructor when it is partially applied.
330         -- For example:
331         --      data W = C !Int !Int !Int
332         --      ...(let w = C x in ...(w p q)...)...
333         -- we want to see that w is strict in its two arguments
334
335     wrap_unf = mkTopUnfolding $ Note InlineMe $
336               mkLams wrap_tvs $ 
337               mkLams eq_args $
338               mkLams dict_args $ mkLams id_args $
339               foldr mk_case con_app 
340                     (zip (dict_args ++ id_args) all_strict_marks)
341                     i3 []
342
343     con_app _ rep_ids = wrapFamInstBody tycon res_ty_args $
344                           Var wrk_id `mkTyApps`  res_ty_args
345                                      `mkVarApps` ex_tvs                 
346                                      -- Equality evidence:
347                                      `mkTyApps`  map snd eq_spec
348                                      `mkVarApps` eq_args
349                                      `mkVarApps` reverse rep_ids
350
351     (dict_args,i2) = mkLocals 1  dict_tys
352     (id_args,i3)   = mkLocals i2 orig_arg_tys
353     wrap_arity     = i3-1
354     (eq_args,_)    = mkCoVarLocals i3 eq_tys
355
356     mkCoVarLocals i []     = ([],i)
357     mkCoVarLocals i (x:xs) = let (ys,j) = mkCoVarLocals (i+1) xs
358                                  y      = mkCoVar (mkSysTvName (mkBuiltinUnique i) FSLIT("dc_co")) x
359                              in (y:ys,j)
360
361     mk_case 
362            :: (Id, StrictnessMark)      -- Arg, strictness
363            -> (Int -> [Id] -> CoreExpr) -- Body
364            -> Int                       -- Next rep arg id
365            -> [Id]                      -- Rep args so far, reversed
366            -> CoreExpr
367     mk_case (arg,strict) body i rep_args
368           = case strict of
369                 NotMarkedStrict -> body i (arg:rep_args)
370                 MarkedStrict 
371                    | isUnLiftedType (idType arg) -> body i (arg:rep_args)
372                    | otherwise ->
373                         Case (Var arg) arg res_ty [(DEFAULT,[], body i (arg:rep_args))]
374
375                 MarkedUnboxed
376                    -> unboxProduct i (Var arg) (idType arg) the_body 
377                       where
378                         the_body i con_args = body i (reverse con_args ++ rep_args)
379
380 mAX_CPR_SIZE :: Arity
381 mAX_CPR_SIZE = 10
382 -- We do not treat very big tuples as CPR-ish:
383 --      a) for a start we get into trouble because there aren't 
384 --         "enough" unboxed tuple types (a tiresome restriction, 
385 --         but hard to fix), 
386 --      b) more importantly, big unboxed tuples get returned mainly
387 --         on the stack, and are often then allocated in the heap
388 --         by the caller.  So doing CPR for them may in fact make
389 --         things worse.
390
391 mkLocals i tys = (zipWith mkTemplateLocal [i..i+n-1] tys, i+n)
392                where
393                  n = length tys
394 \end{code}
395
396
397 %************************************************************************
398 %*                                                                      *
399 \subsection{Record selectors}
400 %*                                                                      *
401 %************************************************************************
402
403 We're going to build a record selector unfolding that looks like this:
404
405         data T a b c = T1 { ..., op :: a, ...}
406                      | T2 { ..., op :: a, ...}
407                      | T3
408
409         sel = /\ a b c -> \ d -> case d of
410                                     T1 ... x ... -> x
411                                     T2 ... x ... -> x
412                                     other        -> error "..."
413
414 Similarly for newtypes
415
416         newtype N a = MkN { unN :: a->a }
417
418         unN :: N a -> a -> a
419         unN n = coerce (a->a) n
420         
421 We need to take a little care if the field has a polymorphic type:
422
423         data R = R { f :: forall a. a->a }
424
425 Then we want
426
427         f :: forall a. R -> a -> a
428         f = /\ a \ r = case r of
429                           R f -> f a
430
431 (not f :: R -> forall a. a->a, which gives the type inference mechanism 
432 problems at call sites)
433
434 Similarly for (recursive) newtypes
435
436         newtype N = MkN { unN :: forall a. a->a }
437
438         unN :: forall b. N -> b -> b
439         unN = /\b -> \n:N -> (coerce (forall a. a->a) n)
440
441
442 Note [Naughty record selectors]
443 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
444 A "naughty" field is one for which we can't define a record 
445 selector, because an existential type variable would escape.  For example:
446         data T = forall a. MkT { x,y::a }
447 We obviously can't define       
448         x (MkT v _) = v
449 Nevertheless we *do* put a RecordSelId into the type environment
450 so that if the user tries to use 'x' as a selector we can bleat
451 helpfully, rather than saying unhelpfully that 'x' is not in scope.
452 Hence the sel_naughty flag, to identify record selectors that don't really exist.
453
454 In general, a field is naughty if its type mentions a type variable that
455 isn't in the result type of the constructor.
456
457 Note [GADT record selectors]
458 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
459 For GADTs, we require that all constructors with a common field 'f' have the same
460 result type (modulo alpha conversion).  [Checked in TcTyClsDecls.checkValidTyCon]
461 E.g. 
462         data T where
463           T1 { f :: a } :: T [a]
464           T2 { f :: a, y :: b  } :: T [a]
465 and now the selector takes that type as its argument:
466         f :: forall a. T [a] -> a
467         f t = case t of
468                 T1 { f = v } -> v
469                 T2 { f = v } -> v
470 Note the forall'd tyvars of the selector are just the free tyvars
471 of the result type; there may be other tyvars in the constructor's
472 type (e.g. 'b' in T2).
473
474 Note [Selector running example]
475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
476 It's OK to combine GADTs and type families.  Here's a running example:
477
478         data instance T [a] where 
479           T1 { fld :: b } :: T [Maybe b]
480
481 The representation type looks like this
482         data :R7T a where
483           T1 { fld :: b } :: :R7T (Maybe b)
484
485 and there's coercion from the family type to the representation type
486         :CoR7T a :: T [a] ~ :R7T a
487
488 The selector we want for fld looks like this:
489
490         fld :: forall b. T [Maybe b] -> b
491         fld = /\b. \(d::T [Maybe b]).
492               case d `cast` :CoR7T (Maybe b) of 
493                 T1 (x::b) -> x
494
495 The scrutinee of the case has type :R7T (Maybe b), which can be
496 gotten by appying the eq_spec to the univ_tvs of the data con.
497
498 \begin{code}
499 mkRecordSelId :: TyCon -> FieldLabel -> Id
500 mkRecordSelId tycon field_label
501     -- Assumes that all fields with the same field label have the same type
502   = sel_id
503   where
504     -- Because this function gets called by implicitTyThings, we need to
505     -- produce the OccName of the Id without doing any suspend type checks.
506     -- (see the note [Tricky iface loop]).
507     -- A suspended type-check is sometimes necessary to compute field_ty,
508     -- so we need to make sure that we suspend anything that depends on field_ty.
509
510     -- the overall result
511     sel_id = mkGlobalId sel_id_details field_label theType theInfo
512                              
513     -- check whether the type is naughty: this thunk does not get forced
514     -- until the type is actually needed
515     field_ty   = dataConFieldType con1 field_label
516     is_naughty = not (tyVarsOfType field_ty `subVarSet` data_tv_set)  
517
518     -- it's important that this doesn't force the if
519     (theType, theInfo) = if is_naughty 
520                          -- Escapist case here for naughty constructors
521                          -- We give it no IdInfo, and a type of
522                          -- forall a.a (never looked at)
523                          then (forall_a_a, noCafIdInfo) 
524                          -- otherwise do the real case
525                          else (selector_ty, info)
526
527     sel_id_details = RecordSelId { sel_tycon = tycon,
528                                    sel_label = field_label,
529                                    sel_naughty = is_naughty }
530     -- For a data type family, the tycon is the *instance* TyCon
531
532     -- for naughty case
533     forall_a_a = mkForAllTy alphaTyVar (mkTyVarTy alphaTyVar)
534
535     -- real case starts here:
536     data_cons         = tyConDataCons tycon     
537     data_cons_w_field = filter has_field data_cons      -- Can't be empty!
538     has_field con     = field_label `elem` dataConFieldLabels con
539
540     con1        = ASSERT( not (null data_cons_w_field) ) head data_cons_w_field
541     (univ_tvs, _, eq_spec, _, _, _, data_ty) = dataConFullSig con1
542         -- For a data type family, the data_ty (and hence selector_ty) mentions
543         -- only the family TyCon, not the instance TyCon
544     data_tv_set = tyVarsOfType data_ty
545     data_tvs    = varSetElems data_tv_set
546     
547         -- *Very* tiresomely, the selectors are (unnecessarily!) overloaded over
548         -- just the dictionaries in the types of the constructors that contain
549         -- the relevant field.  [The Report says that pattern matching on a
550         -- constructor gives the same constraints as applying it.]  Urgh.  
551         --
552         -- However, not all data cons have all constraints (because of
553         -- BuildTyCl.mkDataConStupidTheta).  So we need to find all the data cons 
554         -- involved in the pattern match and take the union of their constraints.
555     stupid_dict_tys = mkPredTys (dataConsStupidTheta data_cons_w_field)
556     n_stupid_dicts  = length stupid_dict_tys
557
558     (field_tyvars,pre_field_theta,field_tau) = tcSplitSigmaTy field_ty
559     field_theta       = filter (not . isEqPred) pre_field_theta
560     field_dict_tys    = mkPredTys field_theta
561     n_field_dict_tys  = length field_dict_tys
562         -- If the field has a universally quantified type we have to 
563         -- be a bit careful.  Suppose we have
564         --      data R = R { op :: forall a. Foo a => a -> a }
565         -- Then we can't give op the type
566         --      op :: R -> forall a. Foo a => a -> a
567         -- because the typechecker doesn't understand foralls to the
568         -- right of an arrow.  The "right" type to give it is
569         --      op :: forall a. Foo a => R -> a -> a
570         -- But then we must generate the right unfolding too:
571         --      op = /\a -> \dfoo -> \ r ->
572         --           case r of
573         --              R op -> op a dfoo
574         -- Note that this is exactly the type we'd infer from a user defn
575         --      op (R op) = op
576
577     selector_ty :: Type
578     selector_ty  = mkForAllTys data_tvs $ mkForAllTys field_tyvars $
579                    mkFunTys stupid_dict_tys  $  mkFunTys field_dict_tys $
580                    mkFunTy data_ty field_tau
581       
582     arity = 1 + n_stupid_dicts + n_field_dict_tys
583
584     (strict_sig, rhs_w_str) = dmdAnalTopRhs sel_rhs
585         -- Use the demand analyser to work out strictness.
586         -- With all this unpackery it's not easy!
587
588     info = noCafIdInfo
589            `setCafInfo`           caf_info
590            `setArityInfo`         arity
591            `setUnfoldingInfo`     mkTopUnfolding rhs_w_str
592            `setAllStrictnessInfo` Just strict_sig
593
594         -- Allocate Ids.  We do it a funny way round because field_dict_tys is
595         -- almost always empty.  Also note that we use max_dict_tys
596         -- rather than n_dict_tys, because the latter gives an infinite loop:
597         -- n_dict tys depends on the_alts, which depens on arg_ids, which 
598         -- depends on arity, which depends on n_dict tys.  Sigh!  Mega sigh!
599     stupid_dict_ids  = mkTemplateLocalsNum 1 stupid_dict_tys
600     max_stupid_dicts = length (tyConStupidTheta tycon)
601     field_dict_base  = max_stupid_dicts + 1
602     field_dict_ids   = mkTemplateLocalsNum field_dict_base field_dict_tys
603     dict_id_base     = field_dict_base + n_field_dict_tys
604     data_id          = mkTemplateLocal dict_id_base data_ty
605     scrut_id         = mkTemplateLocal (dict_id_base+1) scrut_ty
606     arg_base         = dict_id_base + 2
607
608     the_alts :: [CoreAlt]
609     the_alts   = map mk_alt data_cons_w_field   -- Already sorted by data-con
610     no_default = length data_cons == length data_cons_w_field   -- No default needed
611
612     default_alt | no_default = []
613                 | otherwise  = [(DEFAULT, [], error_expr)]
614
615     -- The default branch may have CAF refs, because it calls recSelError etc.
616     caf_info    | no_default = NoCafRefs
617                 | otherwise  = MayHaveCafRefs
618
619     sel_rhs = mkLams data_tvs $ mkLams field_tyvars $ 
620               mkLams stupid_dict_ids $ mkLams field_dict_ids $
621               Lam data_id $ mk_result sel_body
622
623     scrut_ty_args = substTyVars (mkTopTvSubst eq_spec) univ_tvs
624     scrut_ty      = mkTyConApp tycon scrut_ty_args
625     scrut = unwrapFamInstScrut tycon scrut_ty_args (Var data_id)
626         -- First coerce from the type family to the representation type
627
628         -- NB: A newtype always has a vanilla DataCon; no existentials etc
629         --     data_tys will simply be the dataConUnivTyVars
630     sel_body | isNewTyCon tycon = unwrapNewTypeBody tycon scrut_ty_args scrut
631              | otherwise        = Case scrut scrut_id field_ty (default_alt ++ the_alts)
632
633     mk_result poly_result = mkVarApps (mkVarApps poly_result field_tyvars) field_dict_ids
634         -- We pull the field lambdas to the top, so we need to 
635         -- apply them in the body.  For example:
636         --      data T = MkT { foo :: forall a. a->a }
637         --
638         --      foo :: forall a. T -> a -> a
639         --      foo = /\a. \t:T. case t of { MkT f -> f a }
640
641     mk_alt data_con
642       =   ASSERT2( data_ty `tcEqType` field_ty, 
643                    ppr data_con $$ ppr data_ty $$ ppr field_ty )
644           mkReboxingAlt rebox_uniqs data_con (ex_tvs ++ co_tvs ++ arg_vs) rhs
645       where
646            -- get pattern binders with types appropriately instantiated
647         arg_uniqs = map mkBuiltinUnique [arg_base..]
648         (ex_tvs, co_tvs, arg_vs) = dataConOrigInstPat arg_uniqs data_con 
649                                                       scrut_ty_args
650
651         rebox_base  = arg_base + length ex_tvs + length co_tvs + length arg_vs
652         rebox_uniqs = map mkBuiltinUnique [rebox_base..]
653
654         -- data T :: *->* where T1 { fld :: Maybe b } -> T [b]
655         --      Hence T1 :: forall a b. (a=[b]) => b -> T a
656         -- fld :: forall b. T [b] -> Maybe b
657         -- fld = /\b.\(t:T[b]). case t of 
658         --              T1 b' (c : [b]=[b']) (x:Maybe b') 
659         --                      -> x `cast` Maybe (sym (right c))
660
661                 -- Generate the refinement for b'=b, 
662                 -- and apply to (Maybe b'), to get (Maybe b)
663         reft           = matchRefine co_tvs
664         the_arg_id_ty  = idType the_arg_id
665         (rhs, data_ty) = 
666           case refineType reft the_arg_id_ty of
667             Just (co, data_ty) -> (Cast (Var the_arg_id) co, data_ty)
668             Nothing            -> (Var the_arg_id, the_arg_id_ty)
669
670         field_vs    = filter (not . isPredTy . idType) arg_vs 
671         the_arg_id  = assoc "mkRecordSelId:mk_alt" 
672                             (field_lbls `zip` field_vs) field_label
673         field_lbls  = dataConFieldLabels data_con
674
675     error_expr = mkRuntimeErrorApp rEC_SEL_ERROR_ID field_ty full_msg
676     full_msg   = showSDoc (sep [text "No match in record selector", ppr sel_id])
677
678 -- unbox a product type...
679 -- we will recurse into newtypes, casting along the way, and unbox at the
680 -- first product data constructor we find. e.g.
681 --  
682 --   data PairInt = PairInt Int Int
683 --   newtype S = MkS PairInt
684 --   newtype T = MkT S
685 --
686 -- If we have e = MkT (MkS (PairInt 0 1)) and some body expecting a list of
687 -- ids, we get (modulo int passing)
688 --
689 --   case (e `cast` CoT) `cast` CoS of
690 --     PairInt a b -> body [a,b]
691 --
692 -- The Ints passed around are just for creating fresh locals
693 unboxProduct :: Int -> CoreExpr -> Type -> (Int -> [Id] -> CoreExpr) -> CoreExpr
694 unboxProduct i arg arg_ty body
695   = result
696   where 
697     result = mkUnpackCase the_id arg con_args boxing_con rhs
698     (_tycon, _tycon_args, boxing_con, tys) = deepSplitProductType "unboxProduct" arg_ty
699     ([the_id], i') = mkLocals i [arg_ty]
700     (con_args, i'') = mkLocals i' tys
701     rhs = body i'' con_args
702
703 mkUnpackCase ::  Id -> CoreExpr -> [Id] -> DataCon -> CoreExpr -> CoreExpr
704 -- (mkUnpackCase x e args Con body)
705 --      returns
706 -- case (e `cast` ...) of bndr { Con args -> body }
707 -- 
708 -- the type of the bndr passed in is irrelevent
709 mkUnpackCase bndr arg unpk_args boxing_con body
710   = Case cast_arg (setIdType bndr bndr_ty) (exprType body) [(DataAlt boxing_con, unpk_args, body)]
711   where
712   (cast_arg, bndr_ty) = go (idType bndr) arg
713   go ty arg 
714     | (tycon, tycon_args, _, _)  <- splitProductType "mkUnpackCase" ty
715     , isNewTyCon tycon && not (isRecursiveTyCon tycon)
716     = go (newTyConInstRhs tycon tycon_args) 
717          (unwrapNewTypeBody tycon tycon_args arg)
718     | otherwise = (arg, ty)
719
720 -- ...and the dual
721 reboxProduct :: [Unique]     -- uniques to create new local binders
722              -> Type         -- type of product to box
723              -> ([Unique],   -- remaining uniques
724                  CoreExpr,   -- boxed product
725                  [Id])       -- Ids being boxed into product
726 reboxProduct us ty
727   = let 
728         (_tycon, _tycon_args, _pack_con, con_arg_tys) = deepSplitProductType "reboxProduct" ty
729  
730         us' = dropList con_arg_tys us
731
732         arg_ids  = zipWith (mkSysLocal FSLIT("rb")) us con_arg_tys
733
734         bind_rhs = mkProductBox arg_ids ty
735
736     in
737       (us', bind_rhs, arg_ids)
738
739 mkProductBox :: [Id] -> Type -> CoreExpr
740 mkProductBox arg_ids ty 
741   = result_expr
742   where 
743     (tycon, tycon_args, pack_con, _con_arg_tys) = splitProductType "mkProductBox" ty
744
745     result_expr
746       | isNewTyCon tycon && not (isRecursiveTyCon tycon) 
747       = wrap (mkProductBox arg_ids (newTyConInstRhs tycon tycon_args))
748       | otherwise = mkConApp pack_con (map Type tycon_args ++ map Var arg_ids)
749
750     wrap expr = wrapNewTypeBody tycon tycon_args expr
751
752
753 -- (mkReboxingAlt us con xs rhs) basically constructs the case
754 -- alternative (con, xs, rhs)
755 -- but it does the reboxing necessary to construct the *source* 
756 -- arguments, xs, from the representation arguments ys.
757 -- For example:
758 --      data T = MkT !(Int,Int) Bool
759 --
760 -- mkReboxingAlt MkT [x,b] r 
761 --      = (DataAlt MkT, [y::Int,z::Int,b], let x = (y,z) in r)
762 --
763 -- mkDataAlt should really be in DataCon, but it can't because
764 -- it manipulates CoreSyn.
765
766 mkReboxingAlt
767   :: [Unique] -- Uniques for the new Ids
768   -> DataCon
769   -> [Var]    -- Source-level args, including existential dicts
770   -> CoreExpr -- RHS
771   -> CoreAlt
772
773 mkReboxingAlt us con args rhs
774   | not (any isMarkedUnboxed stricts)
775   = (DataAlt con, args, rhs)
776
777   | otherwise
778   = let
779         (binds, args') = go args stricts us
780     in
781     (DataAlt con, args', mkLets binds rhs)
782
783   where
784     stricts = dataConExStricts con ++ dataConStrictMarks con
785
786     go [] _stricts _us = ([], [])
787
788     -- Type variable case
789     go (arg:args) stricts us 
790       | isTyVar arg
791       = let (binds, args') = go args stricts us
792         in  (binds, arg:args')
793
794         -- Term variable case
795     go (arg:args) (str:stricts) us
796       | isMarkedUnboxed str
797       = 
798         let (binds, unpacked_args')        = go args stricts us'
799             (us', bind_rhs, unpacked_args) = reboxProduct us (idType arg)
800         in
801             (NonRec arg bind_rhs : binds, unpacked_args ++ unpacked_args')
802       | otherwise
803       = let (binds, args') = go args stricts us
804         in  (binds, arg:args')
805     go (_ : _) [] _ = panic "mkReboxingAlt"
806 \end{code}
807
808
809 %************************************************************************
810 %*                                                                      *
811 \subsection{Dictionary selectors}
812 %*                                                                      *
813 %************************************************************************
814
815 Selecting a field for a dictionary.  If there is just one field, then
816 there's nothing to do.  
817
818 Dictionary selectors may get nested forall-types.  Thus:
819
820         class Foo a where
821           op :: forall b. Ord b => a -> b -> b
822
823 Then the top-level type for op is
824
825         op :: forall a. Foo a => 
826               forall b. Ord b => 
827               a -> b -> b
828
829 This is unlike ordinary record selectors, which have all the for-alls
830 at the outside.  When dealing with classes it's very convenient to
831 recover the original type signature from the class op selector.
832
833 \begin{code}
834 mkDictSelId :: Bool     -- True <=> don't include the unfolding
835                         -- Little point on imports without -O, because the
836                         -- dictionary itself won't be visible
837             -> Name -> Class -> Id
838 mkDictSelId no_unf name clas
839   = mkGlobalId (ClassOpId clas) name sel_ty info
840   where
841     sel_ty = mkForAllTys tyvars (mkFunTy (idType dict_id) (idType the_arg_id))
842         -- We can't just say (exprType rhs), because that would give a type
843         --      C a -> C a
844         -- for a single-op class (after all, the selector is the identity)
845         -- But it's type must expose the representation of the dictionary
846         -- to get (say)         C a -> (a -> a)
847
848     info = noCafIdInfo
849                 `setArityInfo`          1
850                 `setAllStrictnessInfo`  Just strict_sig
851                 `setUnfoldingInfo`      (if no_unf then noUnfolding
852                                                    else mkTopUnfolding rhs)
853
854         -- We no longer use 'must-inline' on record selectors.  They'll
855         -- inline like crazy if they scrutinise a constructor
856
857         -- The strictness signature is of the form U(AAAVAAAA) -> T
858         -- where the V depends on which item we are selecting
859         -- It's worth giving one, so that absence info etc is generated
860         -- even if the selector isn't inlined
861     strict_sig = mkStrictSig (mkTopDmdType [arg_dmd] TopRes)
862     arg_dmd | isNewTyCon tycon = evalDmd
863             | otherwise        = Eval (Prod [ if the_arg_id == id then evalDmd else Abs
864                                             | id <- arg_ids ])
865
866     tycon      = classTyCon clas
867     [data_con] = tyConDataCons tycon
868     tyvars     = dataConUnivTyVars data_con
869     arg_tys    = {- ASSERT( isVanillaDataCon data_con ) -} dataConRepArgTys data_con
870     eq_theta   = dataConEqTheta data_con
871     the_arg_id = assoc "MkId.mkDictSelId" (map idName (classSelIds clas) `zip` arg_ids) name
872
873     pred       = mkClassPred clas (mkTyVarTys tyvars)
874     dict_id    = mkTemplateLocal     1 $ mkPredTy pred
875     (eq_ids,n) = mkCoVarLocals 2 $ mkPredTys eq_theta
876     arg_ids    = mkTemplateLocalsNum n arg_tys
877
878     mkCoVarLocals i []     = ([],i)
879     mkCoVarLocals i (x:xs) = let (ys,j) = mkCoVarLocals (i+1) xs
880                                  y      = mkCoVar (mkSysTvName (mkBuiltinUnique i) FSLIT("dc_co")) x
881                              in (y:ys,j)
882
883     rhs = mkLams tyvars  (Lam dict_id   rhs_body)
884     rhs_body | isNewTyCon tycon = unwrapNewTypeBody tycon (map mkTyVarTy tyvars) (Var dict_id)
885              | otherwise        = Case (Var dict_id) dict_id (idType the_arg_id)
886                                        [(DataAlt data_con, eq_ids ++ arg_ids, Var the_arg_id)]
887 \end{code}
888
889
890 %************************************************************************
891 %*                                                                      *
892         Wrapping and unwrapping newtypes and type families
893 %*                                                                      *
894 %************************************************************************
895
896 \begin{code}
897 wrapNewTypeBody :: TyCon -> [Type] -> CoreExpr -> CoreExpr
898 -- The wrapper for the data constructor for a newtype looks like this:
899 --      newtype T a = MkT (a,Int)
900 --      MkT :: forall a. (a,Int) -> T a
901 --      MkT = /\a. \(x:(a,Int)). x `cast` sym (CoT a)
902 -- where CoT is the coercion TyCon assoicated with the newtype
903 --
904 -- The call (wrapNewTypeBody T [a] e) returns the
905 -- body of the wrapper, namely
906 --      e `cast` (CoT [a])
907 --
908 -- If a coercion constructor is provided in the newtype, then we use
909 -- it, otherwise the wrap/unwrap are both no-ops 
910 --
911 -- If the we are dealing with a newtype *instance*, we have a second coercion
912 -- identifying the family instance with the constructor of the newtype
913 -- instance.  This coercion is applied in any case (ie, composed with the
914 -- coercion constructor of the newtype or applied by itself).
915
916 wrapNewTypeBody tycon args result_expr
917   = wrapFamInstBody tycon args inner
918   where
919     inner
920       | Just co_con <- newTyConCo_maybe tycon
921       = mkCoerce (mkSymCoercion (mkTyConApp co_con args)) result_expr
922       | otherwise
923       = result_expr
924
925 -- When unwrapping, we do *not* apply any family coercion, because this will
926 -- be done via a CoPat by the type checker.  We have to do it this way as
927 -- computing the right type arguments for the coercion requires more than just
928 -- a spliting operation (cf, TcPat.tcConPat).
929
930 unwrapNewTypeBody :: TyCon -> [Type] -> CoreExpr -> CoreExpr
931 unwrapNewTypeBody tycon args result_expr
932   | Just co_con <- newTyConCo_maybe tycon
933   = mkCoerce (mkTyConApp co_con args) result_expr
934   | otherwise
935   = result_expr
936
937 -- If the type constructor is a representation type of a data instance, wrap
938 -- the expression into a cast adjusting the expression type, which is an
939 -- instance of the representation type, to the corresponding instance of the
940 -- family instance type.
941 -- See Note [Wrappers for data instance tycons]
942 wrapFamInstBody :: TyCon -> [Type] -> CoreExpr -> CoreExpr
943 wrapFamInstBody tycon args body
944   | Just co_con <- tyConFamilyCoercion_maybe tycon
945   = mkCoerce (mkSymCoercion (mkTyConApp co_con args)) body
946   | otherwise
947   = body
948
949 unwrapFamInstScrut :: TyCon -> [Type] -> CoreExpr -> CoreExpr
950 unwrapFamInstScrut tycon args scrut
951   | Just co_con <- tyConFamilyCoercion_maybe tycon
952   = mkCoerce (mkTyConApp co_con args) scrut
953   | otherwise
954   = scrut
955 \end{code}
956
957
958 %************************************************************************
959 %*                                                                      *
960 \subsection{Primitive operations
961 %*                                                                      *
962 %************************************************************************
963
964 \begin{code}
965 mkPrimOpId :: PrimOp -> Id
966 mkPrimOpId prim_op 
967   = id
968   where
969     (tyvars,arg_tys,res_ty, arity, strict_sig) = primOpSig prim_op
970     ty   = mkForAllTys tyvars (mkFunTys arg_tys res_ty)
971     name = mkWiredInName gHC_PRIM (primOpOcc prim_op) 
972                          (mkPrimOpIdUnique (primOpTag prim_op))
973                          (AnId id) UserSyntax
974     id   = mkGlobalId (PrimOpId prim_op) name ty info
975                 
976     info = noCafIdInfo
977            `setSpecInfo`          mkSpecInfo (primOpRules prim_op name)
978            `setArityInfo`         arity
979            `setAllStrictnessInfo` Just strict_sig
980
981 -- For each ccall we manufacture a separate CCallOpId, giving it
982 -- a fresh unique, a type that is correct for this particular ccall,
983 -- and a CCall structure that gives the correct details about calling
984 -- convention etc.  
985 --
986 -- The *name* of this Id is a local name whose OccName gives the full
987 -- details of the ccall, type and all.  This means that the interface 
988 -- file reader can reconstruct a suitable Id
989
990 mkFCallId :: Unique -> ForeignCall -> Type -> Id
991 mkFCallId uniq fcall ty
992   = ASSERT( isEmptyVarSet (tyVarsOfType ty) )
993     -- A CCallOpId should have no free type variables; 
994     -- when doing substitutions won't substitute over it
995     mkGlobalId (FCallId fcall) name ty info
996   where
997     occ_str = showSDoc (braces (ppr fcall <+> ppr ty))
998     -- The "occurrence name" of a ccall is the full info about the
999     -- ccall; it is encoded, but may have embedded spaces etc!
1000
1001     name = mkFCallName uniq occ_str
1002
1003     info = noCafIdInfo
1004            `setArityInfo`         arity
1005            `setAllStrictnessInfo` Just strict_sig
1006
1007     (_, tau)     = tcSplitForAllTys ty
1008     (arg_tys, _) = tcSplitFunTys tau
1009     arity        = length arg_tys
1010     strict_sig   = mkStrictSig (mkTopDmdType (replicate arity evalDmd) TopRes)
1011
1012 -- Tick boxes and breakpoints are both represented as TickBoxOpIds,
1013 -- except for the type:
1014 --
1015 --    a plain HPC tick box has type (State# RealWorld)
1016 --    a breakpoint Id has type forall a.a
1017 --
1018 -- The breakpoint Id will be applied to a list of arbitrary free variables,
1019 -- which is why it needs a polymorphic type.
1020
1021 mkTickBoxOpId :: Unique -> Module -> TickBoxId -> Id
1022 mkTickBoxOpId uniq mod ix = mkTickBox' uniq mod ix realWorldStatePrimTy
1023
1024 mkBreakPointOpId :: Unique -> Module -> TickBoxId -> Id
1025 mkBreakPointOpId uniq mod ix = mkTickBox' uniq mod ix ty
1026  where ty = mkSigmaTy [openAlphaTyVar] [] openAlphaTy
1027
1028 mkTickBox' uniq mod ix ty = mkGlobalId (TickBoxOpId tickbox) name ty info    
1029   where
1030     tickbox = TickBox mod ix
1031     occ_str = showSDoc (braces (ppr tickbox))
1032     name    = mkTickBoxOpName uniq occ_str
1033     info    = noCafIdInfo
1034 \end{code}
1035
1036
1037 %************************************************************************
1038 %*                                                                      *
1039 \subsection{DictFuns and default methods}
1040 %*                                                                      *
1041 %************************************************************************
1042
1043 Important notes about dict funs and default methods
1044 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1045 Dict funs and default methods are *not* ImplicitIds.  Their definition
1046 involves user-written code, so we can't figure out their strictness etc
1047 based on fixed info, as we can for constructors and record selectors (say).
1048
1049 We build them as LocalIds, but with External Names.  This ensures that
1050 they are taken to account by free-variable finding and dependency
1051 analysis (e.g. CoreFVs.exprFreeVars).
1052
1053 Why shouldn't they be bound as GlobalIds?  Because, in particular, if
1054 they are globals, the specialiser floats dict uses above their defns,
1055 which prevents good simplifications happening.  Also the strictness
1056 analyser treats a occurrence of a GlobalId as imported and assumes it
1057 contains strictness in its IdInfo, which isn't true if the thing is
1058 bound in the same module as the occurrence.
1059
1060 It's OK for dfuns to be LocalIds, because we form the instance-env to
1061 pass on to the next module (md_insts) in CoreTidy, afer tidying
1062 and globalising the top-level Ids.
1063
1064 BUT make sure they are *exported* LocalIds (mkExportedLocalId) so 
1065 that they aren't discarded by the occurrence analyser.
1066
1067 \begin{code}
1068 mkDefaultMethodId dm_name ty = mkExportedLocalId dm_name ty
1069
1070 mkDictFunId :: Name      -- Name to use for the dict fun;
1071             -> [TyVar]
1072             -> ThetaType
1073             -> Class 
1074             -> [Type]
1075             -> Id
1076
1077 mkDictFunId dfun_name inst_tyvars dfun_theta clas inst_tys
1078   = mkExportedLocalId dfun_name dfun_ty
1079   where
1080     dfun_ty = mkSigmaTy inst_tyvars dfun_theta (mkDictTy clas inst_tys)
1081
1082 {-  1 dec 99: disable the Mark Jones optimisation for the sake
1083     of compatibility with Hugs.
1084     See `types/InstEnv' for a discussion related to this.
1085
1086     (class_tyvars, sc_theta, _, _) = classBigSig clas
1087     not_const (clas, tys) = not (isEmptyVarSet (tyVarsOfTypes tys))
1088     sc_theta' = substClasses (zipTopTvSubst class_tyvars inst_tys) sc_theta
1089     dfun_theta = case inst_decl_theta of
1090                    []    -> []  -- If inst_decl_theta is empty, then we don't
1091                                 -- want to have any dict arguments, so that we can
1092                                 -- expose the constant methods.
1093
1094                    other -> nub (inst_decl_theta ++ filter not_const sc_theta')
1095                                 -- Otherwise we pass the superclass dictionaries to
1096                                 -- the dictionary function; the Mark Jones optimisation.
1097                                 --
1098                                 -- NOTE the "nub".  I got caught by this one:
1099                                 --   class Monad m => MonadT t m where ...
1100                                 --   instance Monad m => MonadT (EnvT env) m where ...
1101                                 -- Here, the inst_decl_theta has (Monad m); but so
1102                                 -- does the sc_theta'!
1103                                 --
1104                                 -- NOTE the "not_const".  I got caught by this one too:
1105                                 --   class Foo a => Baz a b where ...
1106                                 --   instance Wob b => Baz T b where..
1107                                 -- Now sc_theta' has Foo T
1108 -}
1109 \end{code}
1110
1111
1112 %************************************************************************
1113 %*                                                                      *
1114 \subsection{Un-definable}
1115 %*                                                                      *
1116 %************************************************************************
1117
1118 These Ids can't be defined in Haskell.  They could be defined in
1119 unfoldings in the wired-in GHC.Prim interface file, but we'd have to
1120 ensure that they were definitely, definitely inlined, because there is
1121 no curried identifier for them.  That's what mkCompulsoryUnfolding
1122 does.  If we had a way to get a compulsory unfolding from an interface
1123 file, we could do that, but we don't right now.
1124
1125 unsafeCoerce# isn't so much a PrimOp as a phantom identifier, that
1126 just gets expanded into a type coercion wherever it occurs.  Hence we
1127 add it as a built-in Id with an unfolding here.
1128
1129 The type variables we use here are "open" type variables: this means
1130 they can unify with both unlifted and lifted types.  Hence we provide
1131 another gun with which to shoot yourself in the foot.
1132
1133 \begin{code}
1134 mkWiredInIdName mod fs uniq id
1135  = mkWiredInName mod (mkOccNameFS varName fs) uniq (AnId id) UserSyntax
1136
1137 unsafeCoerceName = mkWiredInIdName gHC_PRIM FSLIT("unsafeCoerce#") unsafeCoerceIdKey  unsafeCoerceId
1138 nullAddrName     = mkWiredInIdName gHC_PRIM FSLIT("nullAddr#")     nullAddrIdKey      nullAddrId
1139 seqName          = mkWiredInIdName gHC_PRIM FSLIT("seq")           seqIdKey           seqId
1140 realWorldName    = mkWiredInIdName gHC_PRIM FSLIT("realWorld#")    realWorldPrimIdKey realWorldPrimId
1141 lazyIdName       = mkWiredInIdName gHC_BASE FSLIT("lazy")         lazyIdKey           lazyId
1142
1143 errorName                = mkWiredInIdName gHC_ERR FSLIT("error")            errorIdKey eRROR_ID
1144 recSelErrorName          = mkWiredInIdName gHC_ERR FSLIT("recSelError")     recSelErrorIdKey rEC_SEL_ERROR_ID
1145 runtimeErrorName         = mkWiredInIdName gHC_ERR FSLIT("runtimeError")    runtimeErrorIdKey rUNTIME_ERROR_ID
1146 irrefutPatErrorName      = mkWiredInIdName gHC_ERR FSLIT("irrefutPatError") irrefutPatErrorIdKey iRREFUT_PAT_ERROR_ID
1147 recConErrorName          = mkWiredInIdName gHC_ERR FSLIT("recConError")     recConErrorIdKey rEC_CON_ERROR_ID
1148 patErrorName             = mkWiredInIdName gHC_ERR FSLIT("patError")         patErrorIdKey pAT_ERROR_ID
1149 noMethodBindingErrorName = mkWiredInIdName gHC_ERR FSLIT("noMethodBindingError")
1150                                            noMethodBindingErrorIdKey nO_METHOD_BINDING_ERROR_ID
1151 nonExhaustiveGuardsErrorName 
1152   = mkWiredInIdName gHC_ERR FSLIT("nonExhaustiveGuardsError") 
1153                     nonExhaustiveGuardsErrorIdKey nON_EXHAUSTIVE_GUARDS_ERROR_ID
1154 \end{code}
1155
1156 \begin{code}
1157 -- unsafeCoerce# :: forall a b. a -> b
1158 unsafeCoerceId
1159   = pcMiscPrelId unsafeCoerceName ty info
1160   where
1161     info = noCafIdInfo `setUnfoldingInfo` mkCompulsoryUnfolding rhs
1162            
1163
1164     ty  = mkForAllTys [openAlphaTyVar,openBetaTyVar]
1165                       (mkFunTy openAlphaTy openBetaTy)
1166     [x] = mkTemplateLocals [openAlphaTy]
1167     rhs = mkLams [openAlphaTyVar,openBetaTyVar,x] $
1168           Cast (Var x) (mkUnsafeCoercion openAlphaTy openBetaTy)
1169
1170 -- nullAddr# :: Addr#
1171 -- The reason is is here is because we don't provide 
1172 -- a way to write this literal in Haskell.
1173 nullAddrId 
1174   = pcMiscPrelId nullAddrName addrPrimTy info
1175   where
1176     info = noCafIdInfo `setUnfoldingInfo` 
1177            mkCompulsoryUnfolding (Lit nullAddrLit)
1178
1179 seqId
1180   = pcMiscPrelId seqName ty info
1181   where
1182     info = noCafIdInfo `setUnfoldingInfo` mkCompulsoryUnfolding rhs
1183            
1184
1185     ty  = mkForAllTys [alphaTyVar,openBetaTyVar]
1186                       (mkFunTy alphaTy (mkFunTy openBetaTy openBetaTy))
1187     [x,y] = mkTemplateLocals [alphaTy, openBetaTy]
1188     rhs = mkLams [alphaTyVar,openBetaTyVar,x,y] (Case (Var x) x openBetaTy [(DEFAULT, [], Var y)])
1189
1190 -- lazy :: forall a?. a? -> a?   (i.e. works for unboxed types too)
1191 -- Used to lazify pseq:         pseq a b = a `seq` lazy b
1192 -- 
1193 -- Also, no strictness: by being a built-in Id, all the info about lazyId comes from here,
1194 -- not from GHC.Base.hi.   This is important, because the strictness
1195 -- analyser will spot it as strict!
1196 --
1197 -- Also no unfolding in lazyId: it gets "inlined" by a HACK in the worker/wrapperpass
1198 --      (see WorkWrap.wwExpr)   
1199 -- We could use inline phases to do this, but that would be vulnerable to changes in 
1200 -- phase numbering....we must inline precisely after strictness analysis.
1201 lazyId
1202   = pcMiscPrelId lazyIdName ty info
1203   where
1204     info = noCafIdInfo
1205     ty  = mkForAllTys [alphaTyVar] (mkFunTy alphaTy alphaTy)
1206
1207 lazyIdUnfolding :: CoreExpr     -- Used to expand 'lazyId' after strictness anal
1208 lazyIdUnfolding = mkLams [openAlphaTyVar,x] (Var x)
1209                 where
1210                   [x] = mkTemplateLocals [openAlphaTy]
1211 \end{code}
1212
1213 @realWorld#@ used to be a magic literal, \tr{void#}.  If things get
1214 nasty as-is, change it back to a literal (@Literal@).
1215
1216 voidArgId is a Local Id used simply as an argument in functions
1217 where we just want an arg to avoid having a thunk of unlifted type.
1218 E.g.
1219         x = \ void :: State# RealWorld -> (# p, q #)
1220
1221 This comes up in strictness analysis
1222
1223 \begin{code}
1224 realWorldPrimId -- :: State# RealWorld
1225   = pcMiscPrelId realWorldName realWorldStatePrimTy
1226                  (noCafIdInfo `setUnfoldingInfo` evaldUnfolding)
1227         -- The evaldUnfolding makes it look that realWorld# is evaluated
1228         -- which in turn makes Simplify.interestingArg return True,
1229         -- which in turn makes INLINE things applied to realWorld# likely
1230         -- to be inlined
1231
1232 voidArgId :: Id
1233 voidArgId       -- :: State# RealWorld
1234   = mkSysLocal FSLIT("void") voidArgIdKey realWorldStatePrimTy
1235 \end{code}
1236
1237
1238 %************************************************************************
1239 %*                                                                      *
1240 \subsection[PrelVals-error-related]{@error@ and friends; @trace@}
1241 %*                                                                      *
1242 %************************************************************************
1243
1244 GHC randomly injects these into the code.
1245
1246 @patError@ is just a version of @error@ for pattern-matching
1247 failures.  It knows various ``codes'' which expand to longer
1248 strings---this saves space!
1249
1250 @absentErr@ is a thing we put in for ``absent'' arguments.  They jolly
1251 well shouldn't be yanked on, but if one is, then you will get a
1252 friendly message from @absentErr@ (rather than a totally random
1253 crash).
1254
1255 @parError@ is a special version of @error@ which the compiler does
1256 not know to be a bottoming Id.  It is used in the @_par_@ and @_seq_@
1257 templates, but we don't ever expect to generate code for it.
1258
1259 \begin{code}
1260 mkRuntimeErrorApp 
1261         :: Id           -- Should be of type (forall a. Addr# -> a)
1262                         --      where Addr# points to a UTF8 encoded string
1263         -> Type         -- The type to instantiate 'a'
1264         -> String       -- The string to print
1265         -> CoreExpr
1266
1267 mkRuntimeErrorApp err_id res_ty err_msg 
1268   = mkApps (Var err_id) [Type res_ty, err_string]
1269   where
1270     err_string = Lit (mkStringLit err_msg)
1271
1272 rEC_SEL_ERROR_ID                = mkRuntimeErrorId recSelErrorName
1273 rUNTIME_ERROR_ID                = mkRuntimeErrorId runtimeErrorName
1274 iRREFUT_PAT_ERROR_ID            = mkRuntimeErrorId irrefutPatErrorName
1275 rEC_CON_ERROR_ID                = mkRuntimeErrorId recConErrorName
1276 pAT_ERROR_ID                    = mkRuntimeErrorId patErrorName
1277 nO_METHOD_BINDING_ERROR_ID      = mkRuntimeErrorId noMethodBindingErrorName
1278 nON_EXHAUSTIVE_GUARDS_ERROR_ID  = mkRuntimeErrorId nonExhaustiveGuardsErrorName
1279
1280 -- The runtime error Ids take a UTF8-encoded string as argument
1281
1282 mkRuntimeErrorId :: Name -> Id
1283 mkRuntimeErrorId name = pc_bottoming_Id name runtimeErrorTy
1284
1285 runtimeErrorTy :: Type
1286 runtimeErrorTy        = mkSigmaTy [openAlphaTyVar] [] (mkFunTy addrPrimTy openAlphaTy)
1287 \end{code}
1288
1289 \begin{code}
1290 eRROR_ID = pc_bottoming_Id errorName errorTy
1291
1292 errorTy  :: Type
1293 errorTy  = mkSigmaTy [openAlphaTyVar] [] (mkFunTys [mkListTy charTy] openAlphaTy)
1294     -- Notice the openAlphaTyVar.  It says that "error" can be applied
1295     -- to unboxed as well as boxed types.  This is OK because it never
1296     -- returns, so the return type is irrelevant.
1297 \end{code}
1298
1299
1300 %************************************************************************
1301 %*                                                                      *
1302 \subsection{Utilities}
1303 %*                                                                      *
1304 %************************************************************************
1305
1306 \begin{code}
1307 pcMiscPrelId :: Name -> Type -> IdInfo -> Id
1308 pcMiscPrelId name ty info
1309   = mkVanillaGlobal name ty info
1310     -- We lie and say the thing is imported; otherwise, we get into
1311     -- a mess with dependency analysis; e.g., core2stg may heave in
1312     -- random calls to GHCbase.unpackPS__.  If GHCbase is the module
1313     -- being compiled, then it's just a matter of luck if the definition
1314     -- will be in "the right place" to be in scope.
1315
1316 pc_bottoming_Id :: Name -> Type -> Id
1317 pc_bottoming_Id name ty
1318  = pcMiscPrelId name ty bottoming_info
1319  where
1320     bottoming_info = vanillaIdInfo `setAllStrictnessInfo` Just strict_sig
1321         -- Do *not* mark them as NoCafRefs, because they can indeed have
1322         -- CAF refs.  For example, pAT_ERROR_ID calls GHC.Err.untangle,
1323         -- which has some CAFs
1324         -- In due course we may arrange that these error-y things are
1325         -- regarded by the GC as permanently live, in which case we
1326         -- can give them NoCaf info.  As it is, any function that calls
1327         -- any pc_bottoming_Id will itself have CafRefs, which bloats
1328         -- SRTs.
1329
1330     strict_sig     = mkStrictSig (mkTopDmdType [evalDmd] BotRes)
1331         -- These "bottom" out, no matter what their arguments
1332 \end{code}
1333