[project @ 2002-03-15 13:57:27 by simonmar]
[ghc-hetmet.git] / ghc / compiler / basicTypes / Id.lhs
1 %
2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
3 %
4 \section[Id]{@Ids@: Value and constructor identifiers}
5
6 \begin{code}
7 module Id (
8         Id, DictId,
9
10         -- Simple construction
11         mkGlobalId, mkLocalId, mkSpecPragmaId, mkLocalIdWithInfo,
12         mkSysLocal, mkUserLocal, mkVanillaGlobal,
13         mkTemplateLocals, mkTemplateLocalsNum, mkWildId, mkTemplateLocal,
14         mkWorkerId,
15
16         -- Taking an Id apart
17         idName, idType, idUnique, idInfo,
18         idPrimRep, isId, globalIdDetails,
19         recordSelectorFieldLabel,
20
21         -- Modifying an Id
22         setIdName, setIdUnique, setIdType, setIdLocalExported, setGlobalIdDetails,
23         setIdInfo, lazySetIdInfo, modifyIdInfo, maybeModifyIdInfo,
24         zapLamIdInfo, zapDemandIdInfo, 
25
26         -- Predicates
27         isImplicitId, isDeadBinder,
28         isSpecPragmaId, isExportedId, isLocalId, isGlobalId,
29         isRecordSelector,
30         isPrimOpId, isPrimOpId_maybe, 
31         isFCallId, isFCallId_maybe,
32         isDataConId, isDataConId_maybe, 
33         isDataConWrapId, isDataConWrapId_maybe,
34         isBottomingId,
35         hasNoBinding,
36
37         -- Inline pragma stuff
38         idInlinePragma, setInlinePragma, modifyInlinePragma, 
39
40
41         -- One shot lambda stuff
42         isOneShotLambda, setOneShotLambda, clearOneShotLambda,
43
44         -- IdInfo stuff
45         setIdUnfolding,
46         setIdArity,
47         setIdNewDemandInfo, 
48         setIdNewStrictness, zapIdNewStrictness,
49         setIdTyGenInfo,
50         setIdWorkerInfo,
51         setIdSpecialisation,
52         setIdCgInfo,
53         setIdOccInfo,
54
55 #ifdef OLD_STRICTNESS
56         idDemandInfo, 
57         idStrictness, 
58         idCprInfo,
59         setIdStrictness, 
60         setIdDemandInfo, 
61         setIdCprInfo,
62 #endif
63
64         idArity, 
65         idNewDemandInfo,
66         idNewStrictness, idNewStrictness_maybe, 
67         idTyGenInfo,
68         idWorkerInfo,
69         idUnfolding,
70         idSpecialisation,
71         idCgInfo,
72         idCafInfo,
73         idLBVarInfo,
74         idOccInfo,
75
76 #ifdef OLD_STRICTNESS
77         newStrictnessFromOld    -- Temporary
78 #endif
79
80     ) where
81
82 #include "HsVersions.h"
83
84
85 import CoreSyn          ( Unfolding, CoreRules )
86 import BasicTypes       ( Arity )
87 import Var              ( Id, DictId,
88                           isId, isExportedId, isSpecPragmaId, isLocalId,
89                           idName, idType, idUnique, idInfo, isGlobalId,
90                           setIdName, setVarType, setIdUnique, setIdLocalExported,
91                           setIdInfo, lazySetIdInfo, modifyIdInfo, 
92                           maybeModifyIdInfo,
93                           globalIdDetails, setGlobalIdDetails
94                         )
95 import qualified Var    ( mkLocalId, mkGlobalId, mkSpecPragmaId )
96 import Type             ( Type, typePrimRep, addFreeTyVars, 
97                           usOnce, eqUsage, seqType, splitTyConApp_maybe )
98
99 import IdInfo 
100
101 import qualified Demand ( Demand )
102 import NewDemand        ( Demand, StrictSig, topSig, isBottomingSig )
103 import Name             ( Name, OccName,
104                           mkSystemName, mkInternalName,
105                           getOccName, getSrcLoc
106                         ) 
107 import OccName          ( EncodedFS, UserFS, mkWorkerOcc )
108 import PrimRep          ( PrimRep )
109 import TysPrim          ( statePrimTyCon )
110 import FieldLabel       ( FieldLabel )
111 import Maybes           ( orElse )
112 import SrcLoc           ( SrcLoc )
113 import Outputable
114 import Unique           ( Unique, mkBuiltinUnique )
115
116 -- infixl so you can say (id `set` a `set` b)
117 infixl  1 `setIdUnfolding`,
118           `setIdArity`,
119           `setIdNewDemandInfo`,
120           `setIdNewStrictness`,
121           `setIdTyGenInfo`,
122           `setIdWorkerInfo`,
123           `setIdSpecialisation`,
124           `setInlinePragma`,
125           `idCafInfo`
126 #ifdef OLD_STRICTNESS
127           ,`idCprInfo`
128           ,`setIdStrictness`
129           ,`setIdDemandInfo`
130 #endif
131 \end{code}
132
133
134
135 %************************************************************************
136 %*                                                                      *
137 \subsection{Simple Id construction}
138 %*                                                                      *
139 %************************************************************************
140
141 Absolutely all Ids are made by mkId.  It is just like Var.mkId,
142 but in addition it pins free-tyvar-info onto the Id's type, 
143 where it can easily be found.
144
145 \begin{code}
146 mkLocalIdWithInfo :: Name -> Type -> IdInfo -> Id
147 mkLocalIdWithInfo name ty info = Var.mkLocalId name (addFreeTyVars ty) info
148
149 mkSpecPragmaId :: Name -> Type -> Id
150 mkSpecPragmaId name ty = Var.mkSpecPragmaId name (addFreeTyVars ty) vanillaIdInfo
151
152 mkGlobalId :: GlobalIdDetails -> Name -> Type -> IdInfo -> Id
153 mkGlobalId details name ty info = Var.mkGlobalId details name (addFreeTyVars ty) info
154 \end{code}
155
156 \begin{code}
157 mkLocalId :: Name -> Type -> Id
158 mkLocalId name ty = mkLocalIdWithInfo name ty vanillaIdInfo
159
160 -- SysLocal: for an Id being created by the compiler out of thin air...
161 -- UserLocal: an Id with a name the user might recognize...
162 mkUserLocal :: OccName -> Unique -> Type -> SrcLoc -> Id
163 mkSysLocal  :: EncodedFS  -> Unique -> Type -> Id
164 mkVanillaGlobal :: Name -> Type -> IdInfo -> Id
165
166 -- for SysLocal, we assume the base name is already encoded, to avoid
167 -- re-encoding the same string over and over again.
168 mkSysLocal  fs uniq ty      = mkLocalId (mkSystemName uniq fs)      ty
169 mkUserLocal occ uniq ty loc = mkLocalId (mkInternalName    uniq occ loc) ty
170 mkVanillaGlobal             = mkGlobalId VanillaGlobal
171 \end{code}
172
173 Make some local @Ids@ for a template @CoreExpr@.  These have bogus
174 @Uniques@, but that's OK because the templates are supposed to be
175 instantiated before use.
176  
177 \begin{code}
178 -- "Wild Id" typically used when you need a binder that you don't expect to use
179 mkWildId :: Type -> Id
180 mkWildId ty = mkSysLocal FSLIT("wild") (mkBuiltinUnique 1) ty
181
182 mkWorkerId :: Unique -> Id -> Type -> Id
183 -- A worker gets a local name.  CoreTidy will externalise it if necessary.
184 mkWorkerId uniq unwrkr ty
185   = mkLocalId wkr_name ty
186   where
187     wkr_name = mkInternalName uniq (mkWorkerOcc (getOccName unwrkr)) (getSrcLoc unwrkr)
188
189 -- "Template locals" typically used in unfoldings
190 mkTemplateLocals :: [Type] -> [Id]
191 mkTemplateLocals tys = zipWith mkTemplateLocal [1..] tys
192
193 mkTemplateLocalsNum :: Int -> [Type] -> [Id]
194 -- The Int gives the starting point for unique allocation
195 mkTemplateLocalsNum n tys = zipWith mkTemplateLocal [n..] tys
196
197 mkTemplateLocal :: Int -> Type -> Id
198 mkTemplateLocal i ty = mkSysLocal FSLIT("tpl") (mkBuiltinUnique i) ty
199 \end{code}
200
201
202 %************************************************************************
203 %*                                                                      *
204 \subsection[Id-general-funs]{General @Id@-related functions}
205 %*                                                                      *
206 %************************************************************************
207
208 \begin{code}
209 setIdType :: Id -> Type -> Id
210         -- Add free tyvar info to the type
211 setIdType id ty = seqType ty `seq` setVarType id (addFreeTyVars ty)
212
213 idPrimRep :: Id -> PrimRep
214 idPrimRep id = typePrimRep (idType id)
215 \end{code}
216
217
218 %************************************************************************
219 %*                                                                      *
220 \subsection{Special Ids}
221 %*                                                                      *
222 %************************************************************************
223
224 The @SpecPragmaId@ exists only to make Ids that are
225 on the *LHS* of bindings created by SPECIALISE pragmas; 
226 eg:             s = f Int d
227 The SpecPragmaId is never itself mentioned; it
228 exists solely so that the specialiser will find
229 the call to f, and make specialised version of it.
230 The SpecPragmaId binding is discarded by the specialiser
231 when it gathers up overloaded calls.
232 Meanwhile, it is not discarded as dead code.
233
234
235 \begin{code}
236 recordSelectorFieldLabel :: Id -> FieldLabel
237 recordSelectorFieldLabel id = case globalIdDetails id of
238                                  RecordSelId lbl -> lbl
239
240 isRecordSelector id = case globalIdDetails id of
241                         RecordSelId lbl -> True
242                         other           -> False
243
244 isPrimOpId id = case globalIdDetails id of
245                     PrimOpId op -> True
246                     other       -> False
247
248 isPrimOpId_maybe id = case globalIdDetails id of
249                             PrimOpId op -> Just op
250                             other       -> Nothing
251
252 isFCallId id = case globalIdDetails id of
253                     FCallId call -> True
254                     other        -> False
255
256 isFCallId_maybe id = case globalIdDetails id of
257                             FCallId call -> Just call
258                             other        -> Nothing
259
260 isDataConId id = case globalIdDetails id of
261                         DataConId _ -> True
262                         other       -> False
263
264 isDataConId_maybe id = case globalIdDetails id of
265                           DataConId con -> Just con
266                           other         -> Nothing
267
268 isDataConWrapId_maybe id = case globalIdDetails id of
269                                   DataConWrapId con -> Just con
270                                   other             -> Nothing
271
272 isDataConWrapId id = case globalIdDetails id of
273                         DataConWrapId con -> True
274                         other             -> False
275
276 -- hasNoBinding returns True of an Id which may not have a
277 -- binding, even though it is defined in this module.  
278 -- Data constructor workers used to be things of this kind, but
279 -- they aren't any more.  Instead, we inject a binding for 
280 -- them at the CorePrep stage.
281 hasNoBinding id = case globalIdDetails id of
282                         PrimOpId _  -> True
283                         FCallId _   -> True
284                         other       -> False
285
286 isImplicitId :: Id -> Bool
287         -- isImplicitId tells whether an Id's info is implied by other
288         -- declarations, so we don't need to put its signature in an interface
289         -- file, even if it's mentioned in some other interface unfolding.
290 isImplicitId id
291   = case globalIdDetails id of
292         RecordSelId _   -> True -- Includes dictionary selectors
293         FCallId _       -> True
294         PrimOpId _      -> True
295         DataConId _     -> True
296         DataConWrapId _ -> True
297                 -- These are are implied by their type or class decl;
298                 -- remember that all type and class decls appear in the interface file.
299                 -- The dfun id must *not* be omitted, because it carries version info for
300                 -- the instance decl
301         other           -> False
302 \end{code}
303
304 \begin{code}
305 isDeadBinder :: Id -> Bool
306 isDeadBinder bndr | isId bndr = isDeadOcc (idOccInfo bndr)
307                   | otherwise = False   -- TyVars count as not dead
308 \end{code}
309
310
311 %************************************************************************
312 %*                                                                      *
313 \subsection{IdInfo stuff}
314 %*                                                                      *
315 %************************************************************************
316
317 \begin{code}
318         ---------------------------------
319         -- ARITY
320 idArity :: Id -> Arity
321 idArity id = arityInfo (idInfo id)
322
323 setIdArity :: Id -> Arity -> Id
324 setIdArity id arity = modifyIdInfo (`setArityInfo` arity) id
325
326 #ifdef OLD_STRICTNESS
327         ---------------------------------
328         -- (OLD) STRICTNESS 
329 idStrictness :: Id -> StrictnessInfo
330 idStrictness id = strictnessInfo (idInfo id)
331
332 setIdStrictness :: Id -> StrictnessInfo -> Id
333 setIdStrictness id strict_info = modifyIdInfo (`setStrictnessInfo` strict_info) id
334 #endif
335
336 -- isBottomingId returns true if an application to n args would diverge
337 isBottomingId :: Id -> Bool
338 isBottomingId id = isBottomingSig (idNewStrictness id)
339
340 idNewStrictness_maybe :: Id -> Maybe StrictSig
341 idNewStrictness :: Id -> StrictSig
342
343 idNewStrictness_maybe id = newStrictnessInfo (idInfo id)
344 idNewStrictness       id = idNewStrictness_maybe id `orElse` topSig
345
346 setIdNewStrictness :: Id -> StrictSig -> Id
347 setIdNewStrictness id sig = modifyIdInfo (`setNewStrictnessInfo` Just sig) id
348
349 zapIdNewStrictness :: Id -> Id
350 zapIdNewStrictness id = modifyIdInfo (`setNewStrictnessInfo` Nothing) id
351
352         ---------------------------------
353         -- TYPE GENERALISATION
354 idTyGenInfo :: Id -> TyGenInfo
355 idTyGenInfo id = tyGenInfo (idInfo id)
356
357 setIdTyGenInfo :: Id -> TyGenInfo -> Id
358 setIdTyGenInfo id tygen_info = modifyIdInfo (`setTyGenInfo` tygen_info) id
359
360         ---------------------------------
361         -- WORKER ID
362 idWorkerInfo :: Id -> WorkerInfo
363 idWorkerInfo id = workerInfo (idInfo id)
364
365 setIdWorkerInfo :: Id -> WorkerInfo -> Id
366 setIdWorkerInfo id work_info = modifyIdInfo (`setWorkerInfo` work_info) id
367
368         ---------------------------------
369         -- UNFOLDING
370 idUnfolding :: Id -> Unfolding
371 idUnfolding id = unfoldingInfo (idInfo id)
372
373 setIdUnfolding :: Id -> Unfolding -> Id
374 setIdUnfolding id unfolding = modifyIdInfo (`setUnfoldingInfo` unfolding) id
375
376 #ifdef OLD_STRICTNESS
377         ---------------------------------
378         -- (OLD) DEMAND
379 idDemandInfo :: Id -> Demand.Demand
380 idDemandInfo id = demandInfo (idInfo id)
381
382 setIdDemandInfo :: Id -> Demand.Demand -> Id
383 setIdDemandInfo id demand_info = modifyIdInfo (`setDemandInfo` demand_info) id
384 #endif
385
386 idNewDemandInfo :: Id -> NewDemand.Demand
387 idNewDemandInfo id = newDemandInfo (idInfo id)
388
389 setIdNewDemandInfo :: Id -> NewDemand.Demand -> Id
390 setIdNewDemandInfo id dmd = modifyIdInfo (`setNewDemandInfo` dmd) id
391
392         ---------------------------------
393         -- SPECIALISATION
394 idSpecialisation :: Id -> CoreRules
395 idSpecialisation id = specInfo (idInfo id)
396
397 setIdSpecialisation :: Id -> CoreRules -> Id
398 setIdSpecialisation id spec_info = modifyIdInfo (`setSpecInfo` spec_info) id
399
400         ---------------------------------
401         -- CG INFO
402 idCgInfo :: Id -> CgInfo
403 #ifdef OLD_STRICTNESS
404 idCgInfo id = case cgInfo (idInfo id) of
405                   NoCgInfo -> pprPanic "idCgInfo" (ppr id)
406                   info     -> info
407 #else
408 idCgInfo id = cgInfo (idInfo id)
409 #endif          
410
411 setIdCgInfo :: Id -> CgInfo -> Id
412 setIdCgInfo id cg_info = modifyIdInfo (`setCgInfo` cg_info) id
413
414         ---------------------------------
415         -- CAF INFO
416 idCafInfo :: Id -> CafInfo
417 #ifdef OLD_STRICTNESS
418 idCafInfo id = case cgInfo (idInfo id) of
419                   NoCgInfo -> pprPanic "idCafInfo" (ppr id)
420                   info     -> cgCafInfo info
421 #else
422 idCafInfo id = cgCafInfo (idCgInfo id)
423 #endif
424         ---------------------------------
425         -- CPR INFO
426 #ifdef OLD_STRICTNESS
427 idCprInfo :: Id -> CprInfo
428 idCprInfo id = cprInfo (idInfo id)
429
430 setIdCprInfo :: Id -> CprInfo -> Id
431 setIdCprInfo id cpr_info = modifyIdInfo (`setCprInfo` cpr_info) id
432 #endif
433
434         ---------------------------------
435         -- Occcurrence INFO
436 idOccInfo :: Id -> OccInfo
437 idOccInfo id = occInfo (idInfo id)
438
439 setIdOccInfo :: Id -> OccInfo -> Id
440 setIdOccInfo id occ_info = modifyIdInfo (`setOccInfo` occ_info) id
441 \end{code}
442
443
444         ---------------------------------
445         -- INLINING
446 The inline pragma tells us to be very keen to inline this Id, but it's still
447 OK not to if optimisation is switched off.
448
449 \begin{code}
450 idInlinePragma :: Id -> InlinePragInfo
451 idInlinePragma id = inlinePragInfo (idInfo id)
452
453 setInlinePragma :: Id -> InlinePragInfo -> Id
454 setInlinePragma id prag = modifyIdInfo (`setInlinePragInfo` prag) id
455
456 modifyInlinePragma :: Id -> (InlinePragInfo -> InlinePragInfo) -> Id
457 modifyInlinePragma id fn = modifyIdInfo (\info -> info `setInlinePragInfo` (fn (inlinePragInfo info))) id
458 \end{code}
459
460
461         ---------------------------------
462         -- ONE-SHOT LAMBDAS
463 \begin{code}
464 idLBVarInfo :: Id -> LBVarInfo
465 idLBVarInfo id = lbvarInfo (idInfo id)
466
467 isOneShotLambda :: Id -> Bool
468 isOneShotLambda id = analysis || hack
469   where analysis = case idLBVarInfo id of
470                      LBVarInfo u    | u `eqUsage` usOnce      -> True
471                      other                                    -> False
472         hack     = case splitTyConApp_maybe (idType id) of
473                      Just (tycon,_) | tycon == statePrimTyCon -> True
474                      other                                    -> False
475
476         -- The last clause is a gross hack.  It claims that 
477         -- every function over realWorldStatePrimTy is a one-shot
478         -- function.  This is pretty true in practice, and makes a big
479         -- difference.  For example, consider
480         --      a `thenST` \ r -> ...E...
481         -- The early full laziness pass, if it doesn't know that r is one-shot
482         -- will pull out E (let's say it doesn't mention r) to give
483         --      let lvl = E in a `thenST` \ r -> ...lvl...
484         -- When `thenST` gets inlined, we end up with
485         --      let lvl = E in \s -> case a s of (r, s') -> ...lvl...
486         -- and we don't re-inline E.
487         --
488         -- It would be better to spot that r was one-shot to start with, but
489         -- I don't want to rely on that.
490         --
491         -- Another good example is in fill_in in PrelPack.lhs.  We should be able to
492         -- spot that fill_in has arity 2 (and when Keith is done, we will) but we can't yet.
493
494 setOneShotLambda :: Id -> Id
495 setOneShotLambda id = modifyIdInfo (`setLBVarInfo` LBVarInfo usOnce) id
496
497 clearOneShotLambda :: Id -> Id
498 clearOneShotLambda id 
499   | isOneShotLambda id = modifyIdInfo (`setLBVarInfo` NoLBVarInfo) id
500   | otherwise          = id                     
501
502 -- But watch out: this may change the type of something else
503 --      f = \x -> e
504 -- If we change the one-shot-ness of x, f's type changes
505 \end{code}
506
507 \begin{code}
508 zapLamIdInfo :: Id -> Id
509 zapLamIdInfo id = maybeModifyIdInfo zapLamInfo id
510
511 zapDemandIdInfo id = maybeModifyIdInfo zapDemandInfo id
512 \end{code}
513