summaryrefslogtreecommitdiff
path: root/ghc/compiler/basicTypes/IdInfo.lhs
blob: de8ef285711471ca0dea84d6eab35eae4269d534 (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
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
%
% (c) The GRASP/AQUA Project, Glasgow University, 1993-1995
%
\section[IdInfo]{@IdInfos@: Non-essential information about @Ids@}

(And a pretty good illustration of quite a few things wrong with
Haskell. [WDP 94/11])

\begin{code}
#include "HsVersions.h"

module IdInfo (
	IdInfo,		-- abstract
	noIdInfo,
	boringIdInfo,
	ppIdInfo,
	applySubstToIdInfo, apply_to_IdInfo,    -- not for general use, please

	OptIdInfo(..),	-- class; for convenience only, really
	-- all the *Infos herein are instances of it

	-- component "id infos"; also abstract:
	ArityInfo,
	mkArityInfo, unknownArity, arityMaybe,

	DemandInfo,
	mkDemandInfo,
	willBeDemanded,

	SpecEnv, SpecInfo(..),
	nullSpecEnv, mkSpecEnv, addOneToSpecEnv,
	lookupSpecId, lookupSpecEnv, lookupConstMethodId,

	SrcLoc,
	getSrcLocIdInfo,

	StrictnessInfo(..), -- non-abstract
	Demand(..),	    -- non-abstract
	wwLazy, wwStrict, wwUnpack, wwPrim, wwEnum,
--UNUSED: isStrict, absentArg,
	indicatesWorker, nonAbsentArgs,
	mkStrictnessInfo, mkBottomStrictnessInfo,
	getWrapperArgTypeCategories,
	getWorkerId,
	workerExists,
	bottomIsGuaranteed,

	UnfoldingDetails(..),	-- non-abstract! re-exported
	UnfoldingGuidance(..),	-- non-abstract; ditto
	mkUnfolding,
	iWantToBeINLINEd, mkMagicUnfolding,
	noInfo_UF, getInfo_UF, addInfo_UF, -- to avoid instance virus

	UpdateInfo,
	mkUpdateInfo,
	UpdateSpec(..),
	updateInfoMaybe,

	DeforestInfo(..),

	ArgUsageInfo,	
	ArgUsage(..),
	ArgUsageType(..),
	mkArgUsageInfo,
	getArgUsage,

	FBTypeInfo,
	FBType(..),
	FBConsum(..),
	FBProd(..),
	mkFBTypeInfo,
	getFBType,

	-- and to make the interface self-sufficient...
	Bag, BasicLit, BinderInfo, CoreAtom, CoreExpr, Id,
	IdEnv(..), UniqFM, Unique, IdVal, FormSummary,
	InstTemplate, MagicUnfoldingFun, Maybe, UniType, UniqSM(..),
	SimplifiableBinder(..), SimplifiableCoreExpr(..),
	PlainCoreExpr(..), PlainCoreAtom(..), PprStyle, Pretty(..),
	PrettyRep, UniqueSupply, InExpr(..), OutAtom(..), OutExpr(..),
	OutId(..), Subst

	-- and to make sure pragmas work...
	IF_ATTACK_PRAGMAS(COMMA mkUnknownSrcLoc)
    ) where

IMPORT_Trace		-- ToDo: rm (debugging)

import AbsPrel		( mkFunTy, nilDataCon{-HACK-}
			  IF_ATTACK_PRAGMAS(COMMA tagOf_PrimOp)
			  IF_ATTACK_PRAGMAS(COMMA pprPrimOp)
			)
import AbsUniType
import Bag		( emptyBag, Bag )
import CmdLineOpts	( GlobalSwitch(..) )
import Id		( getIdUniType, getIdInfo,
			  getDataConSig, getInstantiatedDataConSig,
			  externallyVisibleId, isDataCon,
			  unfoldingUnfriendlyId, isWorkerId,
			  isWrapperId, DataCon(..)
			  IF_ATTACK_PRAGMAS(COMMA applyTypeEnvToId)
			  IF_ATTACK_PRAGMAS(COMMA getIdStrictness) -- profiling
			)
import IdEnv		-- ( nullIdEnv, lookupIdEnv )
import Inst		( apply_to_Inst, applySubstToInst, Inst )
import MagicUFs
import Maybes
import Outputable
import PlainCore
import Pretty
import SimplEnv		-- UnfoldingDetails(..), UnfoldingGuidance(..)
import SrcLoc
import Subst		( applySubstToTy, Subst )
import OccurAnal	( occurAnalyseGlobalExpr )
import TaggedCore	-- SimplifiableCore* ...
import Unique
import Util
import WwLib		( mAX_WORKER_ARGS )
\end{code}

An @IdInfo@ gives {\em optional} information about an @Id@.  If
present it never lies, but it may not be present, in which case there
is always a conservative assumption which can be made.

Two @Id@s may have different info even though they have the same
@Unique@ (and are hence the same @Id@); for example, one might lack
the properties attached to the other.

The @IdInfo@ gives information about the value, or definition, of the
@Id@.  It does {\em not} contain information about the @Id@'s usage
(except for @DemandInfo@? ToDo).

\begin{code}
data IdInfo
  = IdInfo
	ArityInfo		-- Its arity

	DemandInfo		-- Whether or not it is definitely
				-- demanded

	SpecEnv			-- Specialisations of this function which exist

	StrictnessInfo		-- Strictness properties, notably
				-- how to conjure up "worker" functions

	UnfoldingDetails	-- Its unfolding; for locally-defined
				-- things, this can *only* be NoUnfoldingDetails
				-- or IWantToBeINLINEd (i.e., INLINE pragma).

	UpdateInfo		-- Which args should be updated

        DeforestInfo            -- Whether its definition should be
                                -- unfolded during deforestation

	ArgUsageInfo		-- how this Id uses its arguments

	FBTypeInfo		-- the Foldr/Build W/W property of this function.

	SrcLoc			-- Source location of definition

	-- ToDo: SrcLoc is in FullNames too (could rm?)  but it
	-- is needed here too for things like ConstMethodIds and the
	-- like, which don't have full-names of their own Mind you,
	-- perhaps the FullName for a constant method could give the
	-- class/type involved?
\end{code}

\begin{code}
noIdInfo = IdInfo noInfo noInfo noInfo noInfo noInfo_UF
		  noInfo noInfo noInfo noInfo mkUnknownSrcLoc

-- "boring" means: nothing to put an interface
boringIdInfo (IdInfo UnknownArity
		     UnknownDemand
		     nullSpecEnv
		     strictness
		     unfolding
		     NoUpdateInfo
		     Don'tDeforest
		     _ {- arg_usage: currently no interface effect -}
		     _ {- no f/b w/w -}
		     _ {- src_loc: no effect on interfaces-})
		     |  boring_strictness strictness
		     && boring_unfolding unfolding
  = True
  where
    boring_strictness NoStrictnessInfo = True
    boring_strictness BottomGuaranteed = False
    boring_strictness (StrictnessInfo wrap_args _) = all_present_WwLazies wrap_args

    boring_unfolding NoUnfoldingDetails = True
    boring_unfolding _	    	    	= False

boringIdInfo _ = False

pp_NONE = ppPStr SLIT("_N_")
\end{code}

Simply turgid.  But BE CAREFUL: don't @apply_to_Id@ if that @Id@
will in turn @apply_to_IdInfo@ of the self-same @IdInfo@.  (A very
nasty loop, friends...)
\begin{code}
apply_to_IdInfo ty_fn
    (IdInfo arity demand spec strictness unfold update deforest arg_usage fb_ww srcloc)
  = let
	new_spec = apply_spec spec

	-- NOT a good idea: 
	--   apply_strict strictness 	`thenLft` \ new_strict ->
	--   apply_wrap wrap 		`thenLft` \ new_wrap ->
    in
    IdInfo arity demand
	   new_spec strictness unfold
	   update deforest arg_usage fb_ww srcloc
  where
    apply_spec (SpecEnv is)
      = SpecEnv (map do_one is)
      where
    	do_one (SpecInfo ty_maybes ds spec_id)
	  = --apply_to_Id ty_fn spec_id	`thenLft` \ new_spec_id ->
	    SpecInfo (map apply_to_maybe ty_maybes) ds spec_id
	  where
	    apply_to_maybe Nothing   = Nothing
	    apply_to_maybe (Just ty) = Just (ty_fn ty)

{- NOT a good idea;
    apply_strict info@NoStrictnessInfo = returnLft info
    apply_strict BottomGuaranteed = ???
    apply_strict (StrictnessInfo wrap_arg_info id_maybe)
      = (case id_maybe of
	   Nothing -> returnLft Nothing
	   Just xx -> applySubstToId subst xx `thenLft` \ new_xx ->
		      returnLft (Just new_xx)
	) `thenLft` \ new_id_maybe ->
        returnLft (StrictnessInfo wrap_arg_info new_id_maybe)
-}
\end{code}

Variant of the same thing for the typechecker.
\begin{code}
applySubstToIdInfo s0
    (IdInfo arity demand spec strictness unfold update deforest arg_usage fb_ww srcloc)
  = case (apply_spec s0 spec) of { (s1, new_spec) ->
    (s1, IdInfo arity demand new_spec strictness unfold update deforest arg_usage fb_ww srcloc) }
  where
    apply_spec s0 (SpecEnv is)
      = case (mapAccumL do_one s0 is) of { (s1, new_is) ->
        (s1, SpecEnv new_is) }
      where
    	do_one s0 (SpecInfo ty_maybes ds spec_id)
	  = case (mapAccumL apply_to_maybe s0 ty_maybes) of { (s1, new_maybes) ->
	    (s1, SpecInfo new_maybes ds spec_id) }
	  where
	    apply_to_maybe s0 Nothing   = (s0, Nothing)
	    apply_to_maybe s0 (Just ty)
	      = case (applySubstToTy s0 ty) of { (s1, new_ty) ->
		(s1, Just new_ty) }
\end{code}

\begin{code}
ppIdInfo :: PprStyle
	 -> Id		-- The Id for which we're printing this IdInfo
	 -> Bool	-- True <=> print specialisations, please
	 -> (Id -> Id)	-- to look up "better Ids" w/ better IdInfos;
	 -> IdEnv UnfoldingDetails
			-- inlining info for top-level fns in this module
	 -> IdInfo	-- see MkIface notes
	 -> Pretty

ppIdInfo sty for_this_id specs_please better_id_fn inline_env
    i@(IdInfo arity demand specialise strictness unfold update deforest arg_usage fbtype srcloc)
  | boringIdInfo i
  = ppPStr SLIT("_NI_")

  | otherwise
  = let
	stuff = ppCat [
		    -- order is important!:
		    ppInfo sty better_id_fn arity,
		    ppInfo sty better_id_fn update,
		    ppInfo sty better_id_fn deforest,

		    pp_strictness sty (Just for_this_id)
				  better_id_fn inline_env strictness,

		    if bottomIsGuaranteed strictness
		    then pp_NONE
		    else pp_unfolding sty for_this_id inline_env unfold,

		    if specs_please
		    then pp_specs sty (not (isDataCon for_this_id))
			          better_id_fn inline_env specialise
		    else pp_NONE,

		    -- DemandInfo needn't be printed since it has no effect on interfaces
		    ppInfo sty better_id_fn demand,
		    ppInfo sty better_id_fn fbtype
		]
    in
    case sty of
      PprInterface sw_chker ->	if sw_chker OmitInterfacePragmas
				then ppNil
				else stuff
      _			    ->	stuff
\end{code}

\begin{code}
{- OLD:
pp_info_op :: String -> Pretty -- like pprNonOp

pp_info_op name
  = if isAvarop name || isAconop name
    then ppBesides [ppLparen, ppStr name, ppRparen]
    else ppStr name
-}
\end{code}

%************************************************************************
%*									*
\subsection[OptIdInfo-class]{The @OptIdInfo@ class (keeps things tidier)}
%*									*
%************************************************************************

\begin{code}
class OptIdInfo a where
    noInfo	:: a
    getInfo	:: IdInfo -> a
    addInfo	:: IdInfo -> a -> IdInfo
		-- By default, "addInfo" will not overwrite
		-- "info" with "non-info"; look at any instance
		-- to see an example.
    ppInfo	:: PprStyle -> (Id -> Id) -> a -> Pretty
\end{code}

%************************************************************************
%*									*
\subsection[srcloc-IdInfo]{Source-location info in an @IdInfo@}
%*									*
%************************************************************************

Not used much, but...
\begin{code}
getSrcLocIdInfo  (IdInfo _ _ _ _ _ _ _ _ _ src_loc) = src_loc
\end{code}

%************************************************************************
%*									*
\subsection[arity-IdInfo]{Arity info about an @Id@}
%*									*
%************************************************************************

\begin{code}
data ArityInfo
  = UnknownArity	-- no idea
  | ArityExactly Int	-- arity is exactly this
\end{code}

\begin{code}
mkArityInfo  = ArityExactly
unknownArity = UnknownArity

arityMaybe :: ArityInfo -> Maybe Int

arityMaybe UnknownArity	    = Nothing
arityMaybe (ArityExactly i) = Just i
\end{code}

\begin{code}
instance OptIdInfo ArityInfo where
    noInfo = UnknownArity

    getInfo (IdInfo arity _ _ _ _ _ _ _ _ _) = arity

    addInfo id_info UnknownArity = id_info
    addInfo (IdInfo _ a c d e f g h i j) arity = IdInfo arity a c d e f g h i j

    ppInfo sty _ UnknownArity	      = ifPprInterface sty pp_NONE
    ppInfo sty _ (ArityExactly arity) = ppCat [ppPStr SLIT("_A_"), ppInt arity]
\end{code}

%************************************************************************
%*									*
\subsection[demand-IdInfo]{Demand info about an @Id@}
%*									*
%************************************************************************

Whether a value is certain to be demanded or not.  (This is the
information that is computed by the ``front-end'' of the strictness
analyser.)

This information is only used within a module, it is not exported
(obviously).

\begin{code}
data DemandInfo
  = UnknownDemand
  | DemandedAsPer Demand
\end{code}

\begin{code}
mkDemandInfo :: Demand -> DemandInfo
mkDemandInfo demand = DemandedAsPer demand

willBeDemanded :: DemandInfo -> Bool
willBeDemanded (DemandedAsPer demand) = isStrict demand 
willBeDemanded _		      = False
\end{code}

\begin{code}
instance OptIdInfo DemandInfo where
    noInfo = UnknownDemand

    getInfo (IdInfo _ demand _ _ _ _ _ _ _ _) = demand

{-	DELETED!  If this line is in, there is no way to
	nuke a DemandInfo, and we have to be able to do that
	when floating let-bindings around 
    addInfo id_info UnknownDemand = id_info
-}
    addInfo (IdInfo a _ c d e f g h i j) demand = IdInfo a demand c d e f g h i j

    ppInfo (PprInterface _) _ _	      = ppNil
    ppInfo sty _ UnknownDemand	      = ppStr "{-# L #-}"
    ppInfo sty _ (DemandedAsPer info)
      = ppCat [ppStr "{-#", ppStr (showList [info] ""), ppStr "#-}"]
\end{code}

%************************************************************************
%*									*
\subsection[specialisation-IdInfo]{Specialisation info about an @Id@}
%*									*
%************************************************************************

The details of one specialisation, held in an @Id@'s
@SpecEnv@ are as follows:
\begin{code}
data SpecInfo
  = SpecInfo	[Maybe UniType] -- Instance types; no free type variables in here
	    	Int		-- No. of dictionaries to eat
		Id		-- Specialised version
\end{code}

For example, if \tr{f} has this @SpecInfo@:
\begin{verbatim}
	SpecInfo [Just t1, Nothing, Just t3] 2 f'
\end{verbatim}
then
\begin{verbatim}
	f t1 t2 t3 d1 d2  ===>  f t2
\end{verbatim}
The \tr{Nothings} identify type arguments in which the specialised
version is polymorphic.

\begin{code}
data SpecEnv = SpecEnv [SpecInfo]

mkSpecEnv = SpecEnv
nullSpecEnv = SpecEnv []
addOneToSpecEnv (SpecEnv xs) x = SpecEnv (x : xs)

lookupConstMethodId :: Id -> UniType -> Maybe Id
    -- slight variant on "lookupSpecEnv" below

lookupConstMethodId sel_id spec_ty
  = case (getInfo (getIdInfo sel_id)) of
      SpecEnv spec_infos -> firstJust (map try spec_infos)
  where
    try (SpecInfo (Just ty:nothings) _ const_meth_id)
      = ASSERT(all nothing_is_nothing nothings)
	case (cmpUniType True{-properly-} ty spec_ty) of
	  EQ_ -> Just const_meth_id
	  _   -> Nothing

    nothing_is_nothing Nothing = True  -- debugging only
    nothing_is_nothing _       = panic "nothing_is_nothing!"

lookupSpecId :: Id		-- *un*specialised Id
	     -> [Maybe UniType]	-- types to which it is to be specialised
	     -> Id		-- specialised Id

lookupSpecId unspec_id ty_maybes
  = case (getInfo (getIdInfo unspec_id)) of { SpecEnv spec_infos ->

    case (firstJust (map try spec_infos)) of
      Just id -> id
      Nothing -> error ("ERROR: There is some confusion about a value specialised to a type;\ndetails follow (and more info in the User's Guide):\n\t"++(ppShow 80 (ppr PprDebug unspec_id)))
    }
  where
    try (SpecInfo template_maybes _ id) 
	| and (zipWith same template_maybes ty_maybes)
	&& length template_maybes == length ty_maybes = Just id
	| otherwise 				      = Nothing

    same Nothing    Nothing    = True
    same (Just ty1) (Just ty2) = ty1 == ty2
    same _	    _	       = False

lookupSpecEnv :: SpecEnv
	      -> [UniType]
	      -> Maybe (Id,
			[UniType],
			Int)

lookupSpecEnv (SpecEnv []) _ = Nothing 	-- rather common case

lookupSpecEnv spec_env [] = Nothing	-- another common case
 
	-- This can happen even if there is a non-empty spec_env, because
	-- of eta reduction.  For example, we might have a defn
	--
	--	f = /\a -> \d -> g a d
	-- which gets transformed to
	--	f = g
	--
	-- Now g isn't applied to any arguments

lookupSpecEnv se@(SpecEnv spec_infos) spec_tys
  = select_match spec_infos
  where
    select_match []		-- no matching spec_infos
      = Nothing
    select_match (SpecInfo ty_maybes toss spec_id : rest)
      = case (match ty_maybes spec_tys) of
	  Nothing       -> select_match rest
	  Just tys_left -> select_next [(spec_id,tys_left,toss)] (length tys_left) toss rest

	-- Ambiguity can only arise as a result of specialisations with
	-- an explicit spec_id. The best match is deemed to be the match
	-- with least polymorphism i.e. has the least number of tys left.
	-- This is a non-critical approximation. The only type arguments
	-- where there may be some discretion is for non-overloaded boxed
	-- types. Unboxed types must be matched and we insist that we
	-- always specialise on overloaded types (and discard all the dicts).

    select_next best _ toss []
      =	case best of
	    [match] -> Just match	-- Unique best match 
	    ambig   -> pprPanic "Ambiguous Specialisation:\n"
				(ppAboves [ppStr "(check specialisations with explicit spec ids)",
					   ppCat (ppStr "between spec ids:" : 
						  map (ppr PprDebug) [id | (id, _, _) <- ambig]),
					   pp_stuff])

    select_next best tnum dnum (SpecInfo ty_maybes toss spec_id : rest)
      = ASSERT(dnum == toss)
	case (match ty_maybes spec_tys) of
	  Nothing       -> select_next best tnum dnum rest
	  Just tys_left ->
	     let tys_len = length tys_left in
	     case _tagCmp tnum tys_len of
	       _LT -> select_next [(spec_id,tys_left,toss)] tys_len dnum rest	-- better match
	       _EQ -> select_next ((spec_id,tys_left,toss):best) tnum dnum rest	-- equivalent match
	       _GT -> select_next best tnum dnum rest				-- worse match


    match [{-out of templates-}] [] = Just []

    match (Nothing:ty_maybes) (spec_ty:spec_tys)
      = case (isUnboxedDataType spec_ty) of
	  True  -> Nothing	-- Can only match boxed type against
				-- type argument which has not been
				-- specialised on
	  False -> case match ty_maybes spec_tys of
	             Nothing  -> Nothing
	             Just tys -> Just (spec_ty:tys)

    match (Just ty:ty_maybes) (spec_ty:spec_tys)
      = case (cmpUniType True{-properly-} ty spec_ty) of
	  EQ_   -> match ty_maybes spec_tys
	  other -> Nothing

    match [] _ = pprPanic "lookupSpecEnv1\n" pp_stuff
		 -- This is a Real Problem

    match _ [] = pprPanic "lookupSpecEnv2\n" pp_stuff
		 -- Partial eta abstraction might make this happen;
		 -- meanwhile let's leave in the check

    pp_stuff = ppAbove (pp_specs PprDebug True (\x->x) nullIdEnv se) (ppr PprDebug spec_tys)
\end{code}


\begin{code}
instance OptIdInfo SpecEnv where
    noInfo = nullSpecEnv

    getInfo (IdInfo _ _ spec _ _ _ _ _ _ _) = spec

    addInfo (IdInfo a b (SpecEnv old_spec) d e f g h i j) (SpecEnv new_spec)
	= IdInfo a b (SpecEnv (new_spec ++ old_spec)) d e f g h i j
	-- We *add* the new specialisation info rather than just replacing it
	-- so that we don't lose old specialisation details.

    ppInfo sty better_id_fn spec_env
      = pp_specs sty True better_id_fn nullIdEnv spec_env

pp_specs sty _ _ _ (SpecEnv [])  = pp_NONE
pp_specs sty print_spec_ids better_id_fn inline_env (SpecEnv specs)
  = ppBeside (ppPStr SLIT("_SPECIALISE_ ")) (pp_the_list [
       ppCat [ppLbrack, ppIntersperse pp'SP{-'-} (map pp_maybe ty_maybes), ppRbrack,
	      ppInt numds,
	      let
		 better_spec_id = better_id_fn spec_id
		 spec_id_info = getIdInfo better_spec_id
	      in
	      if not print_spec_ids || boringIdInfo spec_id_info then
		 ppNil
	      else
		 ppCat [ppChar '{',
			ppIdInfo sty better_spec_id True{-wrkr specs too!-} better_id_fn inline_env spec_id_info,
			ppChar '}']
	     ]
       | (SpecInfo ty_maybes numds spec_id) <- specs ])
  where
    pp_the_list [p]    = p
    pp_the_list (p:ps) = ppBesides [p, pp'SP{-'-}, pp_the_list ps]

    pp_maybe Nothing  = ifPprInterface sty pp_NONE
    pp_maybe (Just t) = pprParendUniType sty t
\end{code}

%************************************************************************
%*									*
\subsection[strictness-IdInfo]{Strictness info about an @Id@}
%*									*
%************************************************************************

We specify the strictness of a function by giving information about
each of the ``wrapper's'' arguments (see the description about
worker/wrapper-style transformations in the PJ/Launchbury paper on
unboxed types).

The list of @Demands@ specifies: (a)~the strictness properties
of a function's arguments; (b)~the {\em existence} of a ``worker''
version of the function; and (c)~the type signature of that worker (if
it exists); i.e. its calling convention.

\begin{code}
data StrictnessInfo
  = NoStrictnessInfo

  | BottomGuaranteed	-- This Id guarantees never to return;
			-- it is bottom regardless of its arguments.
			-- Useful for "error" and other disguised
			-- variants thereof.

  | StrictnessInfo	[Demand]	-- the main stuff; see below.
			(Maybe Id)	-- worker's Id, if applicable.
\end{code}

This type is also actually used in the strictness analyser:
\begin{code}
data Demand
  = WwLazy		-- Argument is lazy as far as we know
	MaybeAbsent	-- (does not imply worker's existence [etc]).
			-- If MaybeAbsent == True, then it is
			-- *definitely* lazy.  (NB: Absence implies
			-- a worker...)

  | WwStrict		-- Argument is strict but that's all we know
			-- (does not imply worker's existence or any
			-- calling-convention magic)

  | WwUnpack		-- Argument is strict & a single-constructor
	[Demand]	-- type; its constituent parts (whose StrictInfos
			-- are in the list) should be passed
			-- as arguments to the worker.

  | WwPrim		-- Argument is of primitive type, therefore
			-- strict; doesn't imply existence of a worker;
			-- argument should be passed as is to worker.

  | WwEnum		-- Argument is strict & an enumeration type;
			-- an Int# representing the tag (start counting
			-- at zero) should be passed to the worker.
  deriving (Eq, Ord)
      -- we need Eq/Ord to cross-chk update infos in interfaces

type MaybeAbsent = Bool -- True <=> not even used

-- versions that don't worry about Absence:
wwLazy	    = WwLazy 	  False
wwStrict    = WwStrict
wwUnpack xs = WwUnpack xs
wwPrim	    = WwPrim
wwEnum	    = WwEnum
\end{code}

\begin{code}
mkStrictnessInfo :: [Demand] -> Maybe Id -> StrictnessInfo

mkStrictnessInfo [] _    = NoStrictnessInfo
mkStrictnessInfo xs wrkr = StrictnessInfo xs wrkr

mkBottomStrictnessInfo = BottomGuaranteed

bottomIsGuaranteed BottomGuaranteed = True
bottomIsGuaranteed other    	    = False

getWrapperArgTypeCategories
	:: UniType		-- wrapper's type
	-> StrictnessInfo	-- strictness info about its args
	-> Maybe String

getWrapperArgTypeCategories _ NoStrictnessInfo	    = Nothing
getWrapperArgTypeCategories _ BottomGuaranteed
  = trace "getWrapperArgTypeCategories:BottomGuaranteed!" Nothing  -- wrong
getWrapperArgTypeCategories _ (StrictnessInfo [] _) = Nothing

getWrapperArgTypeCategories ty (StrictnessInfo arg_info _)
  = Just (mkWrapperArgTypeCategories ty arg_info)

workerExists :: StrictnessInfo -> Bool
workerExists (StrictnessInfo _ (Just worker_id)) = True
workerExists other				 = False

getWorkerId :: StrictnessInfo -> Id

getWorkerId (StrictnessInfo _ (Just worker_id)) = worker_id
#ifdef DEBUG
getWorkerId junk = pprPanic "getWorkerId: " (ppInfo PprDebug (\x->x) junk)
#endif
\end{code}

\begin{code}
isStrict :: Demand -> Bool

isStrict WwStrict	= True
isStrict (WwUnpack _)	= True
isStrict WwPrim		= True
isStrict WwEnum		= True
isStrict _		= False

{- UNUSED:
absentArg :: Demand -> Bool

absentArg (WwLazy absentp) = absentp
absentArg other		   = False
-}

nonAbsentArgs :: [Demand] -> Int

nonAbsentArgs cmpts
  = foldr tick_non 0 cmpts
  where
    tick_non (WwLazy True) acc = acc
    tick_non other	   acc = acc + 1

all_present_WwLazies :: [Demand] -> Bool
all_present_WwLazies infos
  = and (map is_L infos) 
  where
    is_L (WwLazy False) = True	-- False <=> "Absent" args do *not* count!
    is_L _	        = False	-- (as they imply a worker)
\end{code}

WDP 95/04: It is no longer enough to look at a list of @Demands@ for
an ``Unpack'' or an ``Absent'' and declare a worker.  We also have to
check that @mAX_WORKER_ARGS@ hasn't been exceeded.  Therefore,
@indicatesWorker@ mirrors the process used in @mk_ww_arg_processing@
in \tr{WwLib.lhs}.  A worker is ``indicated'' when we hit an Unpack
or an Absent {\em that we accept}.
\begin{code}
indicatesWorker :: [Demand] -> Bool

indicatesWorker dems
  = fake_mk_ww (mAX_WORKER_ARGS - nonAbsentArgs dems) dems
  where
    fake_mk_ww _ [] = False
    fake_mk_ww _ (WwLazy True : _) = True -- we accepted an Absent
    fake_mk_ww extra_args (WwUnpack cmpnts : dems)
      | extra_args_now > 0 = True -- we accepted an Unpack
      where
	extra_args_now = extra_args + 1 - nonAbsentArgs cmpnts

    fake_mk_ww extra_args (_ : dems)
      = fake_mk_ww extra_args dems
\end{code}

\begin{code}
mkWrapperArgTypeCategories
	:: UniType		-- wrapper's type
	-> [Demand]	-- info about its arguments
	-> String		-- a string saying lots about the args

mkWrapperArgTypeCategories wrapper_ty wrap_info
  = case (splitTypeWithDictsAsArgs wrapper_ty) of { (_,arg_tys,_) ->
    map do_one (wrap_info `zip` (map showTypeCategory arg_tys))
    }
  where
    -- ToDo: this needs FIXING UP (it was a hack anyway...)
    do_one (WwPrim, _) = 'P'
    do_one (WwEnum, _) = 'E'
    do_one (WwStrict, arg_ty_char) = arg_ty_char
    do_one (WwUnpack _, arg_ty_char)
      = if arg_ty_char `elem` "CIJFDTS"
	then toLower arg_ty_char
	else if arg_ty_char == '+' then 't'
	else trace ("mkWrapp..:funny char:"++[arg_ty_char]) '-'
    do_one (other_wrap_info, _) = '-'
\end{code}

Whether a worker exists depends on whether the worker has an
absent argument, a @WwUnpack@ argument, (or @WwEnum@ ToDo???) arguments.

If a @WwUnpack@ argument is for an {\em abstract} type (or one that
will be abstract outside this module), which might happen for an
imported function, then we can't (or don't want to...) unpack the arg
as the worker requires.  Hence we have to give up altogether, and call
the wrapper only; so under these circumstances we return \tr{False}.

\begin{code}
instance Text Demand where
    readList str = read_em [{-acc-}] str
      where
	read_em acc []		= [(reverse acc, "")]
	-- lower case indicates absence...
	read_em acc ('L' : xs)	= read_em (WwLazy   False : acc) xs
	read_em acc ('A' : xs)	= read_em (WwLazy   True  : acc) xs
	read_em acc ('S' : xs)	= read_em (WwStrict : acc) xs
	read_em acc ('P' : xs)	= read_em (WwPrim : acc) xs
	read_em acc ('E' : xs)	= read_em (WwEnum : acc) xs

	read_em acc (')' : xs)	= [(reverse acc, xs)]
	read_em acc ( 'U'  : '(' : xs)
	  = case (read_em [] xs) of
	      [(stuff, rest)] -> read_em (WwUnpack stuff : acc) rest
	      _ -> panic ("Text.Demand:"++str++"::"++xs)

	read_em acc other = panic ("IdInfo.readem:"++other)

    showList wrap_args rest = (concat (map show1 wrap_args)) ++ rest
      where
	show1 (WwLazy False) = "L"
	show1 (WwLazy True)  = "A"
	show1 WwStrict	     = "S"
	show1 WwPrim	     = "P"
	show1 WwEnum	     = "E"
	show1 (WwUnpack args)= "U(" ++ (concat (map show1 args)) ++ ")"

instance Outputable Demand where
    ppr sty si = ppStr (showList [si] "")

instance OptIdInfo StrictnessInfo where
    noInfo = NoStrictnessInfo

    getInfo (IdInfo _ _ _ strict _ _ _ _ _ _) = strict

    addInfo id_info NoStrictnessInfo = id_info
    addInfo (IdInfo a b d _ e f g h i j) strict = IdInfo a b d strict e f g h i j

    ppInfo sty better_id_fn strictness_info
      = pp_strictness sty Nothing better_id_fn nullIdEnv strictness_info
\end{code}

We'll omit the worker info if the thing has an explicit unfolding
already.
\begin{code}
pp_strictness sty _ _ _ NoStrictnessInfo = ifPprInterface sty pp_NONE

pp_strictness sty _ _ _ BottomGuaranteed = ppPStr SLIT("_S_ _!_")

pp_strictness sty for_this_id_maybe better_id_fn inline_env
    info@(StrictnessInfo wrapper_args wrkr_maybe)
  = let
	(have_wrkr, wrkr_id) = case wrkr_maybe of
				 Nothing -> (False, panic "ppInfo(Strictness)")
				 Just xx -> (True,  xx)

	wrkr_to_print   = better_id_fn wrkr_id
	wrkr_info	= getIdInfo   wrkr_to_print

	-- if we aren't going to be able to *read* the strictness info
	-- in TcPragmas, we need not even print it.
	wrapper_args_to_use
	  = if not (indicatesWorker wrapper_args) then
		wrapper_args -- no worker/wrappering in any case
	    else
		case for_this_id_maybe of
		  Nothing -> wrapper_args
		  Just id -> if externallyVisibleId id
			     && (unfoldingUnfriendlyId id || not have_wrkr) then
				-- pprTrace "IdInfo: unworker-ising:" (ppCat [ppr PprDebug have_wrkr, ppr PprDebug id]) (
				map un_workerise wrapper_args
				-- )
			     else
				wrapper_args

	id_is_worker
	  = case for_this_id_maybe of
	      Nothing -> False
	      Just id -> isWorkerId id

	am_printing_iface
	  = case sty of
	      PprInterface _ -> True
	      _ -> False

	pp_basic_info
	  = ppBesides [ppStr "_S_ \"",
		ppStr (showList wrapper_args_to_use ""), ppStr "\""]

	pp_with_worker
	  = ppBesides [ ppSP, ppChar '{',
			ppIdInfo sty wrkr_to_print True{-wrkr specs, yes!-} better_id_fn inline_env wrkr_info,
			ppChar '}' ]
    in
    if all_present_WwLazies wrapper_args_to_use then -- too boring
	ifPprInterface sty pp_NONE

    else if id_is_worker && am_printing_iface then
    	pp_NONE -- we don't put worker strictness in interfaces
		-- (it can be deduced)

    else if not (indicatesWorker wrapper_args_to_use)
	 || not have_wrkr
	 || boringIdInfo wrkr_info then
	ppBeside pp_basic_info ppNil
    else
	ppBeside pp_basic_info pp_with_worker
  where
    un_workerise (WwLazy   _) = WwLazy False -- avoid absence
    un_workerise (WwUnpack _) = WwStrict
    un_workerise other	      = other
\end{code}

%************************************************************************
%*									*
\subsection[unfolding-IdInfo]{Unfolding info about an @Id@}
%*									*
%************************************************************************

\begin{code}
mkUnfolding	 :: UnfoldingGuidance -> PlainCoreExpr -> UnfoldingDetails
iWantToBeINLINEd :: UnfoldingGuidance -> UnfoldingDetails
mkMagicUnfolding :: FAST_STRING -> UnfoldingDetails

mkUnfolding guide expr
  = GeneralForm False (mkFormSummary NoStrictnessInfo expr) 
	(BSCC("OccurExpr") occurAnalyseGlobalExpr expr ESCC)
	guide
\end{code}

\begin{code}
iWantToBeINLINEd guide = IWantToBeINLINEd guide

mkMagicUnfolding tag  = MagicForm tag (mkMagicUnfoldingFun tag)

\end{code}

\begin{code}
noInfo_UF = NoUnfoldingDetails

getInfo_UF (IdInfo _ _ _ _ unfolding _ _ _ _ _)
  = case unfolding of
      NoUnfoldingDetails 	     -> NoUnfoldingDetails
      GeneralForm _ _ _ BadUnfolding -> NoUnfoldingDetails
      unfold_ok 		     -> unfold_ok

-- getInfo_UF ensures that any BadUnfoldings are never returned
-- We had to delay the test required in TcPragmas until now due
-- to strictness constraints in TcPragmas

addInfo_UF id_info@(IdInfo a b c d e f g h i j) NoUnfoldingDetails = id_info
addInfo_UF (IdInfo a b d e xxx f g h i j) uf = IdInfo a b d e uf f g h i j

\end{code}

\begin{code}
pp_unfolding sty for_this_id inline_env uf_details
  = case (lookupIdEnv inline_env for_this_id) of
      Nothing -> pp uf_details
      Just dt -> pp dt
  where
    pp NoUnfoldingDetails = pp_NONE

    pp (IWantToBeINLINEd guide) -- not in interfaces
      = if isWrapperId for_this_id
        then pp_NONE -- wrapper: don't complain or mutter
	else ppCat [ppStr "{-IWantToBeINLINEd", ppr sty guide, ppStr "-}", pp_NONE]

    pp (MagicForm tag _)
      = ppCat [ppPStr SLIT("_MF_"), ppPStr tag]

    pp (GeneralForm _ _ _ BadUnfolding) = pp_NONE

    pp (GeneralForm _ _ template guide)
      = let
	    untagged = unTagBinders template
	in
    	if untagged `isWrapperFor` for_this_id
	then -- pprTrace "IdInfo:isWrapperFor:" (ppAbove (ppr PprDebug for_this_id) (ppr PprDebug untagged))
	     pp_NONE
	else ppCat [ppPStr SLIT("_F_"), ppr sty guide, pprCoreUnfolding untagged]

\end{code}

%************************************************************************
%*									*
\subsection[update-IdInfo]{Update-analysis info about an @Id@}
%*									*
%************************************************************************

\begin{code}
data UpdateInfo
  = NoUpdateInfo
  | SomeUpdateInfo UpdateSpec
  deriving (Eq, Ord)
      -- we need Eq/Ord to cross-chk update infos in interfaces

-- the form in which we pass update-analysis info between modules:
type UpdateSpec = [Int]
\end{code}

\begin{code}
mkUpdateInfo = SomeUpdateInfo

updateInfoMaybe NoUpdateInfo	    = Nothing
updateInfoMaybe (SomeUpdateInfo []) = Nothing
updateInfoMaybe (SomeUpdateInfo	 u) = Just u
\end{code}

Text instance so that the update annotations can be read in.

\begin{code}
instance Text UpdateInfo where
    readsPrec p s | null s    = panic "IdInfo: empty update pragma?!"
		  | otherwise = [(SomeUpdateInfo (map ok_digit s),"")]
      where
	ok_digit c | c >= '0' && c <= '2' = ord c - ord '0'
		   | otherwise = panic "IdInfo: not a digit while reading update pragma"

instance OptIdInfo UpdateInfo where
    noInfo = NoUpdateInfo

    getInfo (IdInfo _ _ _ _ _ update _ _ _ _) = update

    addInfo id_info NoUpdateInfo = id_info
    addInfo (IdInfo a b d e f _ g h i j) upd_info = IdInfo a b d e f upd_info g h i j

    ppInfo sty better_id_fn NoUpdateInfo	= ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn (SomeUpdateInfo [])	= ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn (SomeUpdateInfo spec)
      = ppBeside (ppPStr SLIT("_U_ ")) (ppBesides (map ppInt spec))
\end{code}

%************************************************************************
%*                                                                    *
\subsection[deforest-IdInfo]{Deforestation info about an @Id@}
%*                                                                    *
%************************************************************************

The deforest info says whether this Id is to be unfolded during
deforestation.  Therefore, when the deforest pragma is true, we must
also have the unfolding information available for this Id.

\begin{code}
data DeforestInfo
  = Don'tDeforest                     -- just a bool, might extend this
  | DoDeforest                                -- later.
  -- deriving (Eq, Ord)
\end{code}

\begin{code}
instance OptIdInfo DeforestInfo where
    noInfo = Don'tDeforest

    getInfo (IdInfo _ _ _ _ _ _ deforest _ _ _) = deforest

    addInfo id_info Don'tDeforest = id_info
    addInfo (IdInfo a b d e f g _ h i j) deforest = 
    	IdInfo a b d e f g deforest h i j

    ppInfo sty better_id_fn Don'tDeforest
      = ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn DoDeforest
      = ppPStr SLIT("_DEFOREST_")
\end{code}

%************************************************************************
%*									*
\subsection[argUsage-IdInfo]{Argument Usage info about an @Id@}
%*									*
%************************************************************************

\begin{code}
data ArgUsageInfo
  = NoArgUsageInfo
  | SomeArgUsageInfo ArgUsageType
  -- ??? deriving (Eq, Ord)

data ArgUsage = ArgUsage Int	-- number of arguments (is linear!)
	      | UnknownArgUsage
type ArgUsageType  = [ArgUsage]		-- c_1 -> ... -> BLOB
\end{code}

\begin{code}
mkArgUsageInfo = SomeArgUsageInfo

getArgUsage :: ArgUsageInfo -> ArgUsageType
getArgUsage NoArgUsageInfo	    = []
getArgUsage (SomeArgUsageInfo u)  = u
\end{code}

\begin{code}
instance OptIdInfo ArgUsageInfo where
    noInfo = NoArgUsageInfo

    getInfo (IdInfo _ _ _ _ _  _ _ au _ _) = au

    addInfo id_info NoArgUsageInfo = id_info
    addInfo (IdInfo a b d e f g h _ i j) au_info = IdInfo a b d e f g h au_info i j

    ppInfo sty better_id_fn NoArgUsageInfo	  = ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn (SomeArgUsageInfo []) = ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn (SomeArgUsageInfo aut)
      = ppBeside (ppPStr SLIT("_L_ ")) (ppArgUsageType aut)


ppArgUsage (ArgUsage n)      = ppInt n
ppArgUsage (UnknownArgUsage) = ppChar '-'

ppArgUsageType aut = ppBesides 
	[ ppChar '"' ,
	  ppIntersperse ppComma (map ppArgUsage aut),
	  ppChar '"' ]
\end{code}
%************************************************************************
%*									*
\subsection[FBType-IdInfo]{Type of an expression through Foldr/build's eyes}
%*									*
%************************************************************************

\begin{code}
data FBTypeInfo
  = NoFBTypeInfo
  | SomeFBTypeInfo FBType
  -- ??? deriving (Eq, Ord)

data FBType = FBType [FBConsum] FBProd deriving (Eq)

data FBConsum = FBGoodConsum | FBBadConsum deriving(Eq)
data FBProd = FBGoodProd | FBBadProd deriving(Eq)
\end{code}

\begin{code}
mkFBTypeInfo = SomeFBTypeInfo

getFBType :: FBTypeInfo -> Maybe FBType
getFBType NoFBTypeInfo	      = Nothing
getFBType (SomeFBTypeInfo u)  = Just u
\end{code}

\begin{code}
instance OptIdInfo FBTypeInfo where
    noInfo = NoFBTypeInfo

    getInfo (IdInfo _ _ _ _ _ _ _ _ fb _) = fb

    addInfo id_info NoFBTypeInfo = id_info
    addInfo (IdInfo a b d e f g h i _ j) fb_info = IdInfo a b d e f g h i fb_info j

    ppInfo (PprInterface _) better_id_fn NoFBTypeInfo = ppNil
    ppInfo sty better_id_fn NoFBTypeInfo	= ifPprInterface sty pp_NONE
    ppInfo sty better_id_fn (SomeFBTypeInfo (FBType cons prod))
      = ppBeside (ppPStr SLIT("_F_ ")) (ppFBType cons prod)

--ppFBType (FBType n)      = ppBesides [ppInt n]
--ppFBType (UnknownFBType) = ppBesides [ppStr "-"]
--

ppFBType cons prod = ppBesides 
	([ ppChar '"' ] ++ map ppCons cons ++ [ ppChar '-', ppProd prod, ppChar '"' ])
  where
	ppCons FBGoodConsum = ppChar 'G'
	ppCons FBBadConsum  = ppChar 'B'
	ppProd FBGoodProd   = ppChar 'G'
	ppProd FBBadProd    = ppChar 'B'
\end{code}