2 % (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
4 \section[PrelInfo]{The @PrelInfo@ interface to the compiler's prelude knowledge}
11 wiredInThings, basicKnownKeyNames,
14 -- Random other things
15 maybeCharLikeCon, maybeIntLikeCon,
18 isNumericClass, isStandardClass
22 #include "HsVersions.h"
24 import PrelNames ( basicKnownKeyNames,
25 hasKey, charDataConKey, intDataConKey,
26 numericClassKeys, standardClassKeys )
28 import PrimOp ( PrimOp, allThePrimOps, primOpOcc, primOpTag, maxPrimOpTag )
29 import DataCon ( DataCon )
30 import Id ( Id, idName )
31 import MkId -- All of it, for re-export
32 import Name ( nameOccName )
33 import TysPrim ( primTyCons )
34 import TysWiredIn ( wiredInTyCons )
35 import HscTypes ( TyThing(..), implicitTyThings, GenAvailInfo(..), RdrAvailInfo )
36 import Class ( Class, classKey )
37 import Type ( funTyCon )
38 import TyCon ( tyConName )
41 import Array ( Array, array, (!) )
44 %************************************************************************
46 \subsection[builtinNameInfo]{Lookup built-in names}
48 %************************************************************************
50 Notes about wired in things
51 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
52 * Wired-in things are Ids/TyCons that are completely known to the compiler.
53 They are global values in GHC, (e.g. listTyCon :: TyCon).
55 * A wired in Name contains the thing itself inside the Name:
56 see Name.wiredInNameTyThing_maybe
57 (E.g. listTyConName contains listTyCon.
59 * The name cache is initialised with (the names of) all wired-in things
61 * The type checker sees if the Name is wired in before looking up
62 the name in the type environment. So the type envt itself contains
65 * MkIface prunes out wired-in things before putting them in an interface file.
66 So interface files never contain wired-in things.
70 wiredInThings :: [TyThing]
71 -- This list is used only to initialise HscMain.knownKeyNames
72 -- to ensure that when you say "Prelude.map" in your source code, you
73 -- get a Name with the correct known key
76 [ -- Wired in TyCons and their implicit Ids
78 , concatMap implicitTyThings tycon_things
84 , map (AnId . mkPrimOpId) allThePrimOps
87 tycon_things = map ATyCon ([funTyCon] ++ primTyCons ++ wiredInTyCons)
90 We let a lot of "non-standard" values be visible, so that we can make
91 sense of them in interface pragmas. It's cool, though they all have
92 "non-standard" names, so they won't get past the parser in user code.
94 %************************************************************************
98 %************************************************************************
101 primOpIds :: Array Int Id -- Indexed by PrimOp tag
102 primOpIds = array (1,maxPrimOpTag) [ (primOpTag op, mkPrimOpId op)
103 | op <- allThePrimOps]
105 primOpId :: PrimOp -> Id
106 primOpId op = primOpIds ! primOpTag op
110 %************************************************************************
112 \subsection{Export lists for pseudo-modules (GHC.Prim)}
114 %************************************************************************
116 GHC.Prim "exports" all the primops and primitive types, some
120 ghcPrimExports :: [RdrAvailInfo]
122 = map (Avail . nameOccName . idName) ghcPrimIds ++
123 map (Avail . primOpOcc) allThePrimOps ++
124 [ AvailTC occ [occ] |
125 n <- funTyCon : primTyCons, let occ = nameOccName (tyConName n)
130 %************************************************************************
132 \subsection{Built-in keys}
134 %************************************************************************
136 ToDo: make it do the ``like'' part properly (as in 0.26 and before).
139 maybeCharLikeCon, maybeIntLikeCon :: DataCon -> Bool
140 maybeCharLikeCon con = con `hasKey` charDataConKey
141 maybeIntLikeCon con = con `hasKey` intDataConKey
145 %************************************************************************
147 \subsection{Class predicates}
149 %************************************************************************
152 isNumericClass, isStandardClass :: Class -> Bool
154 isNumericClass clas = classKey clas `is_elem` numericClassKeys
155 isStandardClass clas = classKey clas `is_elem` standardClassKeys
156 is_elem = isIn "is_X_Class"