summaryrefslogtreecommitdiff
path: root/ghc/compiler/prelude/PrelInfo.lhs
blob: 788ad255db10b64586e96bb9ea61c6c8b86a4793 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
%
% (c) The GRASP/AQUA Project, Glasgow University, 1992-1998
%
\section[PrelInfo]{The @PrelInfo@ interface to the compiler's prelude knowledge}

\begin{code}
module PrelInfo (
	builtinNames, 	-- Names of things whose *unique* must be known, but 
			-- that is all. If something is in here, you know that
			-- if it's used at all then it's Name will be just as
			-- it is here, unique and all.  Includes all the 
			-- wiredd-in names.

	thinAirIdNames,	-- Names of non-wired-in Ids that may be used out of
	setThinAirIds,	-- thin air in any compilation. If they are not wired in
	thinAirModules,	-- we must be sure to import them from some Prelude 
			-- interface file even if they are not overtly 
			-- mentioned.  Subset of builtinNames.
	noRepIntegerIds,
	noRepStrIds,

	derivingOccurrences, 	-- For a given class C, this tells what other 
				-- things are needed as a result of a 
				-- deriving(C) clause


	-- Here are the thin-air Ids themselves
	int2IntegerId, addr2IntegerId,
	integerMinusOneId, integerZeroId, integerPlusOneId, integerPlusTwoId,
	packStringForCId, unpackCStringId, unpackCString2Id,
	unpackCStringAppendId, unpackCStringFoldrId,
	foldrId,

	-- Random other things
	main_NAME, ioTyCon_NAME,
	deRefStablePtr_NAME, makeStablePtr_NAME,
	bindIO_NAME,

	maybeCharLikeCon, maybeIntLikeCon,
	needsDataDeclCtxtClassKeys, cCallishClassKeys, cCallishTyKeys, 
	isNoDictClass, isNumericClass, isStandardClass, isCcallishClass, 
	isCreturnableClass, numericTyKeys,

	-- RdrNames for lots of things, mainly used in derivings
	eq_RDR, ne_RDR, le_RDR, lt_RDR, ge_RDR, gt_RDR, max_RDR, min_RDR, 
	compare_RDR, minBound_RDR, maxBound_RDR, enumFrom_RDR, enumFromTo_RDR,
	enumFromThen_RDR, enumFromThenTo_RDR, succ_RDR, pred_RDR, fromEnum_RDR, toEnum_RDR, 
	ratioDataCon_RDR, range_RDR, index_RDR, inRange_RDR, readsPrec_RDR,
	readList_RDR, showsPrec_RDR, showList_RDR, plus_RDR, times_RDR,
	ltTag_RDR, eqTag_RDR, gtTag_RDR, eqH_Char_RDR, ltH_Char_RDR, 
	eqH_Word_RDR, ltH_Word_RDR, eqH_Addr_RDR, ltH_Addr_RDR, eqH_Float_RDR,
	ltH_Float_RDR, eqH_Double_RDR, ltH_Double_RDR, eqH_Int_RDR, 
	ltH_Int_RDR, geH_RDR, leH_RDR, minusH_RDR, false_RDR, true_RDR,
	and_RDR, not_RDR, append_RDR, map_RDR, compose_RDR, mkInt_RDR,
	error_RDR, assertErr_RDR,
	showString_RDR, showParen_RDR, readParen_RDR, lex_RDR,
	showSpace_RDR, showList___RDR, readList___RDR, negate_RDR,

	numClass_RDR, fractionalClass_RDR, eqClass_RDR, 
	ccallableClass_RDR, creturnableClass_RDR,
	monadClass_RDR, enumClass_RDR, ordClass_RDR,
	ioDataCon_RDR,

	mkTupConRdrName, mkUbxTupConRdrName

    ) where

#include "HsVersions.h"


-- friends:
import PrelMods		-- Prelude module names
import PrelVals		-- VALUES
import MkId		( mkPrimitiveId )
import PrimOp		( PrimOp(..), allThePrimOps )
import DataCon		( DataCon )
import PrimRep		( PrimRep(..) )
import TysPrim		-- TYPES
import TysWiredIn

-- others:
import RdrHsSyn		( RdrName(..), varQual, tcQual, qual )
import BasicTypes	( IfaceFlavour )
import Var		( varUnique, Id )
import Name		( Name, OccName, Provenance(..),
			  getName, mkGlobalName, modAndOcc
			)
import Class		( Class, classKey )
import TyCon		( tyConDataCons, TyCon )
import Type		( funTyCon )
import Bag
import Unique		-- *Key stuff
import UniqFM		( UniqFM, listToUFM, lookupWithDefaultUFM ) 
import Util		( isIn )
import Panic		( panic )

import IOExts
\end{code}

%************************************************************************
%*									*
\subsection[builtinNameInfo]{Lookup built-in names}
%*									*
%************************************************************************

We have two ``builtin name funs,'' one to look up @TyCons@ and
@Classes@, the other to look up values.

\begin{code}
builtinNames :: Bag Name
builtinNames
  = unionManyBags
	[	-- Wired in TyCons
	  unionManyBags (map getTyConNames wired_in_tycons)

		-- Wired in Ids
	, listToBag (map getName wired_in_ids)

		-- PrimOps
	, listToBag (map (getName . mkPrimitiveId) allThePrimOps)

 		-- Thin-air ids
	, listToBag thinAirIdNames

		-- Other names with magic keys
	, listToBag knownKeyNames
	]
\end{code}


\begin{code}
getTyConNames :: TyCon -> Bag Name
getTyConNames tycon
    = getName tycon `consBag` 
      listToBag (map getName (tyConDataCons tycon))
	-- Synonyms return empty list of constructors
\end{code}

We let a lot of "non-standard" values be visible, so that we can make
sense of them in interface pragmas. It's cool, though they all have
"non-standard" names, so they won't get past the parser in user code.


%************************************************************************
%*									*
\subsection{Wired in TyCons}
%*									*
%************************************************************************

\begin{code}
wired_in_tycons = [funTyCon] ++
		  prim_tycons ++
		  tuple_tycons ++
		  unboxed_tuple_tycons ++
		  data_tycons

prim_tycons
  = [ addrPrimTyCon
    , arrayPrimTyCon
    , byteArrayPrimTyCon
    , charPrimTyCon
    , doublePrimTyCon
    , floatPrimTyCon
    , intPrimTyCon
    , int64PrimTyCon
    , foreignObjPrimTyCon
    , weakPrimTyCon
    , mutableArrayPrimTyCon
    , mutableByteArrayPrimTyCon
    , mVarPrimTyCon
    , mutVarPrimTyCon
    , realWorldTyCon
    , stablePtrPrimTyCon
    , stableNamePrimTyCon
    , statePrimTyCon
    , threadIdPrimTyCon
    , wordPrimTyCon
    , word64PrimTyCon
    ]

tuple_tycons = unitTyCon : [tupleTyCon i | i <- [2..37] ]
unboxed_tuple_tycons = [unboxedTupleTyCon i | i <- [1..37] ]

data_tycons
  = [ addrTyCon
    , boolTyCon
    , charTyCon
    , doubleTyCon
    , floatTyCon
    , intTyCon
    , int8TyCon
    , int16TyCon
    , int32TyCon
    , int64TyCon
    , integerTyCon
    , listTyCon
    , wordTyCon
    , word8TyCon
    , word16TyCon
    , word32TyCon
    , word64TyCon
    ]
\end{code}


%************************************************************************
%*									*
\subsection{Wired in Ids}
%*									*
%************************************************************************

\begin{code}
wired_in_ids
  = [ 	-- These error-y things are wired in because we don't yet have
	-- a way to express in an interface file that the result type variable
	-- is 'open'; that is can be unified with an unboxed type
	-- 
	-- [The interface file format now carry such information, but there's
	--  no way yet of expressing at the definition site for these error-reporting
	--  functions that they have an 'open' result type. -- sof 1/99]
	-- 
      aBSENT_ERROR_ID
    , eRROR_ID
    , iRREFUT_PAT_ERROR_ID
    , nON_EXHAUSTIVE_GUARDS_ERROR_ID
    , nO_METHOD_BINDING_ERROR_ID
    , pAR_ERROR_ID
    , pAT_ERROR_ID
    , rEC_CON_ERROR_ID
    , rEC_UPD_ERROR_ID

	-- These two can't be defined in Haskell
    , realWorldPrimId
    , unsafeCoerceId
    ]

\end{code}

%************************************************************************
%*									*
\subsection{Thin air entities}
%*									*
%************************************************************************

These are Ids that we need to reference in various parts of the
system, and we'd like to pull them out of thin air rather than pass
them around.  We'd also like to have all the IdInfo available for each
one: i.e. everything that gets pulled out of the interface file.

The solution is to generate this map of global Ids after the
typechecker, and assign it to a global variable.  Any subsequent
pass may refer to the map to pull Ids out.  Any invalid
(i.e. pre-typechecker) access to the map will result in a panic.

\begin{code}
thinAirIdNames 
  = map mkKnownKeyGlobal
    [
	-- Needed for converting literals to Integers (used in tidyCoreExpr)
      (varQual (pREL_BASE, SLIT("int2Integer")),  int2IntegerIdKey)	
    , (varQual (pREL_BASE, SLIT("addr2Integer")), addr2IntegerIdKey)

	-- OK, this is Will's idea: we should have magic values for Integers 0,
	-- +1, +2, and -1 (go ahead, fire me):
    , (varQual (pREL_BASE, SLIT("integer_0")),  integerZeroIdKey)    
    , (varQual (pREL_BASE, SLIT("integer_1")),  integerPlusOneIdKey) 
    , (varQual (pREL_BASE, SLIT("integer_2")),  integerPlusTwoIdKey) 
    , (varQual (pREL_BASE, SLIT("integer_m1")), integerMinusOneIdKey)


	-- String literals
    , (varQual (pREL_PACK, SLIT("packCString#")),   packCStringIdKey)
    , (varQual (pREL_PACK, SLIT("unpackCString#")), unpackCStringIdKey)
    , (varQual (pREL_PACK, SLIT("unpackNBytes#")),  unpackCString2IdKey)
    , (varQual (pREL_PACK, SLIT("unpackAppendCString#")), unpackCStringAppendIdKey)
    , (varQual (pREL_PACK, SLIT("unpackFoldrCString#")),  unpackCStringFoldrIdKey)

	-- Folds; introduced by desugaring list comprehensions
    , (varQual (pREL_BASE, SLIT("foldr")), foldrIdKey)
    ]

thinAirModules = [pREL_PACK]	-- See notes with RnIfaces.findAndReadIface

noRepIntegerIds = [integerZeroId, integerPlusOneId, integerPlusTwoId, integerMinusOneId,
		   int2IntegerId, addr2IntegerId]

noRepStrIds = [unpackCString2Id, unpackCStringId]

int2IntegerId  = lookupThinAirId int2IntegerIdKey
addr2IntegerId = lookupThinAirId addr2IntegerIdKey

integerMinusOneId = lookupThinAirId integerMinusOneIdKey
integerZeroId     = lookupThinAirId integerZeroIdKey
integerPlusOneId  = lookupThinAirId integerPlusOneIdKey
integerPlusTwoId  = lookupThinAirId integerPlusTwoIdKey

packStringForCId = lookupThinAirId packCStringIdKey
unpackCStringId  = lookupThinAirId unpackCStringIdKey
unpackCString2Id = lookupThinAirId unpackCString2IdKey 
unpackCStringAppendId = lookupThinAirId unpackCStringAppendIdKey 
unpackCStringFoldrId  = lookupThinAirId unpackCStringFoldrIdKey 

foldrId = lookupThinAirId foldrIdKey
\end{code}


\begin{code}
\end{code}

\begin{code}
thinAirIdMapRef :: IORef (UniqFM Id)
thinAirIdMapRef = unsafePerformIO (newIORef (panic "thinAirIdMap: still empty"))

setThinAirIds :: [Id] -> IO ()
setThinAirIds thin_air_ids
  = writeIORef thinAirIdMapRef the_map
  where
    the_map = listToUFM [(varUnique id, id) | id <- thin_air_ids]

thinAirIdMap :: UniqFM Id
thinAirIdMap = unsafePerformIO (readIORef thinAirIdMapRef)
  -- Read it just once, the first time someone tugs on thinAirIdMap

lookupThinAirId :: Unique -> Id
lookupThinAirId uniq = lookupWithDefaultUFM thinAirIdMap
			(panic "lookupThinAirId: no mapping") uniq 
\end{code}


%************************************************************************
%*									*
\subsection{Built-in keys}
%*									*
%************************************************************************

Ids, Synonyms, Classes and ClassOps with builtin keys. 

\begin{code}
mkKnownKeyGlobal :: (RdrName, Unique) -> Name
mkKnownKeyGlobal (Qual mod occ hif, uniq)
  = mkGlobalName uniq mod occ NoProvenance

ioTyCon_NAME	  = mkKnownKeyGlobal (ioTyCon_RDR,       ioTyConKey)
main_NAME	  = mkKnownKeyGlobal (main_RDR,	         mainKey)

 -- Operations needed when compiling FFI decls
bindIO_NAME	    = mkKnownKeyGlobal (bindIO_RDR,	    bindIOIdKey)
deRefStablePtr_NAME = mkKnownKeyGlobal (deRefStablePtr_RDR, deRefStablePtrIdKey)
makeStablePtr_NAME  = mkKnownKeyGlobal (makeStablePtr_RDR,  makeStablePtrIdKey)

knownKeyNames :: [Name]
knownKeyNames
  = [main_NAME, ioTyCon_NAME]
    ++
    map mkKnownKeyGlobal
    [
	-- Type constructors (synonyms especially)
      (orderingTyCon_RDR,  	orderingTyConKey)
    , (rationalTyCon_RDR,  	rationalTyConKey)
    , (ratioDataCon_RDR,   	ratioDataConKey)
    , (ratioTyCon_RDR,     	ratioTyConKey)
    , (byteArrayTyCon_RDR, 	byteArrayTyConKey)
    , (mutableByteArrayTyCon_RDR, mutableByteArrayTyConKey)
    , (foreignObjTyCon_RDR, 	foreignObjTyConKey)
    , (stablePtrTyCon_RDR, 	stablePtrTyConKey)

	--  Classes.  *Must* include:
	--  	classes that are grabbed by key (e.g., eqClassKey)
	--  	classes in "Class.standardClassKeys" (quite a few)
    , (eqClass_RDR,		eqClassKey)		-- mentioned, derivable
    , (ordClass_RDR,		ordClassKey)		-- derivable
    , (boundedClass_RDR, 	boundedClassKey)	-- derivable
    , (numClass_RDR, 		numClassKey)		-- mentioned, numeric
    , (enumClass_RDR,		enumClassKey)		-- derivable
    , (monadClass_RDR,		monadClassKey)
    , (monadPlusClass_RDR,	monadPlusClassKey)
    , (functorClass_RDR,	functorClassKey)
    , (showClass_RDR, 		showClassKey)		-- derivable
    , (realClass_RDR, 		realClassKey)		-- numeric
    , (integralClass_RDR,	integralClassKey)	-- numeric
    , (fractionalClass_RDR,	fractionalClassKey)	-- numeric
    , (floatingClass_RDR,	floatingClassKey)	-- numeric
    , (realFracClass_RDR,	realFracClassKey)	-- numeric
    , (realFloatClass_RDR,	realFloatClassKey)	-- numeric
    , (readClass_RDR,		readClassKey)		-- derivable
    , (ixClass_RDR,		ixClassKey)		-- derivable (but it isn't Prelude.Ix; hmmm)
    , (ccallableClass_RDR, 	cCallableClassKey)	-- mentioned, ccallish
    , (creturnableClass_RDR, 	cReturnableClassKey)	-- mentioned, ccallish

	-- ClassOps 
    , (fromInt_RDR,		fromIntClassOpKey)
    , (fromInteger_RDR,		fromIntegerClassOpKey)
    , (ge_RDR,			geClassOpKey) 
    , (minus_RDR,		minusClassOpKey)
    , (enumFrom_RDR,		enumFromClassOpKey)
    , (enumFromThen_RDR,	enumFromThenClassOpKey)
    , (enumFromTo_RDR,		enumFromToClassOpKey)
    , (enumFromThenTo_RDR,	enumFromThenToClassOpKey)
    , (fromEnum_RDR,		fromEnumClassOpKey)
    , (toEnum_RDR,		toEnumClassOpKey)
    , (eq_RDR,			eqClassOpKey)
    , (thenM_RDR,		thenMClassOpKey)
    , (returnM_RDR,		returnMClassOpKey)
    , (failM_RDR,		failMClassOpKey)
    , (fromRational_RDR,	fromRationalClassOpKey)
    
    , (deRefStablePtr_RDR,	deRefStablePtrIdKey)
    , (makeStablePtr_RDR,	makeStablePtrIdKey)
    , (bindIO_RDR,		bindIOIdKey)

    , (map_RDR,			mapIdKey)
    , (append_RDR,		appendIdKey)

	-- List operations
    , (concat_RDR,		concatIdKey)
    , (filter_RDR,		filterIdKey)
    , (zip_RDR,			zipIdKey)

	-- Others
    , (otherwiseId_RDR,		otherwiseIdKey)
    , (assert_RDR,		assertIdKey)
    ]
\end{code}

ToDo: make it do the ``like'' part properly (as in 0.26 and before).

\begin{code}
maybeCharLikeCon, maybeIntLikeCon :: DataCon -> Bool
maybeCharLikeCon con = getUnique con == charDataConKey
maybeIntLikeCon  con = getUnique con == intDataConKey
\end{code}

%************************************************************************
%*									*
\subsection{Commonly-used RdrNames}
%*									*
%************************************************************************

These RdrNames are not really "built in", but some parts of the compiler
(notably the deriving mechanism) need to mention their names, and it's convenient
to write them all down in one place.

\begin{code}
prelude_primop op = qual (modAndOcc (mkPrimitiveId op))

main_RDR		= varQual (mAIN,     SLIT("main"))
otherwiseId_RDR 	= varQual (pREL_BASE, SLIT("otherwise"))

intTyCon_RDR		= qual (modAndOcc intTyCon)
ioTyCon_RDR		= tcQual  (pREL_IO_BASE, SLIT("IO"))
ioDataCon_RDR  	   	= varQual (pREL_IO_BASE, SLIT("IO"))
bindIO_RDR	        = varQual (pREL_IO_BASE, SLIT("bindIO"))

orderingTyCon_RDR	= tcQual (pREL_BASE, SLIT("Ordering"))
rationalTyCon_RDR	= tcQual (pREL_NUM,  SLIT("Rational"))
ratioTyCon_RDR		= tcQual (pREL_NUM,  SLIT("Ratio"))
ratioDataCon_RDR	= varQual (pREL_NUM, SLIT(":%"))

byteArrayTyCon_RDR		= tcQual (pREL_ARR,  SLIT("ByteArray"))
mutableByteArrayTyCon_RDR	= tcQual (pREL_ARR,  SLIT("MutableByteArray"))

foreignObjTyCon_RDR	= tcQual (pREL_IO_BASE, SLIT("ForeignObj"))
stablePtrTyCon_RDR	= tcQual (pREL_STABLE,  SLIT("StablePtr"))
deRefStablePtr_RDR      = varQual (pREL_STABLE, SLIT("deRefStablePtr"))
makeStablePtr_RDR       = varQual (pREL_STABLE, SLIT("makeStablePtr"))

eqClass_RDR		= tcQual (pREL_BASE, SLIT("Eq"))
ordClass_RDR		= tcQual (pREL_BASE, SLIT("Ord"))
boundedClass_RDR	= tcQual (pREL_BASE, SLIT("Bounded"))
numClass_RDR		= tcQual (pREL_BASE, SLIT("Num"))
enumClass_RDR 		= tcQual (pREL_BASE, SLIT("Enum"))
monadClass_RDR		= tcQual (pREL_BASE, SLIT("Monad"))
monadPlusClass_RDR	= tcQual (pREL_BASE, SLIT("MonadPlus"))
functorClass_RDR	= tcQual (pREL_BASE, SLIT("Functor"))
showClass_RDR		= tcQual (pREL_BASE, SLIT("Show"))
realClass_RDR		= tcQual (pREL_NUM,  SLIT("Real"))
integralClass_RDR	= tcQual (pREL_NUM,  SLIT("Integral"))
fractionalClass_RDR	= tcQual (pREL_NUM,  SLIT("Fractional"))
floatingClass_RDR	= tcQual (pREL_NUM,  SLIT("Floating"))
realFracClass_RDR	= tcQual (pREL_NUM,  SLIT("RealFrac"))
realFloatClass_RDR	= tcQual (pREL_NUM,  SLIT("RealFloat"))
readClass_RDR		= tcQual (pREL_READ, SLIT("Read"))
ixClass_RDR		= tcQual (iX,	     SLIT("Ix"))
ccallableClass_RDR	= tcQual (pREL_GHC,  SLIT("CCallable"))
creturnableClass_RDR	= tcQual (pREL_GHC,  SLIT("CReturnable"))

fromInt_RDR	   = varQual (pREL_BASE, SLIT("fromInt"))
fromInteger_RDR	   = varQual (pREL_BASE, SLIT("fromInteger"))
minus_RDR	   = varQual (pREL_BASE, SLIT("-"))
succ_RDR	   = varQual (pREL_BASE, SLIT("succ"))
pred_RDR	   = varQual (pREL_BASE, SLIT("pred"))
toEnum_RDR	   = varQual (pREL_BASE, SLIT("toEnum"))
fromEnum_RDR	   = varQual (pREL_BASE, SLIT("fromEnum"))
enumFrom_RDR	   = varQual (pREL_BASE, SLIT("enumFrom"))
enumFromTo_RDR	   = varQual (pREL_BASE, SLIT("enumFromTo"))
enumFromThen_RDR   = varQual (pREL_BASE, SLIT("enumFromThen"))
enumFromThenTo_RDR = varQual (pREL_BASE, SLIT("enumFromThenTo"))

thenM_RDR	   = varQual (pREL_BASE,    SLIT(">>="))
returnM_RDR	   = varQual (pREL_BASE,    SLIT("return"))
failM_RDR	   = varQual (pREL_BASE,    SLIT("fail"))

fromRational_RDR   = varQual (pREL_NUM,     SLIT("fromRational"))
negate_RDR	   = varQual (pREL_BASE, SLIT("negate"))
eq_RDR		   = varQual (pREL_BASE, SLIT("=="))
ne_RDR		   = varQual (pREL_BASE, SLIT("/="))
le_RDR		   = varQual (pREL_BASE, SLIT("<="))
lt_RDR		   = varQual (pREL_BASE, SLIT("<"))
ge_RDR		   = varQual (pREL_BASE, SLIT(">="))
gt_RDR		   = varQual (pREL_BASE, SLIT(">"))
ltTag_RDR	   = varQual (pREL_BASE,  SLIT("LT"))
eqTag_RDR	   = varQual (pREL_BASE,  SLIT("EQ"))
gtTag_RDR	   = varQual (pREL_BASE,  SLIT("GT"))
max_RDR		   = varQual (pREL_BASE, SLIT("max"))
min_RDR		   = varQual (pREL_BASE, SLIT("min"))
compare_RDR	   = varQual (pREL_BASE, SLIT("compare"))
minBound_RDR	   = varQual (pREL_BASE, SLIT("minBound"))
maxBound_RDR	   = varQual (pREL_BASE, SLIT("maxBound"))
false_RDR	   = varQual (pREL_BASE,  SLIT("False"))
true_RDR	   = varQual (pREL_BASE,  SLIT("True"))
and_RDR		   = varQual (pREL_BASE,  SLIT("&&"))
not_RDR		   = varQual (pREL_BASE,  SLIT("not"))
compose_RDR	   = varQual (pREL_BASE, SLIT("."))
append_RDR	   = varQual (pREL_BASE, SLIT("++"))
map_RDR		   = varQual (pREL_BASE, SLIT("map"))
concat_RDR	   = varQual (pREL_LIST, SLIT("concat"))
filter_RDR	   = varQual (pREL_LIST, SLIT("filter"))
zip_RDR		   = varQual (pREL_LIST, SLIT("zip"))

showList___RDR     = varQual (pREL_BASE,  SLIT("showList__"))
showsPrec_RDR	   = varQual (pREL_BASE, SLIT("showsPrec"))
showList_RDR	   = varQual (pREL_BASE, SLIT("showList"))
showSpace_RDR	   = varQual (pREL_BASE,  SLIT("showSpace"))
showString_RDR	   = varQual (pREL_BASE, SLIT("showString"))
showParen_RDR	   = varQual (pREL_BASE, SLIT("showParen"))

range_RDR	   = varQual (iX,   SLIT("range"))
index_RDR	   = varQual (iX,   SLIT("index"))
inRange_RDR	   = varQual (iX,   SLIT("inRange"))

readsPrec_RDR	   = varQual (pREL_READ, SLIT("readsPrec"))
readList_RDR	   = varQual (pREL_READ, SLIT("readList"))
readParen_RDR	   = varQual (pREL_READ, SLIT("readParen"))
lex_RDR		   = varQual (pREL_READ,  SLIT("lex"))
readList___RDR     = varQual (pREL_READ,  SLIT("readList__"))

plus_RDR	   = varQual (pREL_BASE, SLIT("+"))
times_RDR	   = varQual (pREL_BASE, SLIT("*"))
mkInt_RDR	   = varQual (pREL_BASE, SLIT("I#"))

error_RDR	   = varQual (pREL_ERR, SLIT("error"))
assert_RDR         = varQual (pREL_GHC, SLIT("assert"))
assertErr_RDR      = varQual (pREL_ERR, SLIT("assertError"))

eqH_Char_RDR	= prelude_primop CharEqOp
ltH_Char_RDR	= prelude_primop CharLtOp
eqH_Word_RDR	= prelude_primop WordEqOp
ltH_Word_RDR	= prelude_primop WordLtOp
eqH_Addr_RDR	= prelude_primop AddrEqOp
ltH_Addr_RDR	= prelude_primop AddrLtOp
eqH_Float_RDR	= prelude_primop FloatEqOp
ltH_Float_RDR	= prelude_primop FloatLtOp
eqH_Double_RDR	= prelude_primop DoubleEqOp
ltH_Double_RDR	= prelude_primop DoubleLtOp
eqH_Int_RDR	= prelude_primop IntEqOp
ltH_Int_RDR	= prelude_primop IntLtOp
geH_RDR		= prelude_primop IntGeOp
leH_RDR		= prelude_primop IntLeOp
minusH_RDR	= prelude_primop IntSubOp
\end{code}

\begin{code}
mkTupConRdrName :: Int -> RdrName 
mkTupConRdrName arity = varQual (mkTupNameStr arity)

mkUbxTupConRdrName :: Int -> RdrName
mkUbxTupConRdrName arity = varQual (mkUbxTupNameStr arity)
\end{code}


%************************************************************************
%*									*
\subsection[Class-std-groups]{Standard groups of Prelude classes}
%*									*
%************************************************************************

@derivableClassKeys@ is also used in checking \tr{deriving} constructs
(@TcDeriv@).

@derivingOccurrences@ maps a class name to a list of the (qualified) occurrences
that will be mentioned by  the derived code for the class when it is later generated.
We don't need to put in things that are WiredIn (because they are already mapped to their
correct name by the @NameSupply@.  The class itself, and all its class ops, is
already flagged as an occurrence so we don't need to mention that either.

@derivingOccurrences@ has an item for every derivable class, even if that item is empty,
because we treat lookup failure as indicating that the class is illegal in a deriving clause.

\begin{code}
derivingOccurrences :: UniqFM [RdrName]
derivingOccurrences = listToUFM deriving_occ_info

derivableClassKeys  = map fst deriving_occ_info

deriving_occ_info
  = [ (eqClassKey, 	[intTyCon_RDR, and_RDR, not_RDR])
    , (ordClassKey, 	[intTyCon_RDR, compose_RDR, eqTag_RDR])
				-- EQ (from Ordering) is needed to force in the constructors
				-- as well as the type constructor.
    , (enumClassKey, 	[intTyCon_RDR, and_RDR, map_RDR, plus_RDR, showsPrec_RDR, append_RDR]) 
				-- The last two Enum deps are only used to produce better
				-- error msgs for derived toEnum methods.
    , (boundedClassKey,	[intTyCon_RDR])
    , (showClassKey,	[intTyCon_RDR, numClass_RDR, ordClass_RDR, compose_RDR, showString_RDR, 
			 showParen_RDR, showSpace_RDR, showList___RDR])
    , (readClassKey,	[intTyCon_RDR, numClass_RDR, ordClass_RDR, append_RDR, 
			 lex_RDR, readParen_RDR, readList___RDR, thenM_RDR])
			     -- returnM (and the rest of the Monad class decl) 
			     -- will be forced in as result of depending
			     -- on thenM.   -- SOF 1/99
    , (ixClassKey,	[intTyCon_RDR, numClass_RDR, and_RDR, map_RDR, enumFromTo_RDR, 
			 returnM_RDR, failM_RDR])
			     -- the last two are needed to force returnM, thenM and failM
			     -- in before typechecking the list(monad) comprehension
			     -- generated for derived Ix instances (range method)
			     -- of single constructor types.  -- SOF 8/97
    ]
	-- intTyCon: Practically any deriving needs Int, either for index calculations, 
	--		or for taggery.
	-- ordClass: really it's the methods that are actually used.
	-- numClass: for Int literals
\end{code}


NOTE: @Eq@ and @Text@ do need to appear in @standardClasses@
even though every numeric class has these two as a superclass,
because the list of ambiguous dictionaries hasn't been simplified.

\begin{code}
isCcallishClass, isCreturnableClass, isNoDictClass, 
  isNumericClass, isStandardClass :: Class -> Bool

isNumericClass     clas = classKey clas `is_elem` numericClassKeys
isStandardClass    clas = classKey clas `is_elem` standardClassKeys
isCcallishClass	   clas = classKey clas `is_elem` cCallishClassKeys
isCreturnableClass clas = classKey clas == cReturnableClassKey
isNoDictClass      clas = classKey clas `is_elem` noDictClassKeys
is_elem = isIn "is_X_Class"

numericClassKeys =
	[ numClassKey
    	, realClassKey
    	, integralClassKey
    	, fractionalClassKey
    	, floatingClassKey
    	, realFracClassKey
    	, realFloatClassKey
    	]

	-- the strictness analyser needs to know about numeric types
	-- (see SaAbsInt.lhs)
numericTyKeys = 
	[ addrTyConKey
	, wordTyConKey
	, intTyConKey
	, integerTyConKey
	, doubleTyConKey
	, floatTyConKey
	]

needsDataDeclCtxtClassKeys = -- see comments in TcDeriv
  	[ readClassKey
    	]

cCallishClassKeys = 
	[ cCallableClassKey
	, cReturnableClassKey
	]

	-- Renamer always imports these data decls replete with constructors
	-- so that desugarer can always see the constructor.  Ugh!
cCallishTyKeys = 
	[ addrTyConKey
	, wordTyConKey
	, byteArrayTyConKey
	, mutableByteArrayTyConKey
	, foreignObjTyConKey
	, stablePtrTyConKey
	]

standardClassKeys
  = derivableClassKeys ++ numericClassKeys ++ cCallishClassKeys
    --
    -- We have to have "CCallable" and "CReturnable" in the standard
    -- classes, so that if you go...
    --
    --	    _ccall_ foo ... 93{-numeric literal-} ...
    --
    -- ... it can do The Right Thing on the 93.

noDictClassKeys 	-- These classes are used only for type annotations;
			-- they are not implemented by dictionaries, ever.
  = cCallishClassKeys
\end{code}