summaryrefslogtreecommitdiff
path: root/ghc/compiler/absCSyn/PprAbsC.lhs
blob: e73bf1576f5e0090df3150e8a8d8de0899a024dc (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
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
%
% (c) The GRASP/AQUA Project, Glasgow University, 1992-1996
%
%************************************************************************
%*									*
\section[PprAbsC]{Pretty-printing Abstract~C}
%*									*
%************************************************************************

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

module PprAbsC (
	writeRealC,
	dumpRealC
#ifdef DEBUG
	, pprAmode -- otherwise, not exported
#endif
    ) where

IMP_Ubiq(){-uitous-}
IMPORT_DELOOPER(AbsCLoop)		-- break its dependence on ClosureInfo
IMPORT_1_3(IO(Handle))
IMPORT_1_3(Char(isDigit,isPrint))
IMPORT_1_3(GHCbase(Addr(..)) ) -- to see innards

import AbsCSyn

import AbsCUtils	( getAmodeRep, nonemptyAbsC,
			  mixedPtrLocn, mixedTypeLocn
			)
import Constants	( spARelToInt, spBRelToInt, mIN_UPD_SIZE )
import CLabel		( externallyVisibleCLabel, mkErrorStdEntryLabel,
			  isReadOnly, needsCDecl, pprCLabel,
			  CLabel{-instance Ord-}
			)
import CmdLineOpts	( opt_SccProfilingOn )
import CostCentre	( uppCostCentre, uppCostCentreDecl )
import Costs		( costs, addrModeCosts, CostRes(..), Side(..) )
import CStrings		( stringToC )
import FiniteMap	( addToFM, emptyFM, lookupFM, FiniteMap )
import HeapOffs		( isZeroOff, subOff, pprHeapOffset )
import Literal		( showLiteral, Literal(..) )
import Maybes		( maybeToBool, catMaybes )
import PprStyle		( PprStyle(..) )
import Pretty		( prettyToUn )
import PrimOp		( primOpNeedsWrapper, pprPrimOp, PrimOp(..) )
import PrimRep		( isFloatingRep, showPrimRep, PrimRep(..) )
import SMRep		( getSMInfoStr, getSMInitHdrStr, getSMUpdInplaceHdrStr,
			  isConstantRep, isSpecRep, isPhantomRep
			)
import Unique		( pprUnique, Unique{-instance NamedThing-} )
import UniqSet		( emptyUniqSet, elementOfUniqSet,
			  addOneToUniqSet, SYN_IE(UniqSet)
			)
import Unpretty		-- ********** NOTE **********
import Util		( nOfThem, panic, assertPanic )

infixr 9 `thenTE`
\end{code}

For spitting out the costs of an abstract~C expression, @writeRealC@
now not only prints the C~code of the @absC@ arg but also adds a macro
call to a cost evaluation function @GRAN_EXEC@. For that,
@pprAbsC@ has a new ``costs'' argument.  %% HWL

\begin{code}
writeRealC :: Handle -> AbstractC -> IO ()

writeRealC handle absC
  = uppPutStr handle 80 (
      uppAbove (pprAbsC PprForC absC (costs absC)) (uppChar '\n')
    )

dumpRealC :: AbstractC -> String

dumpRealC absC
  = uppShow 80 (
      uppAbove (pprAbsC PprForC absC (costs absC)) (uppChar '\n')
    )
\end{code}

This emits the macro,  which is used in GrAnSim  to compute the total costs
from a cost 5 tuple. %%  HWL

\begin{code}
emitMacro :: CostRes -> Unpretty

-- ToDo: Check a compile time flag to decide whether a macro should be emitted
emitMacro (Cost (i,b,l,s,f))
  = uppBesides [ uppStr "GRAN_EXEC(",
                          uppInt i, uppComma, uppInt b, uppComma, uppInt l, uppComma,
	                  uppInt s, uppComma, uppInt f, pp_paren_semi ]
\end{code}

\begin{code}
pp_paren_semi = uppStr ");"

-- ---------------------------------------------------------------------------
-- New type: Now pprAbsC also takes the costs for evaluating the Abstract C
-- code as an argument (that's needed when spitting out the GRAN_EXEC macro
-- which must be done before the return i.e. inside absC code)   HWL
-- ---------------------------------------------------------------------------

pprAbsC :: PprStyle -> AbstractC -> CostRes -> Unpretty

pprAbsC sty AbsCNop _ = uppNil
pprAbsC sty (AbsCStmts s1 s2) c = uppAbove (pprAbsC sty s1 c) (pprAbsC sty s2 c)

pprAbsC sty (CClosureUpdInfo info) c
  = pprAbsC sty info c

pprAbsC sty (CAssign dest src) _ = pprAssign sty (getAmodeRep dest) dest src

pprAbsC sty (CJump target) c
  = uppAbove (uppBesides [emitMacro c {-WDP:, uppStr "/* <--++  CJump */"-} ])
	     (uppBesides [ uppStr "JMP_(", pprAmode sty target, pp_paren_semi ])

pprAbsC sty (CFallThrough target) c
  = uppAbove (uppBesides [emitMacro c {-WDP:, uppStr "/* <--++  CFallThrough */"-} ])
	     (uppBesides [ uppStr "JMP_(", pprAmode sty target, pp_paren_semi ])

-- --------------------------------------------------------------------------
-- Spit out GRAN_EXEC macro immediately before the return                 HWL

pprAbsC sty (CReturn am return_info)  c
  = uppAbove (uppBesides [emitMacro c {-WDP:, uppStr "/* <----  CReturn */"-} ])
	     (uppBesides [uppStr "JMP_(", target, pp_paren_semi ])
  where
   target = case return_info of
    	DirectReturn -> uppBesides [uppStr "DIRECT(", pprAmode sty am, uppRparen]
	DynamicVectoredReturn am' -> mk_vector (pprAmode sty am')
	StaticVectoredReturn n -> mk_vector (uppInt n)	-- Always positive
   mk_vector x = uppBesides [uppLparen, pprAmode sty am, uppStr ")[RVREL(", x, uppStr ")]"]

pprAbsC sty (CSplitMarker) _ = uppPStr SLIT("/* SPLIT */")

-- we optimise various degenerate cases of CSwitches.

-- --------------------------------------------------------------------------
-- Assume: CSwitch is also end of basic block
--         costs function yields nullCosts for whole switch
--         ==> inherited costs c are those of basic block up to switch
--         ==> inherit c + costs for the corresponding branch
--                                                                       HWL
-- --------------------------------------------------------------------------

pprAbsC sty (CSwitch discrim [] deflt) c
  = pprAbsC sty deflt (c + costs deflt)
    -- Empty alternative list => no costs for discrim as nothing cond. here HWL

pprAbsC sty (CSwitch discrim [(tag,alt_code)] deflt) c -- only one alt
  = case (nonemptyAbsC deflt) of
      Nothing ->		-- one alt and no default
		 pprAbsC sty alt_code (c + costs alt_code)
		 -- Nothing conditional in here either  HWL

      Just dc ->		-- make it an "if"
		 do_if_stmt sty discrim tag alt_code dc c

pprAbsC sty (CSwitch discrim [(tag1@(MachInt i1 _), alt_code1),
			      (tag2@(MachInt i2 _), alt_code2)] deflt) c
  | empty_deflt && ((i1 == 0 && i2 == 1) || (i1 == 1 && i2 == 0))
  = if (i1 == 0) then
	do_if_stmt sty discrim tag1 alt_code1 alt_code2 c
    else
	do_if_stmt sty discrim tag2 alt_code2 alt_code1 c
  where
    empty_deflt = not (maybeToBool (nonemptyAbsC deflt))

pprAbsC sty (CSwitch discrim alts deflt) c -- general case
  | isFloatingRep (getAmodeRep discrim)
    = pprAbsC sty (foldr ( \ a -> CSwitch discrim [a]) deflt alts) c
  | otherwise
    = uppAboves [
	uppBesides [uppStr "switch (", pp_discrim, uppStr ") {"],
	uppNest 2 (uppAboves (map (ppr_alt sty) alts)),
	(case (nonemptyAbsC deflt) of
	   Nothing -> uppNil
	   Just dc ->
	    uppNest 2 (uppAboves [uppPStr SLIT("default:"),
				  pprAbsC sty dc (c + switch_head_cost
						    + costs dc),
				  uppPStr SLIT("break;")])),
	uppChar '}' ]
  where
    pp_discrim
      = pprAmode sty discrim

    ppr_alt sty (lit, absC)
      = uppAboves [ uppBesides [uppPStr SLIT("case "), pprBasicLit sty lit, uppChar ':'],
		   uppNest 2 (uppAbove (pprAbsC sty absC (c + switch_head_cost + costs absC))
				       (uppPStr SLIT("break;"))) ]

    -- Costs for addressing header of switch and cond. branching        -- HWL
    switch_head_cost = addrModeCosts discrim Rhs + (Cost (0, 1, 0, 0, 0))

pprAbsC sty stmt@(COpStmt results op@(CCallOp _ _ _ _ _) args liveness_mask vol_regs) _
  = pprCCall sty op args results liveness_mask vol_regs

pprAbsC sty stmt@(COpStmt results op args liveness_mask vol_regs) _
  = let
	non_void_args = grab_non_void_amodes args
	non_void_results = grab_non_void_amodes results
	-- if just one result, we print in the obvious "assignment" style;
	-- if 0 or many results, we emit a macro call, w/ the results
	-- followed by the arguments.  The macro presumably knows which
	-- are which :-)

    	the_op = ppr_op_call non_void_results non_void_args
		-- liveness mask is *in* the non_void_args
    in
    case (ppr_vol_regs sty vol_regs) of { (pp_saves, pp_restores) ->
    if primOpNeedsWrapper op then
    	uppAboves [  pp_saves,
    	    	    the_op,
    	    	    pp_restores
    	    	 ]
    else
    	the_op
    }
  where
    ppr_op_call results args
      = uppBesides [ prettyToUn (pprPrimOp sty op), uppLparen,
	uppIntersperse uppComma (map ppr_op_result results),
	if null results || null args then uppNil else uppComma,
	uppIntersperse uppComma (map (pprAmode sty) args),
	pp_paren_semi ]

    ppr_op_result r = ppr_amode sty r
      -- primop macros do their own casting of result;
      -- hence we can toss the provided cast...

pprAbsC sty (CSimultaneous abs_c) c
  = uppBesides [uppStr "{{", pprAbsC sty abs_c c, uppStr "}}"]

pprAbsC sty stmt@(CMacroStmt macro as) _
  = uppBesides [uppStr (show macro), uppLparen,
	uppIntersperse uppComma (map (ppr_amode sty) as),pp_paren_semi] -- no casting
pprAbsC sty stmt@(CCallProfCtrMacro op as) _
  = uppBesides [uppPStr op, uppLparen,
	uppIntersperse uppComma (map (ppr_amode sty) as),pp_paren_semi]
pprAbsC sty stmt@(CCallProfCCMacro op as) _
  = uppBesides [uppPStr op, uppLparen,
	uppIntersperse uppComma (map (ppr_amode sty) as),pp_paren_semi]

pprAbsC sty (CCodeBlock label abs_C) _
  = ASSERT( maybeToBool(nonemptyAbsC abs_C) )
    case (pprTempAndExternDecls abs_C) of { (pp_temps, pp_exts) ->
    uppAboves [
	uppBesides [uppStr (if (externallyVisibleCLabel label)
			  then "FN_("	-- abbreviations to save on output
			  else "IFN_("),
		   pprCLabel sty label, uppStr ") {"],
	case sty of
	  PprForC -> uppAbove pp_exts pp_temps
	  _ -> uppNil,
	uppNest 8 (uppPStr SLIT("FB_")),
	uppNest 8 (pprAbsC sty abs_C (costs abs_C)),
	uppNest 8 (uppPStr SLIT("FE_")),
	uppChar '}' ]
    }

pprAbsC sty (CInitHdr cl_info reg_rel cost_centre inplace_upd) _
  = uppBesides [ pp_init_hdr, uppStr "_HDR(",
		ppr_amode sty (CAddr reg_rel), uppComma,
		pprCLabel sty info_lbl, uppComma,
		if_profiling sty (pprAmode sty cost_centre), uppComma,
		pprHeapOffset sty size, uppComma, uppInt ptr_wds, pp_paren_semi ]
  where
    info_lbl	= infoTableLabelFromCI cl_info
    sm_rep	= closureSMRep	   cl_info
    size	= closureSizeWithoutFixedHdr cl_info
    ptr_wds	= closurePtrsSize  cl_info

    pp_init_hdr = uppStr (if inplace_upd then
			    getSMUpdInplaceHdrStr sm_rep
		  	else
			    getSMInitHdrStr sm_rep)

pprAbsC sty stmt@(CStaticClosure closure_lbl cl_info cost_centre amodes) _
  = case (pprTempAndExternDecls stmt) of { (_, pp_exts) ->
    uppAboves [
	case sty of
	  PprForC -> pp_exts
	  _ -> uppNil,
	uppBesides [
		uppStr "SET_STATIC_HDR(",
		pprCLabel sty closure_lbl,			uppComma,
		pprCLabel sty info_lbl,				uppComma,
		if_profiling sty (pprAmode sty cost_centre),	uppComma,
		ppLocalness closure_lbl,			uppComma,
		ppLocalnessMacro False{-for data-} info_lbl,
		uppChar ')'
		],
	uppNest 2 (uppBesides (map (ppr_item sty) amodes)),
	uppNest 2 (uppBesides (map (ppr_item sty) padding_wds)),
	uppStr "};" ]
    }
  where
    info_lbl = infoTableLabelFromCI cl_info

    ppr_item sty item
      = if getAmodeRep item == VoidRep
	then uppStr ", (W_) 0" -- might not even need this...
	else uppBeside (uppStr ", (W_)") (ppr_amode sty item)

    padding_wds =
	if not (closureUpdReqd cl_info) then
	    []
    	else
	    case (max 0 (mIN_UPD_SIZE - length amodes)) of { still_needed ->
	    nOfThem still_needed (mkIntCLit 0) } -- a bunch of 0s

{-
   STATIC_INIT_HDR(c,i,localness) blows into:
	localness W_ c_closure [] = { i_info, extra_fixed_wd<1..n>

   then *NO VarHdr STUFF FOR STATIC*...

   then the amodes are dropped in...
	,a1 ,a2 ... ,aN
   then a close brace:
	};
-}

pprAbsC sty stmt@(CClosureInfoAndCode cl_info slow maybe_fast upd cl_descr liveness) _
  = uppAboves [
	uppBesides [
	    pp_info_rep,
	    uppStr "_ITBL(",
	    pprCLabel sty info_lbl,			uppComma,

		-- CONST_ITBL needs an extra label for
		-- the static version of the object.
	    if isConstantRep sm_rep
	    then uppBeside (pprCLabel sty (closureLabelFromCI cl_info)) uppComma
	    else uppNil,

	    pprCLabel sty slow_lbl,	uppComma,
    	    pprAmode sty upd,		uppComma,
	    uppInt liveness,		uppComma,

	    pp_tag,			uppComma,
	    pp_size, 			uppComma,
	    pp_ptr_wds,			uppComma,

	    ppLocalness info_lbl,				uppComma,
	    ppLocalnessMacro True{-function-} slow_lbl,		uppComma,

	    if is_selector
	    then uppBeside (uppInt select_word_i) uppComma
	    else uppNil,

	    if_profiling sty pp_kind, uppComma,
	    if_profiling sty pp_descr, uppComma,
	    if_profiling sty pp_type,
	    uppStr ");"
	],
	pp_slow,
	case maybe_fast of
	    Nothing -> uppNil
	    Just fast -> let stuff = CCodeBlock fast_lbl fast in
			 pprAbsC sty stuff (costs stuff)
    ]
  where
    info_lbl	= infoTableLabelFromCI cl_info
    fast_lbl    = fastLabelFromCI cl_info
    sm_rep	= closureSMRep	  cl_info

    (slow_lbl, pp_slow)
      = case (nonemptyAbsC slow) of
	  Nothing -> (mkErrorStdEntryLabel, uppNil)
	  Just xx -> (entryLabelFromCI cl_info,
		       let stuff = CCodeBlock slow_lbl xx in
		       pprAbsC sty stuff (costs stuff))

    maybe_selector = maybeSelectorInfo cl_info
    is_selector = maybeToBool maybe_selector
    (Just (_, select_word_i)) = maybe_selector

    pp_info_rep	    -- special stuff if it's a selector; otherwise, just the SMrep
      = uppStr (if is_selector then "SELECT" else (getSMInfoStr sm_rep))

    pp_tag = uppInt (closureSemiTag cl_info)

    is_phantom = isPhantomRep sm_rep

    pp_size = if isSpecRep sm_rep then	-- exploiting: SPEC_VHS == 0 (always)
		 uppInt (closureNonHdrSize cl_info)

	      else if is_phantom then	-- do not have sizes for these
		 uppNil
	      else
		 pprHeapOffset sty (closureSizeWithoutFixedHdr cl_info)

    pp_ptr_wds	= if is_phantom then
		     uppNil
		  else
		     uppInt (closurePtrsSize cl_info)

    pp_kind  = uppStr (closureKind cl_info)
    pp_descr = uppBesides [uppChar '"', uppStr (stringToC cl_descr), uppChar '"']
    pp_type  = uppBesides [uppChar '"', uppStr (stringToC (closureTypeDescr cl_info)), uppChar '"']

pprAbsC sty (CRetVector lbl maybes deflt) c
  = uppAboves [ uppStr "{ // CRetVector (lbl????)",
	       uppNest 8 (uppSep (map (ppr_maybe_amode sty) maybes)),
	       uppStr "} /*default=*/ {", pprAbsC sty deflt c,
	       uppStr "}"]
  where
    ppr_maybe_amode sty Nothing  = uppPStr SLIT("/*default*/")
    ppr_maybe_amode sty (Just a) = pprAmode sty a

pprAbsC sty stmt@(CRetUnVector label amode) _
  = uppBesides [uppStr "UNVECTBL(", pp_static, uppComma, pprCLabel sty label, uppComma,
	    pprAmode sty amode, uppRparen]
  where
    pp_static = if externallyVisibleCLabel label then uppNil else uppPStr SLIT("static")

pprAbsC sty stmt@(CFlatRetVector label amodes) _
  =	case (pprTempAndExternDecls stmt) of { (_, pp_exts) ->
	uppAboves [
	    case sty of
	      PprForC -> pp_exts
	      _ -> uppNil,
	    uppBesides [ppLocalness label, uppPStr SLIT(" W_ "),
    	    	       pprCLabel sty label, uppStr "[] = {"],
	    uppNest 2 (uppInterleave uppComma (map (ppr_item sty) amodes)),
	    uppStr "};" ] }
  where
    ppr_item sty item = uppBeside (uppStr "(W_) ") (ppr_amode sty item)

pprAbsC sty (CCostCentreDecl is_local cc) _ = uppCostCentreDecl sty is_local cc
\end{code}

\begin{code}
ppLocalness label
  = uppBeside static const
  where
    static = if (externallyVisibleCLabel label) then uppNil else uppPStr SLIT("static ")
    const  = if not (isReadOnly label)	        then uppNil else uppPStr SLIT("const")

ppLocalnessMacro for_fun{-vs data-} clabel
  = case (if externallyVisibleCLabel clabel then "E" else "I") of { prefix ->
    case (if isReadOnly clabel then "RO_" else "")	      of { suffix ->
    if for_fun
       then uppStr (prefix ++ "F_")
       else uppStr (prefix ++ "D_" ++ suffix)
    } }
\end{code}

\begin{code}
grab_non_void_amodes amodes
  = filter non_void amodes

non_void amode
  = case (getAmodeRep amode) of
      VoidRep -> False
      k	-> True
\end{code}

\begin{code}
ppr_vol_regs :: PprStyle -> [MagicId] -> (Unpretty, Unpretty)

ppr_vol_regs sty [] = (uppNil, uppNil)
ppr_vol_regs sty (VoidReg:rs) = ppr_vol_regs sty rs
ppr_vol_regs sty (r:rs)
  = let pp_reg = case r of
    	    	    VanillaReg pk n -> pprVanillaReg n
    	    	    _ -> pprMagicId sty r
	(more_saves, more_restores) = ppr_vol_regs sty rs
    in
    (uppAbove (uppBeside (uppPStr SLIT("CALLER_SAVE_"))    pp_reg) more_saves,
     uppAbove (uppBeside (uppPStr SLIT("CALLER_RESTORE_")) pp_reg) more_restores)

-- pp_basic_{saves,restores}: The BaseReg, SpA, SuA, SpB, SuB, Hp and
-- HpLim (see StgRegs.lh) may need to be saved/restored around CCalls,
-- depending on the platform.  (The "volatile regs" stuff handles all
-- other registers.)  Just be *sure* BaseReg is OK before trying to do
-- anything else.
pp_basic_saves
  = uppAboves [
	uppPStr SLIT("CALLER_SAVE_Base"),
	uppPStr SLIT("CALLER_SAVE_SpA"),
	uppPStr SLIT("CALLER_SAVE_SuA"),
	uppPStr SLIT("CALLER_SAVE_SpB"),
	uppPStr SLIT("CALLER_SAVE_SuB"),
	uppPStr SLIT("CALLER_SAVE_Ret"),
--	uppPStr SLIT("CALLER_SAVE_Activity"),
	uppPStr SLIT("CALLER_SAVE_Hp"),
	uppPStr SLIT("CALLER_SAVE_HpLim") ]

pp_basic_restores
  = uppAboves [
	uppPStr SLIT("CALLER_RESTORE_Base"), -- must be first!
	uppPStr SLIT("CALLER_RESTORE_SpA"),
	uppPStr SLIT("CALLER_RESTORE_SuA"),
	uppPStr SLIT("CALLER_RESTORE_SpB"),
	uppPStr SLIT("CALLER_RESTORE_SuB"),
	uppPStr SLIT("CALLER_RESTORE_Ret"),
--	uppPStr SLIT("CALLER_RESTORE_Activity"),
	uppPStr SLIT("CALLER_RESTORE_Hp"),
	uppPStr SLIT("CALLER_RESTORE_HpLim"),
	uppPStr SLIT("CALLER_RESTORE_StdUpdRetVec"),
	uppPStr SLIT("CALLER_RESTORE_StkStub") ]
\end{code}

\begin{code}
if_profiling sty pretty
  = case sty of
      PprForC -> if  opt_SccProfilingOn
		 then pretty
		 else uppChar '0' -- leave it out!

      _ -> {-print it anyway-} pretty

-- ---------------------------------------------------------------------------
-- Changes for GrAnSim:
--  draw costs for computation in head of if into both branches;
--  as no abstractC data structure is given for the head, one is constructed
--  guessing unknown values and fed into the costs function
-- ---------------------------------------------------------------------------

do_if_stmt sty discrim tag alt_code deflt c
  = case tag of
      -- This special case happens when testing the result of a comparison.
      -- We can just avoid some redundant clutter in the output.
      MachInt n _ | n==0 -> ppr_if_stmt sty (pprAmode sty discrim)
				      deflt alt_code
				      (addrModeCosts discrim Rhs) c
      other              -> let
			       cond = uppBesides [ pprAmode sty discrim,
					  uppPStr SLIT(" == "),
					  pprAmode sty (CLit tag) ]
			    in
			    ppr_if_stmt sty cond
					 alt_code deflt
					 (addrModeCosts discrim Rhs) c

ppr_if_stmt sty pp_pred then_part else_part discrim_costs c
  = uppAboves [
      uppBesides [uppStr "if (", pp_pred, uppStr ") {"],
      uppNest 8 (pprAbsC sty then_part 	(c + discrim_costs +
				       	(Cost (0, 2, 0, 0, 0)) +
					costs then_part)),
      (case nonemptyAbsC else_part of Nothing -> uppNil; Just _ -> uppStr "} else {"),
      uppNest 8 (pprAbsC sty else_part  (c + discrim_costs +
					(Cost (0, 1, 0, 0, 0)) +
					costs else_part)),
      uppChar '}' ]
    {- Total costs = inherited costs (before if) + costs for accessing discrim
		     + costs for cond branch ( = (0, 1, 0, 0, 0) )
		     + costs for that alternative
    -}
\end{code}

Historical note: this used to be two separate cases -- one for `ccall'
and one for `casm'.  To get round a potential limitation to only 10
arguments, the numbering of arguments in @process_casm@ was beefed up a
bit. ADR

Some rough notes on generating code for @CCallOp@:

1) Evaluate all arguments and stuff them into registers. (done elsewhere)
2) Save any essential registers (heap, stack, etc).

   ToDo: If stable pointers are in use, these must be saved in a place
   where the runtime system can get at them so that the Stg world can
   be restarted during the call.

3) Save any temporary registers that are currently in use.
4) Do the call putting result into a local variable
5) Restore essential registers
6) Restore temporaries

   (This happens after restoration of essential registers because we
   might need the @Base@ register to access all the others correctly.)

{- Doesn't apply anymore with ForeignObj, structure create via primop.
   makeForeignObj (ForeignObj is not CReturnable)
7) If returning Malloc Pointer, build a closure containing the
   appropriate value.
-}
   Otherwise, copy local variable into result register.

8) If ccall (not casm), declare the function being called as extern so
   that C knows if it returns anything other than an int.

\begin{pseudocode}
{ ResultType _ccall_result;
  basic_saves;
  saves;
  _ccall_result = f( args );
  basic_restores;
  restores;

  return_reg = _ccall_result;
}
\end{pseudocode}

Amendment to the above: if we can GC, we have to:

* make sure we save all our registers away where the garbage collector
  can get at them.
* be sure that there are no live registers or we're in trouble.
  (This can cause problems if you try something foolish like passing
   an array or foreign obj to a _ccall_GC_ thing.)
* increment/decrement the @inCCallGC@ counter before/after the call so
  that the runtime check that PerformGC is being used sensibly will work.

\begin{code}
pprCCall sty op@(CCallOp op_str is_asm may_gc _ _) args results liveness_mask vol_regs
  = if (may_gc && liveness_mask /= noLiveRegsMask)
    then panic ("Live register in _casm_GC_ \"" ++ casm_str ++ "\" " ++ (uppShow 80 (uppCat pp_non_void_args)) ++ "\n")
    else
    uppAboves [
      uppChar '{',
      declare_local_vars,   -- local var for *result*
      uppAboves local_arg_decls,
      -- if is_asm then uppNil else declareExtern,
      pp_save_context,
      process_casm local_vars pp_non_void_args casm_str,
      pp_restore_context,
      assign_results,
      uppChar '}'
    ]
  where
    (pp_saves, pp_restores) = ppr_vol_regs sty vol_regs
    (pp_save_context, pp_restore_context) =
	if may_gc
	then (	uppStr "extern StgInt inCCallGC; SaveAllStgRegs(); inCCallGC++;",
		uppStr "inCCallGC--; RestoreAllStgRegs();")
	else (	pp_basic_saves `uppAbove` pp_saves,
		pp_basic_restores `uppAbove` pp_restores)

    non_void_args =
	let nvas = tail args
	in ASSERT (all non_void nvas) nvas
    -- the first argument will be the "I/O world" token (a VoidRep)
    -- all others should be non-void

    non_void_results =
	let nvrs = grab_non_void_amodes results
	in ASSERT (length nvrs <= 1) nvrs
    -- there will usually be two results: a (void) state which we
    -- should ignore and a (possibly void) result.

    (local_arg_decls, pp_non_void_args)
      = unzip [ ppr_casm_arg sty a i | (a,i) <- non_void_args `zip` [1..] ]

    pp_liveness = pprAmode sty (mkIntCLit liveness_mask)

    (declare_local_vars, local_vars, assign_results)
      = ppr_casm_results sty non_void_results pp_liveness

    casm_str = if is_asm then _UNPK_ op_str else ccall_str

    -- Remainder only used for ccall

    ccall_str = uppShow 80
	(uppBesides [
		if null non_void_results
		  then uppNil
		  else uppPStr SLIT("%r = "),
		uppLparen, uppPStr op_str, uppLparen,
		  uppIntersperse uppComma ccall_args,
		uppStr "));"
	])
    num_args = length non_void_args
    ccall_args = take num_args [ uppBeside (uppChar '%') (uppInt i) | i <- [0..] ]
\end{code}

If the argument is a heap object, we need to reach inside and pull out
the bit the C world wants to see.  The only heap objects which can be
passed are @Array@s, @ByteArray@s and @ForeignObj@s.

\begin{code}
ppr_casm_arg :: PprStyle -> CAddrMode -> Int -> (Unpretty, Unpretty)
    -- (a) decl and assignment, (b) local var to be used later

ppr_casm_arg sty amode a_num
  = let
	a_kind	 = getAmodeRep amode
	pp_amode = pprAmode sty amode
	pp_kind  = pprPrimKind sty a_kind

	local_var  = uppBeside (uppPStr SLIT("_ccall_arg")) (uppInt a_num)

	(arg_type, pp_amode2)
	  = case a_kind of

	      -- for array arguments, pass a pointer to the body of the array
	      -- (PTRS_ARR_CTS skips over all the header nonsense)
	      ArrayRep	    -> (pp_kind,
				uppBesides [uppStr "PTRS_ARR_CTS(", pp_amode, uppRparen])
	      ByteArrayRep -> (pp_kind,
				uppBesides [uppStr "BYTE_ARR_CTS(", pp_amode, uppRparen])

	      -- for ForeignObj, use FOREIGN_OBJ_DATA to fish out the contents.
	      ForeignObjRep -> (uppPStr SLIT("StgForeignObj"),
				uppBesides [uppStr "ForeignObj_CLOSURE_DATA(", pp_amode, uppStr")"])
	      other	    -> (pp_kind, pp_amode)

	declare_local_var
	  = uppBesides [ arg_type, uppSP, local_var, uppEquals, pp_amode2, uppSemi ]
    in
    (declare_local_var, local_var)
\end{code}

For l-values, the critical questions are:

1) Are there any results at all?

   We only allow zero or one results.

{- With the introduction of ForeignObj (MallocPtr++), no longer necess.
2) Is the result is a foreign obj?

   The mallocptr must be encapsulated immediately in a heap object.
-}
\begin{code}
ppr_casm_results ::
	PprStyle	-- style
	-> [CAddrMode]	-- list of results (length <= 1)
	-> Unpretty	-- liveness mask
	->
	( Unpretty,	-- declaration of any local vars
	  [Unpretty],	-- list of result vars (same length as results)
	  Unpretty )	-- assignment (if any) of results in local var to registers

ppr_casm_results sty [] liveness
  = (uppNil, [], uppNil) 	-- no results

ppr_casm_results sty [r] liveness
  = let
	result_reg = ppr_amode sty r
	r_kind	   = getAmodeRep r

	local_var  = uppPStr SLIT("_ccall_result")

	(result_type, assign_result)
	  = case r_kind of
{- @ForeignObj@s replaces MallocPtrs and are *not* CReturnable.
   Instead, external references have to be turned into ForeignObjs
   using the primop makeForeignObj#. Benefit: Multiple finalisation
   routines can be accommodated and the below special case is not needed.
   Price is, of course, that you have to explicitly wrap `foreign objects'
   with makeForeignObj#.
+ 
	      ForeignObjRep ->
		(uppPStr SLIT("StgForeignObj"),
		 uppBesides [ uppStr "constructForeignObj(",
				liveness, uppComma,
				result_reg, uppComma,
				local_var,
			     pp_paren_semi ]) -}
	      _ ->
		(pprPrimKind sty r_kind,
		 uppBesides [ result_reg, uppEquals, local_var, uppSemi ])

	declare_local_var = uppBesides [ result_type, uppSP, local_var, uppSemi ]
    in
    (declare_local_var, [local_var], assign_result)

ppr_casm_results sty rs liveness
  = panic "ppr_casm_results: ccall/casm with many results"
\end{code}


Note the sneaky way _the_ result is represented by a list so that we
can complain if it's used twice.

ToDo: Any chance of giving line numbers when process-casm fails?
      Or maybe we should do a check _much earlier_ in compiler. ADR

\begin{code}
process_casm ::
	[Unpretty]		-- results (length <= 1)
	-> [Unpretty]		-- arguments
	-> String		-- format string (with embedded %'s)
	->
	Unpretty			-- code being generated

process_casm results args string = process results args string
 where
  process []    _ "" = uppNil
  process (_:_) _ "" = error ("process_casm: non-void result not assigned while processing _casm_ \"" ++ string ++ "\"\n(Try changing result type to PrimIO ()\n")

  process ress args ('%':cs)
    = case cs of
	[] ->
	    error ("process_casm: lonely % while processing _casm_ \"" ++ string ++ "\".\n")

	('%':css) ->
	    uppBeside (uppChar '%') (process ress args css)

	('r':css)  ->
	  case ress of
	    []  -> error ("process_casm: no result to match %r while processing _casm_ \"" ++ string ++ "\".\nTry deleting %r or changing result type from PrimIO ()\n")
	    [r] -> uppBeside r (process [] args css)
	    _   -> panic ("process_casm: casm with many results while processing _casm_ \"" ++ string ++ "\".\n")

	other ->
	  let
		read_int :: ReadS Int
		read_int = reads
	  in
	  case (read_int other) of
	    [(num,css)] ->
		  if 0 <= num && num < length args
		  then uppBeside (uppParens (args !! num))
				 (process ress args css)
		    else error ("process_casm: no such arg #:"++(show num)++" while processing \"" ++ string ++ "\".\n")
	    _ -> error ("process_casm: not %<num> while processing _casm_ \"" ++ string ++ "\".\n")

  process ress args (other_c:cs)
    = uppBeside (uppChar other_c) (process ress args cs)
\end{code}

%************************************************************************
%*									*
\subsection[a2r-assignments]{Assignments}
%*									*
%************************************************************************

Printing assignments is a little tricky because of type coercion.

First of all, the kind of the thing being assigned can be gotten from
the destination addressing mode.  (It should be the same as the kind
of the source addressing mode.)  If the kind of the assignment is of
@VoidRep@, then don't generate any code at all.

\begin{code}
pprAssign :: PprStyle -> PrimRep -> CAddrMode -> CAddrMode -> Unpretty

pprAssign sty VoidRep dest src = uppNil
\end{code}

Special treatment for floats and doubles, to avoid unwanted conversions.

\begin{code}
pprAssign sty FloatRep dest@(CVal reg_rel _) src
  = uppBesides [ uppStr "ASSIGN_FLT(", ppr_amode sty (CAddr reg_rel), uppComma, pprAmode sty src, pp_paren_semi ]

pprAssign sty DoubleRep dest@(CVal reg_rel _) src
  = uppBesides [ uppStr "ASSIGN_DBL(", ppr_amode sty (CAddr reg_rel), uppComma, pprAmode sty src, pp_paren_semi ]
\end{code}

Lastly, the question is: will the C compiler think the types of the
two sides of the assignment match?

	We assume that the types will match
	if neither side is a @CVal@ addressing mode for any register
	which can point into the heap or B stack.

Why?  Because the heap and B stack are used to store miscellaneous things,
whereas the A stack, temporaries, registers, etc., are only used for things
of fixed type.

\begin{code}
pprAssign sty kind (CReg (VanillaReg _ dest)) (CReg (VanillaReg _ src))
  = uppBesides [ pprVanillaReg dest, uppEquals,
		pprVanillaReg src, uppSemi ]

pprAssign sty kind dest src
  | mixedTypeLocn dest
    -- Add in a cast to StgWord (a.k.a. W_) iff the destination is mixed
  = uppBesides [ ppr_amode sty dest, uppEquals,
		uppStr "(W_)(",	-- Here is the cast
		ppr_amode sty src, pp_paren_semi ]

pprAssign sty kind dest src
  | mixedPtrLocn dest && getAmodeRep src /= PtrRep
    -- Add in a cast to StgPtr (a.k.a. P_) iff the destination is mixed
  = uppBesides [ ppr_amode sty dest, uppEquals,
		uppStr "(P_)(",	-- Here is the cast
		ppr_amode sty src, pp_paren_semi ]

pprAssign sty ByteArrayRep dest src
  | mixedPtrLocn src
    -- Add in a cast to StgPtr (a.k.a. B_) iff the source is mixed
  = uppBesides [ ppr_amode sty dest, uppEquals,
		uppStr "(B_)(",	-- Here is the cast
		ppr_amode sty src, pp_paren_semi ]

pprAssign sty kind other_dest src
  = uppBesides [ ppr_amode sty other_dest, uppEquals,
		pprAmode  sty src, uppSemi ]
\end{code}


%************************************************************************
%*									*
\subsection[a2r-CAddrModes]{Addressing modes}
%*									*
%************************************************************************

@pprAmode@ is used to print r-values (which may need casts), whereas
@ppr_amode@ is used for l-values {\em and} as a help function for
@pprAmode@.

\begin{code}
pprAmode, ppr_amode :: PprStyle -> CAddrMode -> Unpretty
\end{code}

For reasons discussed above under assignments, @CVal@ modes need
to be treated carefully.  First come special cases for floats and doubles,
similar to those in @pprAssign@:

(NB: @PK_FLT@ and @PK_DBL@ require the {\em address} of the value in
question.)

\begin{code}
pprAmode sty (CVal reg_rel FloatRep)
  = uppBesides [ uppStr "PK_FLT(", ppr_amode sty (CAddr reg_rel), uppRparen ]
pprAmode sty (CVal reg_rel DoubleRep)
  = uppBesides [ uppStr "PK_DBL(", ppr_amode sty (CAddr reg_rel), uppRparen ]
\end{code}

Next comes the case where there is some other cast need, and the
no-cast case:

\begin{code}
pprAmode sty amode
  | mixedTypeLocn amode
  = uppParens (uppBesides [ pprPrimKind sty (getAmodeRep amode), uppStr ")(",
		ppr_amode sty amode ])
  | otherwise	-- No cast needed
  = ppr_amode sty amode
\end{code}

Now the rest of the cases for ``workhorse'' @ppr_amode@:

\begin{code}
ppr_amode sty (CVal reg_rel _)
  = case (pprRegRelative sty False{-no sign wanted-} reg_rel) of
	(pp_reg, Nothing)     -> uppBeside  (uppChar '*') pp_reg
	(pp_reg, Just offset) -> uppBesides [ pp_reg, uppBracket offset ]

ppr_amode sty (CAddr reg_rel)
  = case (pprRegRelative sty True{-sign wanted-} reg_rel) of
	(pp_reg, Nothing)     -> pp_reg
	(pp_reg, Just offset) -> uppBeside pp_reg offset

ppr_amode sty (CReg magic_id) = pprMagicId sty magic_id

ppr_amode sty (CTemp uniq kind) = prettyToUn (pprUnique uniq)

ppr_amode sty (CLbl label kind) = pprCLabel sty label

ppr_amode sty (CUnVecLbl direct vectored)
  = uppBesides [uppStr "(StgRetAddr) UNVEC(", pprCLabel sty direct, uppComma,
	       pprCLabel sty vectored, uppRparen]

ppr_amode sty (CCharLike char)
  = uppBesides [uppStr "CHARLIKE_CLOSURE(", pprAmode sty char, uppRparen ]
ppr_amode sty (CIntLike int)
  = uppBesides [uppStr "INTLIKE_CLOSURE(", pprAmode sty int, uppRparen ]

ppr_amode sty (CString str) = uppBesides [uppChar '"', uppStr (stringToC (_UNPK_ str)), uppChar '"']
  -- ToDo: are these *used* for anything?

ppr_amode sty (CLit lit) = pprBasicLit sty lit

ppr_amode sty (CLitLit str _) = uppPStr str

ppr_amode sty (COffset off) = pprHeapOffset sty off

ppr_amode sty (CCode abs_C)
  = uppAboves [ uppStr "{ -- CCode", uppNest 8 (pprAbsC sty abs_C (costs abs_C)), uppChar '}' ]

ppr_amode sty (CLabelledCode label abs_C)
  = uppAboves [ uppBesides [pprCLabel sty label, uppStr " = { -- CLabelledCode"],
	       uppNest 8 (pprAbsC sty abs_C (costs abs_C)), uppChar '}' ]

ppr_amode sty (CJoinPoint _ _)
  = panic "ppr_amode: CJoinPoint"

ppr_amode sty (CTableEntry base index kind)
  = uppBesides [uppStr "((", pprPrimKind sty kind, uppStr " *)(",
	       ppr_amode sty base, uppStr "))[(I_)(", ppr_amode sty index,
    	       uppStr ")]"]

ppr_amode sty (CMacroExpr pk macro as)
  = uppBesides [uppLparen, pprPrimKind sty pk, uppStr ")(", uppStr (show macro), uppLparen,
	       uppIntersperse uppComma (map (pprAmode sty) as), uppStr "))"]

ppr_amode sty (CCostCentre cc print_as_string)
  = uppCostCentre sty print_as_string cc
\end{code}

%************************************************************************
%*									*
\subsection[a2r-MagicIds]{Magic ids}
%*									*
%************************************************************************

@pprRegRelative@ returns a pair of the @Unpretty@ for the register
(some casting may be required), and a @Maybe Unpretty@ for the offset
(zero offset gives a @Nothing@).

\begin{code}
addPlusSign :: Bool -> Unpretty -> Unpretty
addPlusSign False p = p
addPlusSign True  p = uppBeside (uppChar '+') p

pprSignedInt :: Bool -> Int -> Maybe Unpretty	-- Nothing => 0
pprSignedInt sign_wanted n
 = if n == 0 then Nothing else
   if n > 0  then Just (addPlusSign sign_wanted (uppInt n))
   else 	  Just (uppInt n)

pprRegRelative :: PprStyle
	       -> Bool		-- True <=> Print leading plus sign (if +ve)
	       -> RegRelative
	       -> (Unpretty, Maybe Unpretty)

pprRegRelative sty sign_wanted (SpARel spA off)
  = (pprMagicId sty SpA, pprSignedInt sign_wanted (spARelToInt spA off))

pprRegRelative sty sign_wanted (SpBRel spB off)
  = (pprMagicId sty SpB, pprSignedInt sign_wanted (spBRelToInt spB off))

pprRegRelative sty sign_wanted r@(HpRel hp off)
  = let to_print = hp `subOff` off
	pp_Hp	 = pprMagicId sty Hp
    in
    if isZeroOff to_print then
	(pp_Hp, Nothing)
    else
	(pp_Hp, Just (uppBeside (uppChar '-') (pprHeapOffset sty to_print)))
				-- No parens needed because pprHeapOffset
				-- does them when necessary

pprRegRelative sty sign_wanted (NodeRel off)
  = let pp_Node = pprMagicId sty node
    in
    if isZeroOff off then
	(pp_Node, Nothing)
    else
	(pp_Node, Just (addPlusSign sign_wanted (pprHeapOffset sty off)))

\end{code}

@pprMagicId@ just prints the register name.  @VanillaReg@ registers are
represented by a discriminated union (@StgUnion@), so we use the @PrimRep@
to select the union tag.

\begin{code}
pprMagicId :: PprStyle -> MagicId -> Unpretty

pprMagicId sty BaseReg	    	    = uppPStr SLIT("BaseReg")
pprMagicId sty StkOReg		    = uppPStr SLIT("StkOReg")
pprMagicId sty (VanillaReg pk n)
				    = uppBesides [ pprVanillaReg n, uppChar '.',
						  pprUnionTag pk ]
pprMagicId sty (FloatReg  n)        = uppBeside (uppPStr SLIT("FltReg")) (uppInt IBOX(n))
pprMagicId sty (DoubleReg n)	    = uppBeside (uppPStr SLIT("DblReg")) (uppInt IBOX(n))
pprMagicId sty TagReg		    = uppPStr SLIT("TagReg")
pprMagicId sty RetReg		    = uppPStr SLIT("RetReg")
pprMagicId sty SpA		    = uppPStr SLIT("SpA")
pprMagicId sty SuA		    = uppPStr SLIT("SuA")
pprMagicId sty SpB		    = uppPStr SLIT("SpB")
pprMagicId sty SuB		    = uppPStr SLIT("SuB")
pprMagicId sty Hp		    = uppPStr SLIT("Hp")
pprMagicId sty HpLim		    = uppPStr SLIT("HpLim")
pprMagicId sty LivenessReg	    = uppPStr SLIT("LivenessReg")
pprMagicId sty StdUpdRetVecReg      = uppPStr SLIT("StdUpdRetVecReg")
pprMagicId sty StkStubReg	    = uppPStr SLIT("StkStubReg")
pprMagicId sty CurCostCentre	    = uppPStr SLIT("CCC")
pprMagicId sty VoidReg		    = panic "pprMagicId:VoidReg!"

pprVanillaReg :: FAST_INT -> Unpretty

pprVanillaReg n = uppBeside (uppChar 'R') (uppInt IBOX(n))

pprUnionTag :: PrimRep -> Unpretty

pprUnionTag PtrRep		= uppChar 'p'
pprUnionTag CodePtrRep	    	= uppPStr SLIT("fp")
pprUnionTag DataPtrRep	    	= uppChar 'd'
pprUnionTag RetRep 	    	= uppChar 'r'
pprUnionTag CostCentreRep	= panic "pprUnionTag:CostCentre?"

pprUnionTag CharRep		= uppChar 'c'
pprUnionTag IntRep		= uppChar 'i'
pprUnionTag WordRep		= uppChar 'w'
pprUnionTag AddrRep		= uppChar 'v'
pprUnionTag FloatRep		= uppChar 'f'
pprUnionTag DoubleRep		= panic "pprUnionTag:Double?"

pprUnionTag StablePtrRep	= uppChar 'i'
pprUnionTag ForeignObjRep	= uppChar 'p'

pprUnionTag ArrayRep		= uppChar 'p'
pprUnionTag ByteArrayRep	= uppChar 'b'

pprUnionTag _                   = panic "pprUnionTag:Odd kind"
\end{code}


Find and print local and external declarations for a list of
Abstract~C statements.
\begin{code}
pprTempAndExternDecls :: AbstractC -> (Unpretty{-temps-}, Unpretty{-externs-})
pprTempAndExternDecls AbsCNop = (uppNil, uppNil)

pprTempAndExternDecls (AbsCStmts stmt1 stmt2)
  = initTE (ppr_decls_AbsC stmt1	`thenTE` \ (t_p1, e_p1) ->
	    ppr_decls_AbsC stmt2	`thenTE` \ (t_p2, e_p2) ->
	    case (catMaybes [t_p1, t_p2])	 of { real_temps ->
	    case (catMaybes [e_p1, e_p2])	 of { real_exts ->
	    returnTE (uppAboves real_temps, uppAboves real_exts) }}
	   )

pprTempAndExternDecls other_stmt
  = initTE (ppr_decls_AbsC other_stmt `thenTE` \ (maybe_t, maybe_e) ->
	    returnTE (
		case maybe_t of
		  Nothing -> uppNil
		  Just pp -> pp,

		case maybe_e of
		  Nothing -> uppNil
		  Just pp -> pp )
	   )

pprBasicLit :: PprStyle -> Literal -> Unpretty
pprPrimKind :: PprStyle -> PrimRep -> Unpretty

pprBasicLit  sty lit = uppStr (showLiteral  sty lit)
pprPrimKind  sty k   = uppStr (showPrimRep k)
\end{code}


%************************************************************************
%*									*
\subsection[a2r-monad]{Monadery}
%*									*
%************************************************************************

We need some monadery to keep track of temps and externs we have already
printed.  This info must be threaded right through the Abstract~C, so
it's most convenient to hide it in this monad.

WDP 95/02: Switched from \tr{([Unique], [CLabel])} to
\tr{(UniqSet, CLabelSet)}.  Allegedly for efficiency.

\begin{code}
type CLabelSet = FiniteMap CLabel (){-any type will do-}
emptyCLabelSet = emptyFM
x `elementOfCLabelSet` labs
  = case (lookupFM labs x) of { Just _ -> True; Nothing -> False }
addToCLabelSet set x = addToFM set x ()

type TEenv = (UniqSet Unique, CLabelSet)

type TeM result =  TEenv -> (TEenv, result)

initTE :: TeM a -> a
initTE sa
  = case sa (emptyUniqSet, emptyCLabelSet) of { (_, result) ->
    result }

{-# INLINE thenTE #-}
{-# INLINE returnTE #-}

thenTE :: TeM a -> (a -> TeM b) -> TeM b
thenTE a b u
  = case a u	    of { (u_1, result_of_a) ->
    b result_of_a u_1 }

mapTE :: (a -> TeM b) -> [a] -> TeM [b]
mapTE f []     = returnTE []
mapTE f (x:xs)
  = f x		`thenTE` \ r  ->
    mapTE f xs	`thenTE` \ rs ->
    returnTE (r : rs)

returnTE :: a -> TeM a
returnTE result env = (env, result)

-- these next two check whether the thing is already
-- recorded, and THEN THEY RECORD IT
-- (subsequent calls will return False for the same uniq/label)

tempSeenTE :: Unique -> TeM Bool
tempSeenTE uniq env@(seen_uniqs, seen_labels)
  = if (uniq `elementOfUniqSet` seen_uniqs)
    then (env, True)
    else ((addOneToUniqSet seen_uniqs uniq,
	  seen_labels),
	  False)

labelSeenTE :: CLabel -> TeM Bool
labelSeenTE label env@(seen_uniqs, seen_labels)
  = if (label `elementOfCLabelSet` seen_labels)
    then (env, True)
    else ((seen_uniqs,
	  addToCLabelSet seen_labels label),
	  False)
\end{code}

\begin{code}
pprTempDecl :: Unique -> PrimRep -> Unpretty
pprTempDecl uniq kind
  = uppBesides [ pprPrimKind PprDebug kind, uppSP, prettyToUn (pprUnique uniq), uppSemi ]

pprExternDecl :: CLabel -> PrimRep -> Unpretty

pprExternDecl clabel kind
  = if not (needsCDecl clabel) then
	uppNil -- do not print anything for "known external" things (e.g., < PreludeCore)
    else
	case (
	    case kind of
	      CodePtrRep -> ppLocalnessMacro True{-function-} clabel
	      _		 -> ppLocalnessMacro False{-data-}    clabel
	) of { pp_macro_str ->

	uppBesides [ pp_macro_str, uppLparen, pprCLabel PprForC clabel, pp_paren_semi ]
	}
\end{code}

\begin{code}
ppr_decls_AbsC :: AbstractC -> TeM (Maybe Unpretty{-temps-}, Maybe Unpretty{-externs-})

ppr_decls_AbsC AbsCNop		= returnTE (Nothing, Nothing)

ppr_decls_AbsC (AbsCStmts stmts_1 stmts_2)
  = ppr_decls_AbsC stmts_1  `thenTE` \ p1 ->
    ppr_decls_AbsC stmts_2  `thenTE` \ p2 ->
    returnTE (maybe_uppAboves [p1, p2])

ppr_decls_AbsC (CClosureUpdInfo info)
  = ppr_decls_AbsC info

ppr_decls_AbsC (CSplitMarker) = returnTE (Nothing, Nothing)

ppr_decls_AbsC (CAssign dest source)
  = ppr_decls_Amode dest    `thenTE` \ p1 ->
    ppr_decls_Amode source  `thenTE` \ p2 ->
    returnTE (maybe_uppAboves [p1, p2])

ppr_decls_AbsC (CJump target) = ppr_decls_Amode target

ppr_decls_AbsC (CFallThrough target) = ppr_decls_Amode target

ppr_decls_AbsC (CReturn target _) = ppr_decls_Amode target

ppr_decls_AbsC (CSwitch discrim alts deflt)
  = ppr_decls_Amode discrim	`thenTE` \ pdisc ->
    mapTE ppr_alt_stuff alts	`thenTE` \ palts  ->
    ppr_decls_AbsC deflt	`thenTE` \ pdeflt ->
    returnTE (maybe_uppAboves (pdisc:pdeflt:palts))
  where
    ppr_alt_stuff (_, absC) = ppr_decls_AbsC absC

ppr_decls_AbsC (CCodeBlock label absC)
  = ppr_decls_AbsC absC

ppr_decls_AbsC (CInitHdr cl_info reg_rel cost_centre inplace_upd)
	-- ToDo: strictly speaking, should chk "cost_centre" amode
  = labelSeenTE info_lbl     `thenTE` \  label_seen ->
    returnTE (Nothing,
	      if label_seen then
		  Nothing
	      else
		  Just (pprExternDecl info_lbl PtrRep))
  where
    info_lbl = infoTableLabelFromCI cl_info

ppr_decls_AbsC (COpStmt	results	_ args _ _) = ppr_decls_Amodes (results ++ args)
ppr_decls_AbsC (CSimultaneous abc)  	    = ppr_decls_AbsC abc

ppr_decls_AbsC (CMacroStmt	    _ amodes)	= ppr_decls_Amodes amodes

ppr_decls_AbsC (CCallProfCtrMacro   _ amodes)	= ppr_decls_Amodes [] -- *****!!!
  -- you get some nasty re-decls of stdio.h if you compile
  -- the prelude while looking inside those amodes;
  -- no real reason to, anyway.
ppr_decls_AbsC (CCallProfCCMacro    _ amodes)	= ppr_decls_Amodes amodes

ppr_decls_AbsC (CStaticClosure closure_lbl closure_info cost_centre amodes)
	-- ToDo: strictly speaking, should chk "cost_centre" amode
  = ppr_decls_Amodes amodes

ppr_decls_AbsC (CClosureInfoAndCode cl_info slow maybe_fast upd_lbl _ _)
  = ppr_decls_Amodes [entry_lbl, upd_lbl]	`thenTE` \ p1 ->
    ppr_decls_AbsC slow				`thenTE` \ p2 ->
    (case maybe_fast of
	Nothing   -> returnTE (Nothing, Nothing)
	Just fast -> ppr_decls_AbsC fast)	`thenTE` \ p3 ->
    returnTE (maybe_uppAboves [p1, p2, p3])
  where
    entry_lbl = CLbl slow_lbl CodePtrRep
    slow_lbl    = case (nonemptyAbsC slow) of
		    Nothing -> mkErrorStdEntryLabel
		    Just _  -> entryLabelFromCI cl_info

ppr_decls_AbsC (CRetVector label maybe_amodes absC)
  = ppr_decls_Amodes (catMaybes maybe_amodes)	`thenTE` \ p1 ->
    ppr_decls_AbsC   absC			`thenTE` \ p2 ->
    returnTE (maybe_uppAboves [p1, p2])

ppr_decls_AbsC (CRetUnVector   _ amode)  = ppr_decls_Amode amode
ppr_decls_AbsC (CFlatRetVector _ amodes) = ppr_decls_Amodes amodes
\end{code}

\begin{code}
ppr_decls_Amode :: CAddrMode -> TeM (Maybe Unpretty, Maybe Unpretty)
ppr_decls_Amode (CVal _ _)	= returnTE (Nothing, Nothing)
ppr_decls_Amode (CAddr _)	= returnTE (Nothing, Nothing)
ppr_decls_Amode (CReg _)	= returnTE (Nothing, Nothing)
ppr_decls_Amode (CString _)	= returnTE (Nothing, Nothing)
ppr_decls_Amode (CLit _)	= returnTE (Nothing, Nothing)
ppr_decls_Amode (CLitLit _ _) 	= returnTE (Nothing, Nothing)
ppr_decls_Amode (COffset _)	= returnTE (Nothing, Nothing)

-- CIntLike must be a literal -- no decls
ppr_decls_Amode (CIntLike int)	= returnTE (Nothing, Nothing)

-- CCharLike may have be arbitrary value -- may have decls
ppr_decls_Amode (CCharLike char)
  = ppr_decls_Amode char

-- now, the only place where we actually print temps/externs...
ppr_decls_Amode (CTemp uniq kind)
  = case kind of
      VoidRep -> returnTE (Nothing, Nothing)
      other ->
	tempSeenTE uniq `thenTE` \ temp_seen ->
	returnTE
	  (if temp_seen then Nothing else Just (pprTempDecl uniq kind), Nothing)

ppr_decls_Amode (CLbl label VoidRep)
  = returnTE (Nothing, Nothing)

ppr_decls_Amode (CLbl label kind)
  = labelSeenTE label `thenTE` \ label_seen ->
    returnTE (Nothing,
	      if label_seen then Nothing else Just (pprExternDecl label kind))

{- WRONG:
ppr_decls_Amode (CUnVecLbl direct vectored)
  = labelSeenTE direct   `thenTE` \ dlbl_seen ->
    labelSeenTE vectored `thenTE` \ vlbl_seen ->
    let
	ddcl = if dlbl_seen then uppNil else pprExternDecl direct CodePtrRep
	vdcl = if vlbl_seen then uppNil else pprExternDecl vectored DataPtrRep
    in
    returnTE (Nothing,
    	    	if (dlbl_seen || not (needsCDecl direct)) &&
    	    	   (vlbl_seen || not (needsCDecl vectored)) then Nothing
    	        else Just (uppBesides [uppStr "UNVEC(", ddcl, uppComma, vdcl, uppRparen]))
-}

ppr_decls_Amode (CUnVecLbl direct vectored)
  = -- We don't mark either label as "seen", because
    -- we don't know which one will be used and which one tossed
    -- by the C macro...
    --labelSeenTE direct   `thenTE` \ dlbl_seen ->
    --labelSeenTE vectored `thenTE` \ vlbl_seen ->
    let
	ddcl = {-if dlbl_seen then uppNil else-} pprExternDecl direct CodePtrRep
	vdcl = {-if vlbl_seen then uppNil else-} pprExternDecl vectored DataPtrRep
    in
    returnTE (Nothing,
    	    	if ({-dlbl_seen ||-} not (needsCDecl direct)) &&
    	    	   ({-vlbl_seen ||-} not (needsCDecl vectored)) then Nothing
    	        else Just (uppBesides [uppStr "UNVEC(", ddcl, uppComma, vdcl, uppRparen]))

ppr_decls_Amode (CTableEntry base index _)
  = ppr_decls_Amode base    `thenTE` \ p1 ->
    ppr_decls_Amode index   `thenTE` \ p2 ->
    returnTE (maybe_uppAboves [p1, p2])

ppr_decls_Amode (CMacroExpr _ _ amodes)
  = ppr_decls_Amodes amodes

ppr_decls_Amode other = returnTE (Nothing, Nothing)


maybe_uppAboves :: [(Maybe Unpretty, Maybe Unpretty)] -> (Maybe Unpretty, Maybe Unpretty)
maybe_uppAboves ps
  = case (unzip ps)	of { (ts, es) ->
    case (catMaybes ts)	of { real_ts  ->
    case (catMaybes es)	of { real_es  ->
    (if (null real_ts) then Nothing else Just (uppAboves real_ts),
     if (null real_es) then Nothing else Just (uppAboves real_es))
    } } }
\end{code}

\begin{code}
ppr_decls_Amodes :: [CAddrMode] -> TeM (Maybe Unpretty, Maybe Unpretty)
ppr_decls_Amodes amodes
  = mapTE ppr_decls_Amode amodes `thenTE` \ ps ->
    returnTE ( maybe_uppAboves ps )
\end{code}