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