Floating infotables were reversed in C back end
[ghc-hetmet.git] / compiler / cmm / PprC.hs
1 {-# OPTIONS -w #-}
2 -- The above warning supression flag is a temporary kludge.
3 -- While working on this module you are encouraged to remove it and fix
4 -- any warnings in the module. See
5 --     http://hackage.haskell.org/trac/ghc/wiki/Commentary/CodingStyle#Warnings
6 -- for details
7
8 -----------------------------------------------------------------------------
9 --
10 -- Pretty-printing of Cmm as C, suitable for feeding gcc
11 --
12 -- (c) The University of Glasgow 2004-2006
13 --
14 -----------------------------------------------------------------------------
15
16 --
17 -- Print Cmm as real C, for -fvia-C
18 --
19 -- See wiki:Commentary/Compiler/Backends/PprC
20 --
21 -- This is simpler than the old PprAbsC, because Cmm is "macro-expanded"
22 -- relative to the old AbstractC, and many oddities/decorations have
23 -- disappeared from the data type.
24 --
25
26 -- ToDo: save/restore volatile registers around calls.
27
28 module PprC (
29         writeCs,
30         pprStringInCStyle 
31   ) where
32
33 #include "HsVersions.h"
34
35 -- Cmm stuff
36 import BlockId
37 import Cmm
38 import PprCmm   ()      -- Instances only
39 import CLabel
40 import ForeignCall
41 import ClosureInfo
42
43 -- Utils
44 import DynFlags
45 import Unique
46 import UniqSet
47 import FiniteMap
48 import UniqFM
49 import FastString
50 import Outputable
51 import Constants
52
53 -- The rest
54 import Data.List
55 import Data.Bits
56 import Data.Char
57 import System.IO
58 import Data.Word
59
60 import Data.Array.ST
61 import Control.Monad.ST
62
63 #if x86_64_TARGET_ARCH
64 import StaticFlags      ( opt_Unregisterised )
65 #endif
66
67 #if defined(alpha_TARGET_ARCH) || defined(mips_TARGET_ARCH) || defined(mipsel_TARGET_ARCH) || defined(arm_TARGET_ARCH)
68 #define BEWARE_LOAD_STORE_ALIGNMENT
69 #endif
70
71 -- --------------------------------------------------------------------------
72 -- Top level
73
74 pprCs :: DynFlags -> [RawCmm] -> SDoc
75 pprCs dflags cmms
76  = pprCode CStyle (vcat $ map (\c -> split_marker $$ pprC c) cmms)
77  where
78    split_marker
79      | dopt Opt_SplitObjs dflags = ptext (sLit "__STG_SPLIT_MARKER")
80      | otherwise                 = empty
81
82 writeCs :: DynFlags -> Handle -> [RawCmm] -> IO ()
83 writeCs dflags handle cmms 
84   = printForC handle (pprCs dflags cmms)
85
86 -- --------------------------------------------------------------------------
87 -- Now do some real work
88 --
89 -- for fun, we could call cmmToCmm over the tops...
90 --
91
92 pprC :: RawCmm -> SDoc
93 pprC (Cmm tops) = vcat $ intersperse (text "") $ map pprTop tops
94
95 --
96 -- top level procs
97 -- 
98 pprTop :: RawCmmTop -> SDoc
99 pprTop (CmmProc info clbl _params (ListGraph blocks)) =
100     (if not (null info)
101         then pprDataExterns info $$
102              pprWordArray (entryLblToInfoLbl clbl) info
103         else empty) $$
104     (case blocks of
105         [] -> empty
106          -- the first block doesn't get a label:
107         (BasicBlock _ stmts : rest) -> vcat [
108            text "",
109            extern_decls,
110            (if (externallyVisibleCLabel clbl)
111                     then mkFN_ else mkIF_) (pprCLabel clbl) <+> lbrace,
112            nest 8 temp_decls,
113            nest 8 mkFB_,
114            nest 8 (vcat (map pprStmt stmts)) $$
115               vcat (map pprBBlock rest),
116            nest 8 mkFE_,
117            rbrace ]
118     )
119   where
120         (temp_decls, extern_decls) = pprTempAndExternDecls blocks 
121
122
123 -- Chunks of static data.
124
125 -- We only handle (a) arrays of word-sized things and (b) strings.
126
127 pprTop (CmmData _section _ds@[CmmDataLabel lbl, CmmString str]) = 
128   hcat [
129     pprLocalness lbl, ptext (sLit "char "), pprCLabel lbl,
130     ptext (sLit "[] = "), pprStringInCStyle str, semi
131   ]
132
133 pprTop (CmmData _section _ds@[CmmDataLabel lbl, CmmUninitialised size]) = 
134   hcat [
135     pprLocalness lbl, ptext (sLit "char "), pprCLabel lbl,
136     brackets (int size), semi
137   ]
138
139 pprTop top@(CmmData _section (CmmDataLabel lbl : lits)) = 
140   pprDataExterns lits $$
141   pprWordArray lbl lits  
142
143 -- Floating info table for safe a foreign call.
144 pprTop top@(CmmData _section d@(_ : _))
145   | CmmDataLabel lbl : lits <- reverse d = 
146   let lits' = reverse lits
147   in pprDataExterns lits' $$
148      pprWordArray lbl lits'
149
150 -- these shouldn't appear?
151 pprTop (CmmData _ _) = panic "PprC.pprTop: can't handle this data"
152
153 -- --------------------------------------------------------------------------
154 -- BasicBlocks are self-contained entities: they always end in a jump.
155 --
156 -- Like nativeGen/AsmCodeGen, we could probably reorder blocks to turn
157 -- as many jumps as possible into fall throughs.
158 --
159
160 pprBBlock :: CmmBasicBlock -> SDoc
161 pprBBlock (BasicBlock lbl stmts) = 
162     if null stmts then
163         pprTrace "pprC.pprBBlock: curious empty code block for" 
164                         (pprBlockId lbl) empty
165     else 
166         nest 4 (pprBlockId lbl <> colon) $$
167         nest 8 (vcat (map pprStmt stmts))
168
169 -- --------------------------------------------------------------------------
170 -- Info tables. Just arrays of words. 
171 -- See codeGen/ClosureInfo, and nativeGen/PprMach
172
173 pprWordArray :: CLabel -> [CmmStatic] -> SDoc
174 pprWordArray lbl ds
175   = hcat [ pprLocalness lbl, ptext (sLit "StgWord")
176          , space, pprCLabel lbl, ptext (sLit "[] = {") ] 
177     $$ nest 8 (commafy (pprStatics ds))
178     $$ ptext (sLit "};")
179
180 --
181 -- has to be static, if it isn't globally visible
182 --
183 pprLocalness :: CLabel -> SDoc
184 pprLocalness lbl | not $ externallyVisibleCLabel lbl = ptext (sLit "static ")
185                  | otherwise = empty
186
187 -- --------------------------------------------------------------------------
188 -- Statements.
189 --
190
191 pprStmt :: CmmStmt -> SDoc
192
193 pprStmt stmt = case stmt of
194     CmmNop       -> empty
195     CmmComment s -> (hang (ptext (sLit "/*")) 3 (ftext s)) $$ ptext (sLit "*/")
196
197     CmmAssign dest src -> pprAssign dest src
198
199     CmmStore  dest src
200         | typeWidth rep == W64 && wordWidth /= W64
201         -> (if isFloatType rep then ptext (sLit "ASSIGN_DBL")
202                                else ptext (sLit ("ASSIGN_Word64"))) <> 
203            parens (mkP_ <> pprExpr1 dest <> comma <> pprExpr src) <> semi
204
205         | otherwise
206         -> hsep [ pprExpr (CmmLoad dest rep), equals, pprExpr src <> semi ]
207         where
208           rep = cmmExprType src
209
210     CmmCall (CmmCallee fn cconv) results args safety ret ->
211         maybe_proto $$
212         pprCall ppr_fn cconv results args safety
213         where
214         cast_fn = parens (cCast (pprCFunType (char '*') cconv results args) fn)
215
216         real_fun_proto lbl = char ';' <> 
217                         pprCFunType (pprCLabel lbl) cconv results args <> 
218                         noreturn_attr <> semi
219
220         data_proto lbl = ptext (sLit ";EI_(") <> 
221                          pprCLabel lbl <> char ')' <> semi
222
223         noreturn_attr = case ret of
224                           CmmNeverReturns -> text "__attribute__ ((noreturn))"
225                           CmmMayReturn    -> empty
226
227         -- See wiki:Commentary/Compiler/Backends/PprC#Prototypes
228         (maybe_proto, ppr_fn) = 
229             case fn of
230               CmmLit (CmmLabel lbl) 
231                 | StdCallConv <- cconv -> (real_fun_proto lbl, pprCLabel lbl)
232                         -- stdcall functions must be declared with
233                         -- a function type, otherwise the C compiler
234                         -- doesn't add the @n suffix to the label.  We
235                         -- can't add the @n suffix ourselves, because
236                         -- it isn't valid C.
237                 | CmmNeverReturns <- ret -> (real_fun_proto lbl, pprCLabel lbl)
238                 | not (isMathFun lbl) -> (data_proto lbl, cast_fn)
239                         -- we declare all other called functions as
240                         -- data labels, and then cast them to the
241                         -- right type when calling.  This is because
242                         -- the label might already have a declaration
243                         -- as a data label in the same file,
244                         -- e.g. Foreign.Marshal.Alloc declares 'free'
245                         -- as both a data label and a function label.
246               _ -> 
247                    (empty {- no proto -}, cast_fn)
248                         -- for a dynamic call, no declaration is necessary.
249
250     CmmCall (CmmPrim op) results args safety _ret ->
251         pprCall ppr_fn CCallConv results args safety
252         where
253         ppr_fn = pprCallishMachOp_for_C op
254
255     CmmBranch ident          -> pprBranch ident
256     CmmCondBranch expr ident -> pprCondBranch expr ident
257     CmmJump lbl _params      -> mkJMP_(pprExpr lbl) <> semi
258     CmmSwitch arg ids        -> pprSwitch arg ids
259
260 pprCFunType :: SDoc -> CCallConv -> HintedCmmFormals -> HintedCmmActuals -> SDoc
261 pprCFunType ppr_fn cconv ress args
262   = res_type ress <+>
263     parens (text (ccallConvAttribute cconv) <>  ppr_fn) <>
264     parens (commafy (map arg_type args))
265   where
266         res_type [] = ptext (sLit "void")
267         res_type [CmmHinted one hint] = machRepHintCType (localRegType one) hint
268
269         arg_type (CmmHinted expr hint) = machRepHintCType (cmmExprType expr) hint
270
271 -- ---------------------------------------------------------------------
272 -- unconditional branches
273 pprBranch :: BlockId -> SDoc
274 pprBranch ident = ptext (sLit "goto") <+> pprBlockId ident <> semi
275
276
277 -- ---------------------------------------------------------------------
278 -- conditional branches to local labels
279 pprCondBranch :: CmmExpr -> BlockId -> SDoc
280 pprCondBranch expr ident 
281         = hsep [ ptext (sLit "if") , parens(pprExpr expr) ,
282                         ptext (sLit "goto") , (pprBlockId ident) <> semi ]
283
284
285 -- ---------------------------------------------------------------------
286 -- a local table branch
287 --
288 -- we find the fall-through cases
289 --
290 -- N.B. we remove Nothing's from the list of branches, as they are
291 -- 'undefined'. However, they may be defined one day, so we better
292 -- document this behaviour.
293 --
294 pprSwitch :: CmmExpr -> [ Maybe BlockId ] -> SDoc
295 pprSwitch e maybe_ids 
296   = let pairs  = [ (ix, ident) | (ix,Just ident) <- zip [0..] maybe_ids ]
297         pairs2 = [ (map fst as, snd (head as)) | as <- groupBy sndEq pairs ]
298     in 
299         (hang (ptext (sLit "switch") <+> parens ( pprExpr e ) <+> lbrace)
300                 4 (vcat ( map caseify pairs2 )))
301         $$ rbrace
302
303   where
304     sndEq (_,x) (_,y) = x == y
305
306     -- fall through case
307     caseify (ix:ixs, ident) = vcat (map do_fallthrough ixs) $$ final_branch ix
308         where 
309         do_fallthrough ix =
310                  hsep [ ptext (sLit "case") , pprHexVal ix wordWidth <> colon ,
311                         ptext (sLit "/* fall through */") ]
312
313         final_branch ix = 
314                 hsep [ ptext (sLit "case") , pprHexVal ix wordWidth <> colon ,
315                        ptext (sLit "goto") , (pprBlockId ident) <> semi ]
316
317 -- ---------------------------------------------------------------------
318 -- Expressions.
319 --
320
321 -- C Types: the invariant is that the C expression generated by
322 --
323 --      pprExpr e
324 --
325 -- has a type in C which is also given by
326 --
327 --      machRepCType (cmmExprType e)
328 --
329 -- (similar invariants apply to the rest of the pretty printer).
330
331 pprExpr :: CmmExpr -> SDoc
332 pprExpr e = case e of
333     CmmLit lit -> pprLit lit
334
335
336     CmmLoad e ty -> pprLoad e ty
337     CmmReg reg      -> pprCastReg reg
338     CmmRegOff reg 0 -> pprCastReg reg
339
340     CmmRegOff reg i
341         | i >  0    -> pprRegOff (char '+') i
342         | otherwise -> pprRegOff (char '-') (-i)
343       where
344         pprRegOff op i' = pprCastReg reg <> op <> int i'
345
346     CmmMachOp mop args -> pprMachOpApp mop args
347
348
349 pprLoad :: CmmExpr -> CmmType -> SDoc
350 pprLoad e ty
351   | width == W64, wordWidth /= W64
352   = (if isFloatType ty then ptext (sLit "PK_DBL")
353                        else ptext (sLit "PK_Word64"))
354     <> parens (mkP_ <> pprExpr1 e)
355
356   | otherwise 
357   = case e of
358         CmmReg r | isPtrReg r && width == wordWidth && not (isFloatType ty)
359                  -> char '*' <> pprAsPtrReg r
360
361         CmmRegOff r 0 | isPtrReg r && width == wordWidth && not (isFloatType ty)
362                       -> char '*' <> pprAsPtrReg r
363
364         CmmRegOff r off | isPtrReg r && width == wordWidth
365                         , off `rem` wORD_SIZE == 0 && not (isFloatType ty)
366         -- ToDo: check that the offset is a word multiple?
367         --       (For tagging to work, I had to avoid unaligned loads. --ARY)
368                         -> pprAsPtrReg r <> brackets (ppr (off `shiftR` wordShift))
369
370         _other -> cLoad e ty
371   where
372     width = typeWidth ty
373
374 pprExpr1 :: CmmExpr -> SDoc
375 pprExpr1 (CmmLit lit)     = pprLit1 lit
376 pprExpr1 e@(CmmReg _reg)  = pprExpr e
377 pprExpr1 other            = parens (pprExpr other)
378
379 -- --------------------------------------------------------------------------
380 -- MachOp applications
381
382 pprMachOpApp :: MachOp -> [CmmExpr] -> SDoc
383
384 pprMachOpApp op args
385   | isMulMayOfloOp op
386   = ptext (sLit "mulIntMayOflo") <> parens (commafy (map pprExpr args))
387   where isMulMayOfloOp (MO_U_MulMayOflo _) = True
388         isMulMayOfloOp (MO_S_MulMayOflo _) = True
389         isMulMayOfloOp _ = False
390
391 pprMachOpApp mop args
392   | Just ty <- machOpNeedsCast mop 
393   = ty <> parens (pprMachOpApp' mop args)
394   | otherwise
395   = pprMachOpApp' mop args
396
397 -- Comparisons in C have type 'int', but we want type W_ (this is what
398 -- resultRepOfMachOp says).  The other C operations inherit their type
399 -- from their operands, so no casting is required.
400 machOpNeedsCast :: MachOp -> Maybe SDoc
401 machOpNeedsCast mop
402   | isComparisonMachOp mop = Just mkW_
403   | otherwise              = Nothing
404
405 pprMachOpApp' mop args
406  = case args of
407     -- dyadic
408     [x,y] -> pprArg x <+> pprMachOp_for_C mop <+> pprArg y
409
410     -- unary
411     [x]   -> pprMachOp_for_C mop <> parens (pprArg x)
412
413     _     -> panic "PprC.pprMachOp : machop with wrong number of args"
414
415   where
416         -- Cast needed for signed integer ops
417     pprArg e | signedOp    mop = cCast (machRep_S_CType (typeWidth (cmmExprType e))) e
418              | needsFCasts mop = cCast (machRep_F_CType (typeWidth (cmmExprType e))) e
419              | otherwise    = pprExpr1 e
420     needsFCasts (MO_F_Eq _)   = False
421     needsFCasts (MO_F_Ne _)   = False
422     needsFCasts (MO_F_Neg _)  = True
423     needsFCasts (MO_F_Quot _) = True
424     needsFCasts mop  = floatComparison mop
425
426 -- --------------------------------------------------------------------------
427 -- Literals
428
429 pprLit :: CmmLit -> SDoc
430 pprLit lit = case lit of
431     CmmInt i rep      -> pprHexVal i rep
432
433     CmmFloat f w       -> parens (machRep_F_CType w) <> str
434         where d = fromRational f :: Double
435               str | isInfinite d && d < 0 = ptext (sLit "-INFINITY")
436                   | isInfinite d          = ptext (sLit "INFINITY")
437                   | isNaN d               = ptext (sLit "NAN")
438                   | otherwise             = text (show d)
439                 -- these constants come from <math.h>
440                 -- see #1861
441
442     CmmBlock bid       -> mkW_ <> pprCLabelAddr (infoTblLbl bid)
443     CmmHighStackMark   -> panic "PprC printing high stack mark"
444     CmmLabel clbl      -> mkW_ <> pprCLabelAddr clbl
445     CmmLabelOff clbl i -> mkW_ <> pprCLabelAddr clbl <> char '+' <> int i
446     CmmLabelDiffOff clbl1 clbl2 i
447         -- WARNING:
448         --  * the lit must occur in the info table clbl2
449         --  * clbl1 must be an SRT, a slow entry point or a large bitmap
450         -- The Mangler is expected to convert any reference to an SRT,
451         -- a slow entry point or a large bitmap
452         -- from an info table to an offset.
453         -> mkW_ <> pprCLabelAddr clbl1 <> char '+' <> int i
454
455 pprCLabelAddr lbl = char '&' <> pprCLabel lbl
456
457 pprLit1 :: CmmLit -> SDoc
458 pprLit1 lit@(CmmLabelOff _ _) = parens (pprLit lit)
459 pprLit1 lit@(CmmLabelDiffOff _ _ _) = parens (pprLit lit)
460 pprLit1 lit@(CmmFloat _ _)    = parens (pprLit lit)
461 pprLit1 other = pprLit other
462
463 -- ---------------------------------------------------------------------------
464 -- Static data
465
466 pprStatics :: [CmmStatic] -> [SDoc]
467 pprStatics [] = []
468 pprStatics (CmmStaticLit (CmmFloat f W32) : rest) 
469   -- floats are padded to a word, see #1852
470   | wORD_SIZE == 8, CmmStaticLit (CmmInt 0 W32) : rest' <- rest
471   = pprLit1 (floatToWord f) : pprStatics rest'
472   | wORD_SIZE == 4
473   = pprLit1 (floatToWord f) : pprStatics rest
474   | otherwise
475   = pprPanic "pprStatics: float" (vcat (map (\(CmmStaticLit l) -> ppr (cmmLitType l)) rest))
476 pprStatics (CmmStaticLit (CmmFloat f W64) : rest)
477   = map pprLit1 (doubleToWords f) ++ pprStatics rest
478 pprStatics (CmmStaticLit (CmmInt i W64) : rest)
479   | wordWidth == W32
480 #ifdef WORDS_BIGENDIAN
481   = pprStatics (CmmStaticLit (CmmInt q W32) : 
482                 CmmStaticLit (CmmInt r W32) : rest)
483 #else
484   = pprStatics (CmmStaticLit (CmmInt r W32) : 
485                 CmmStaticLit (CmmInt q W32) : rest)
486 #endif
487   where r = i .&. 0xffffffff
488         q = i `shiftR` 32
489 pprStatics (CmmStaticLit (CmmInt i w) : rest)
490   | w /= wordWidth
491   = panic "pprStatics: cannot emit a non-word-sized static literal"
492 pprStatics (CmmStaticLit lit : rest)
493   = pprLit1 lit : pprStatics rest
494 pprStatics (other : rest)
495   = pprPanic "pprWord" (pprStatic other)
496
497 pprStatic :: CmmStatic -> SDoc
498 pprStatic s = case s of
499
500     CmmStaticLit lit   -> nest 4 (pprLit lit)
501     CmmAlign i         -> nest 4 (ptext (sLit "/* align */") <+> int i)
502     CmmDataLabel clbl  -> pprCLabel clbl <> colon
503     CmmUninitialised i -> nest 4 (mkC_ <> brackets (int i))
504
505     -- these should be inlined, like the old .hc
506     CmmString s'       -> nest 4 (mkW_ <> parens(pprStringInCStyle s'))
507
508
509 -- ---------------------------------------------------------------------------
510 -- Block Ids
511
512 pprBlockId :: BlockId -> SDoc
513 pprBlockId b = char '_' <> ppr (getUnique b)
514
515 -- --------------------------------------------------------------------------
516 -- Print a MachOp in a way suitable for emitting via C.
517 --
518
519 pprMachOp_for_C :: MachOp -> SDoc
520
521 pprMachOp_for_C mop = case mop of 
522
523         -- Integer operations
524         MO_Add          _ -> char '+'
525         MO_Sub          _ -> char '-'
526         MO_Eq           _ -> ptext (sLit "==")
527         MO_Ne           _ -> ptext (sLit "!=")
528         MO_Mul          _ -> char '*'
529
530         MO_S_Quot       _ -> char '/'
531         MO_S_Rem        _ -> char '%'
532         MO_S_Neg        _ -> char '-'
533
534         MO_U_Quot       _ -> char '/'
535         MO_U_Rem        _ -> char '%'
536
537         -- & Floating-point operations
538         MO_F_Add        _ -> char '+'
539         MO_F_Sub        _ -> char '-'
540         MO_F_Neg        _ -> char '-'
541         MO_F_Mul        _ -> char '*'
542         MO_F_Quot       _ -> char '/'
543
544         -- Signed comparisons
545         MO_S_Ge         _ -> ptext (sLit ">=")
546         MO_S_Le         _ -> ptext (sLit "<=")
547         MO_S_Gt         _ -> char '>'
548         MO_S_Lt         _ -> char '<'
549
550         -- & Unsigned comparisons
551         MO_U_Ge         _ -> ptext (sLit ">=")
552         MO_U_Le         _ -> ptext (sLit "<=")
553         MO_U_Gt         _ -> char '>'
554         MO_U_Lt         _ -> char '<'
555
556         -- & Floating-point comparisons
557         MO_F_Eq         _ -> ptext (sLit "==")
558         MO_F_Ne         _ -> ptext (sLit "!=")
559         MO_F_Ge         _ -> ptext (sLit ">=")
560         MO_F_Le         _ -> ptext (sLit "<=")
561         MO_F_Gt         _ -> char '>'
562         MO_F_Lt         _ -> char '<'
563
564         -- Bitwise operations.  Not all of these may be supported at all
565         -- sizes, and only integral MachReps are valid.
566         MO_And          _ -> char '&'
567         MO_Or           _ -> char '|'
568         MO_Xor          _ -> char '^'
569         MO_Not          _ -> char '~'
570         MO_Shl          _ -> ptext (sLit "<<")
571         MO_U_Shr        _ -> ptext (sLit ">>") -- unsigned shift right
572         MO_S_Shr        _ -> ptext (sLit ">>") -- signed shift right
573
574 -- Conversions.  Some of these will be NOPs, but never those that convert
575 -- between ints and floats.
576 -- Floating-point conversions use the signed variant.
577 -- We won't know to generate (void*) casts here, but maybe from
578 -- context elsewhere
579
580 -- noop casts
581         MO_UU_Conv from to | from == to -> empty
582         MO_UU_Conv _from to  -> parens (machRep_U_CType to)
583
584         MO_SS_Conv from to | from == to -> empty
585         MO_SS_Conv _from to  -> parens (machRep_S_CType to)
586
587         -- TEMPORARY: the old code didn't check this case, so let's leave it out
588         -- to facilitate comparisons against the old output code.
589         --MO_FF_Conv from to | from == to -> empty
590         MO_FF_Conv _from to  -> parens (machRep_F_CType to)
591
592         MO_SF_Conv _from to  -> parens (machRep_F_CType to)
593         MO_FS_Conv _from to  -> parens (machRep_S_CType to)
594
595         _ -> pprTrace "offending mop" (ptext $ sLit $ show mop) $
596              panic "PprC.pprMachOp_for_C: unknown machop"
597
598 signedOp :: MachOp -> Bool      -- Argument type(s) are signed ints
599 signedOp (MO_S_Quot _)   = True
600 signedOp (MO_S_Rem  _)   = True
601 signedOp (MO_S_Neg  _)   = True
602 signedOp (MO_S_Ge   _)   = True
603 signedOp (MO_S_Le   _)   = True
604 signedOp (MO_S_Gt   _)   = True
605 signedOp (MO_S_Lt   _)   = True
606 signedOp (MO_S_Shr  _)   = True
607 signedOp (MO_SS_Conv _ _) = True
608 signedOp (MO_SF_Conv _ _) = True
609 signedOp _ = False
610
611 floatComparison :: MachOp -> Bool  -- comparison between float args
612 floatComparison (MO_F_Eq   _)    = True
613 floatComparison (MO_F_Ne   _)    = True
614 floatComparison (MO_F_Ge   _)    = True
615 floatComparison (MO_F_Le   _)    = True
616 floatComparison (MO_F_Gt   _)    = True
617 floatComparison (MO_F_Lt   _)    = True
618 floatComparison _ = False
619
620 -- ---------------------------------------------------------------------
621 -- tend to be implemented by foreign calls
622
623 pprCallishMachOp_for_C :: CallishMachOp -> SDoc
624
625 pprCallishMachOp_for_C mop 
626     = case mop of
627         MO_F64_Pwr  -> ptext (sLit "pow")
628         MO_F64_Sin  -> ptext (sLit "sin")
629         MO_F64_Cos  -> ptext (sLit "cos")
630         MO_F64_Tan  -> ptext (sLit "tan")
631         MO_F64_Sinh -> ptext (sLit "sinh")
632         MO_F64_Cosh -> ptext (sLit "cosh")
633         MO_F64_Tanh -> ptext (sLit "tanh")
634         MO_F64_Asin -> ptext (sLit "asin")
635         MO_F64_Acos -> ptext (sLit "acos")
636         MO_F64_Atan -> ptext (sLit "atan")
637         MO_F64_Log  -> ptext (sLit "log")
638         MO_F64_Exp  -> ptext (sLit "exp")
639         MO_F64_Sqrt -> ptext (sLit "sqrt")
640         MO_F32_Pwr  -> ptext (sLit "powf")
641         MO_F32_Sin  -> ptext (sLit "sinf")
642         MO_F32_Cos  -> ptext (sLit "cosf")
643         MO_F32_Tan  -> ptext (sLit "tanf")
644         MO_F32_Sinh -> ptext (sLit "sinhf")
645         MO_F32_Cosh -> ptext (sLit "coshf")
646         MO_F32_Tanh -> ptext (sLit "tanhf")
647         MO_F32_Asin -> ptext (sLit "asinf")
648         MO_F32_Acos -> ptext (sLit "acosf")
649         MO_F32_Atan -> ptext (sLit "atanf")
650         MO_F32_Log  -> ptext (sLit "logf")
651         MO_F32_Exp  -> ptext (sLit "expf")
652         MO_F32_Sqrt -> ptext (sLit "sqrtf")
653         MO_WriteBarrier -> ptext (sLit "write_barrier")
654
655 -- ---------------------------------------------------------------------
656 -- Useful #defines
657 --
658
659 mkJMP_, mkFN_, mkIF_ :: SDoc -> SDoc
660
661 mkJMP_ i = ptext (sLit "JMP_") <> parens i
662 mkFN_  i = ptext (sLit "FN_")  <> parens i -- externally visible function
663 mkIF_  i = ptext (sLit "IF_")  <> parens i -- locally visible
664
665
666 mkFB_, mkFE_ :: SDoc
667 mkFB_ = ptext (sLit "FB_") -- function code begin
668 mkFE_ = ptext (sLit "FE_") -- function code end
669
670 -- from includes/Stg.h
671 --
672 mkC_,mkW_,mkP_,mkPP_,mkI_,mkA_,mkD_,mkF_,mkB_,mkL_,mkLI_,mkLW_ :: SDoc
673
674 mkC_  = ptext (sLit "(C_)")        -- StgChar
675 mkW_  = ptext (sLit "(W_)")        -- StgWord
676 mkP_  = ptext (sLit "(P_)")        -- StgWord*
677 mkPP_ = ptext (sLit "(PP_)")       -- P_*
678 mkI_  = ptext (sLit "(I_)")        -- StgInt
679 mkA_  = ptext (sLit "(A_)")        -- StgAddr
680 mkD_  = ptext (sLit "(D_)")        -- const StgWord*
681 mkF_  = ptext (sLit "(F_)")        -- StgFunPtr
682 mkB_  = ptext (sLit "(B_)")        -- StgByteArray
683 mkL_  = ptext (sLit "(L_)")        -- StgClosurePtr
684
685 mkLI_ = ptext (sLit "(LI_)")       -- StgInt64
686 mkLW_ = ptext (sLit "(LW_)")       -- StgWord64
687
688
689 -- ---------------------------------------------------------------------
690 --
691 -- Assignments
692 --
693 -- Generating assignments is what we're all about, here
694 --
695 pprAssign :: CmmReg -> CmmExpr -> SDoc
696
697 -- dest is a reg, rhs is a reg
698 pprAssign r1 (CmmReg r2)
699    | isPtrReg r1 && isPtrReg r2
700    = hcat [ pprAsPtrReg r1, equals, pprAsPtrReg r2, semi ]
701
702 -- dest is a reg, rhs is a CmmRegOff
703 pprAssign r1 (CmmRegOff r2 off)
704    | isPtrReg r1 && isPtrReg r2 && (off `rem` wORD_SIZE == 0)
705    = hcat [ pprAsPtrReg r1, equals, pprAsPtrReg r2, op, int off', semi ]
706   where
707         off1 = off `shiftR` wordShift
708
709         (op,off') | off >= 0  = (char '+', off1)
710                   | otherwise = (char '-', -off1)
711
712 -- dest is a reg, rhs is anything.
713 -- We can't cast the lvalue, so we have to cast the rhs if necessary.  Casting
714 -- the lvalue elicits a warning from new GCC versions (3.4+).
715 pprAssign r1 r2
716   | isFixedPtrReg r1             = mkAssign (mkP_ <> pprExpr1 r2)
717   | Just ty <- strangeRegType r1 = mkAssign (parens ty <> pprExpr1 r2)
718   | otherwise                    = mkAssign (pprExpr r2)
719     where mkAssign x = if r1 == CmmGlobal BaseReg
720                        then ptext (sLit "ASSIGN_BaseReg") <> parens x <> semi
721                        else pprReg r1 <> ptext (sLit " = ") <> x <> semi
722
723 -- ---------------------------------------------------------------------
724 -- Registers
725
726 pprCastReg reg
727    | isStrangeTypeReg reg = mkW_ <> pprReg reg
728    | otherwise            = pprReg reg
729
730 -- True if (pprReg reg) will give an expression with type StgPtr.  We
731 -- need to take care with pointer arithmetic on registers with type
732 -- StgPtr.
733 isFixedPtrReg :: CmmReg -> Bool
734 isFixedPtrReg (CmmLocal _) = False
735 isFixedPtrReg (CmmGlobal r) = isFixedPtrGlobalReg r
736
737 -- True if (pprAsPtrReg reg) will give an expression with type StgPtr
738 -- JD: THIS IS HORRIBLE AND SHOULD BE RENAMED, AT THE VERY LEAST.
739 -- THE GARBAGE WITH THE VNonGcPtr HELPS MATCH THE OLD CODE GENERATOR'S OUTPUT;
740 -- I'M NOT SURE IF IT SHOULD REALLY STAY THAT WAY.
741 isPtrReg :: CmmReg -> Bool
742 isPtrReg (CmmLocal _)               = False
743 isPtrReg (CmmGlobal (VanillaReg n VGcPtr)) = True -- if we print via pprAsPtrReg
744 isPtrReg (CmmGlobal (VanillaReg n VNonGcPtr)) = False --if we print via pprAsPtrReg
745 isPtrReg (CmmGlobal reg)            = isFixedPtrGlobalReg reg
746
747 -- True if this global reg has type StgPtr
748 isFixedPtrGlobalReg :: GlobalReg -> Bool
749 isFixedPtrGlobalReg Sp          = True
750 isFixedPtrGlobalReg Hp          = True
751 isFixedPtrGlobalReg HpLim       = True
752 isFixedPtrGlobalReg SpLim       = True
753 isFixedPtrGlobalReg _           = False
754
755 -- True if in C this register doesn't have the type given by 
756 -- (machRepCType (cmmRegType reg)), so it has to be cast.
757 isStrangeTypeReg :: CmmReg -> Bool
758 isStrangeTypeReg (CmmLocal _)   = False
759 isStrangeTypeReg (CmmGlobal g)  = isStrangeTypeGlobal g
760
761 isStrangeTypeGlobal :: GlobalReg -> Bool
762 isStrangeTypeGlobal CurrentTSO          = True
763 isStrangeTypeGlobal CurrentNursery      = True
764 isStrangeTypeGlobal BaseReg             = True
765 isStrangeTypeGlobal r                   = isFixedPtrGlobalReg r
766
767 strangeRegType :: CmmReg -> Maybe SDoc
768 strangeRegType (CmmGlobal CurrentTSO) = Just (ptext (sLit "struct StgTSO_ *"))
769 strangeRegType (CmmGlobal CurrentNursery) = Just (ptext (sLit "struct bdescr_ *"))
770 strangeRegType (CmmGlobal BaseReg) = Just (ptext (sLit "struct StgRegTable_ *"))
771 strangeRegType _ = Nothing
772
773 -- pprReg just prints the register name.
774 --
775 pprReg :: CmmReg -> SDoc
776 pprReg r = case r of
777         CmmLocal  local  -> pprLocalReg local
778         CmmGlobal global -> pprGlobalReg global
779                 
780 pprAsPtrReg :: CmmReg -> SDoc
781 pprAsPtrReg (CmmGlobal (VanillaReg n gcp)) 
782   = WARN( gcp /= VGcPtr, ppr n ) char 'R' <> int n <> ptext (sLit ".p")
783 pprAsPtrReg other_reg = pprReg other_reg
784
785 pprGlobalReg :: GlobalReg -> SDoc
786 pprGlobalReg gr = case gr of
787     VanillaReg n _ -> char 'R' <> int n  <> ptext (sLit ".w")
788         -- pprGlobalReg prints a VanillaReg as a .w regardless
789         -- Example:     R1.w = R1.w & (-0x8UL);
790         --              JMP_(*R1.p);
791     FloatReg   n   -> char 'F' <> int n
792     DoubleReg  n   -> char 'D' <> int n
793     LongReg    n   -> char 'L' <> int n
794     Sp             -> ptext (sLit "Sp")
795     SpLim          -> ptext (sLit "SpLim")
796     Hp             -> ptext (sLit "Hp")
797     HpLim          -> ptext (sLit "HpLim")
798     CurrentTSO     -> ptext (sLit "CurrentTSO")
799     CurrentNursery -> ptext (sLit "CurrentNursery")
800     HpAlloc        -> ptext (sLit "HpAlloc")
801     BaseReg        -> ptext (sLit "BaseReg")
802     EagerBlackholeInfo -> ptext (sLit "stg_EAGER_BLACKHOLE_info")
803     GCEnter1       -> ptext (sLit "stg_gc_enter_1")
804     GCFun          -> ptext (sLit "stg_gc_fun")
805
806 pprLocalReg :: LocalReg -> SDoc
807 pprLocalReg (LocalReg uniq _) = char '_' <> ppr uniq
808
809 -- -----------------------------------------------------------------------------
810 -- Foreign Calls
811
812 pprCall :: SDoc -> CCallConv -> HintedCmmFormals -> HintedCmmActuals -> CmmSafety
813         -> SDoc
814
815 pprCall ppr_fn cconv results args _
816   | not (is_cish cconv)
817   = panic "pprCall: unknown calling convention"
818
819   | otherwise
820   =
821 #if x86_64_TARGET_ARCH
822         -- HACK around gcc optimisations.
823         -- x86_64 needs a __DISCARD__() here, to create a barrier between
824         -- putting the arguments into temporaries and passing the arguments
825         -- to the callee, because the argument expressions may refer to
826         -- machine registers that are also used for passing arguments in the
827         -- C calling convention.
828     (if (not opt_Unregisterised) 
829         then ptext (sLit "__DISCARD__();") 
830         else empty) $$
831 #endif
832     ppr_assign results (ppr_fn <> parens (commafy (map pprArg args))) <> semi
833   where 
834      ppr_assign []           rhs = rhs
835      ppr_assign [CmmHinted one hint] rhs
836          = pprLocalReg one <> ptext (sLit " = ")
837                  <> pprUnHint hint (localRegType one) <> rhs
838      ppr_assign _other _rhs = panic "pprCall: multiple results"
839
840      pprArg (CmmHinted expr AddrHint)
841         = cCast (ptext (sLit "void *")) expr
842         -- see comment by machRepHintCType below
843      pprArg (CmmHinted expr SignedHint)
844         = cCast (machRep_S_CType $ typeWidth $ cmmExprType expr) expr
845      pprArg (CmmHinted expr _other)
846         = pprExpr expr
847
848      pprUnHint AddrHint   rep = parens (machRepCType rep)
849      pprUnHint SignedHint rep = parens (machRepCType rep)
850      pprUnHint _          _   = empty
851
852 pprGlobalRegName :: GlobalReg -> SDoc
853 pprGlobalRegName gr = case gr of
854     VanillaReg n _  -> char 'R' <> int n  -- without the .w suffix
855     _               -> pprGlobalReg gr
856
857 -- Currently we only have these two calling conventions, but this might
858 -- change in the future...
859 is_cish CCallConv   = True
860 is_cish StdCallConv = True
861
862 -- ---------------------------------------------------------------------
863 -- Find and print local and external declarations for a list of
864 -- Cmm statements.
865 -- 
866 pprTempAndExternDecls :: [CmmBasicBlock] -> (SDoc{-temps-}, SDoc{-externs-})
867 pprTempAndExternDecls stmts 
868   = (vcat (map pprTempDecl (uniqSetToList temps)), 
869      vcat (map (pprExternDecl False{-ToDo-}) (keysFM lbls)))
870   where (temps, lbls) = runTE (mapM_ te_BB stmts)
871
872 pprDataExterns :: [CmmStatic] -> SDoc
873 pprDataExterns statics
874   = vcat (map (pprExternDecl False{-ToDo-}) (keysFM lbls))
875   where (_, lbls) = runTE (mapM_ te_Static statics)
876
877 pprTempDecl :: LocalReg -> SDoc
878 pprTempDecl l@(LocalReg _ rep)
879   = hcat [ machRepCType rep, space, pprLocalReg l, semi ]
880
881 pprExternDecl :: Bool -> CLabel -> SDoc
882 pprExternDecl in_srt lbl
883   -- do not print anything for "known external" things
884   | not (needsCDecl lbl) = empty
885   | Just sz <- foreignLabelStdcallInfo lbl = stdcall_decl sz
886   | otherwise =
887         hcat [ visibility, label_type lbl,
888                lparen, pprCLabel lbl, text ");" ]
889  where
890   label_type lbl | isCFunctionLabel lbl = ptext (sLit "F_")
891                  | otherwise            = ptext (sLit "I_")
892
893   visibility
894      | externallyVisibleCLabel lbl = char 'E'
895      | otherwise                   = char 'I'
896
897   -- If the label we want to refer to is a stdcall function (on Windows) then
898   -- we must generate an appropriate prototype for it, so that the C compiler will
899   -- add the @n suffix to the label (#2276)
900   stdcall_decl sz =
901         ptext (sLit "extern __attribute__((stdcall)) void ") <> pprCLabel lbl
902         <> parens (commafy (replicate (sz `quot` wORD_SIZE) (machRep_U_CType wordWidth)))
903         <> semi
904
905 type TEState = (UniqSet LocalReg, FiniteMap CLabel ())
906 newtype TE a = TE { unTE :: TEState -> (a, TEState) }
907
908 instance Monad TE where
909    TE m >>= k  = TE $ \s -> case m s of (a, s') -> unTE (k a) s'
910    return a    = TE $ \s -> (a, s)
911
912 te_lbl :: CLabel -> TE ()
913 te_lbl lbl = TE $ \(temps,lbls) -> ((), (temps, addToFM lbls lbl ()))
914
915 te_temp :: LocalReg -> TE ()
916 te_temp r = TE $ \(temps,lbls) -> ((), (addOneToUniqSet temps r, lbls))
917
918 runTE :: TE () -> TEState
919 runTE (TE m) = snd (m (emptyUniqSet, emptyFM))
920
921 te_Static :: CmmStatic -> TE ()
922 te_Static (CmmStaticLit lit) = te_Lit lit
923 te_Static _ = return ()
924
925 te_BB :: CmmBasicBlock -> TE ()
926 te_BB (BasicBlock _ ss)         = mapM_ te_Stmt ss
927
928 te_Lit :: CmmLit -> TE ()
929 te_Lit (CmmLabel l) = te_lbl l
930 te_Lit (CmmLabelOff l _) = te_lbl l
931 te_Lit (CmmLabelDiffOff l1 l2 _) = te_lbl l1
932 te_Lit _ = return ()
933
934 te_Stmt :: CmmStmt -> TE ()
935 te_Stmt (CmmAssign r e)         = te_Reg r >> te_Expr e
936 te_Stmt (CmmStore l r)          = te_Expr l >> te_Expr r
937 te_Stmt (CmmCall _ rs es _ _)   = mapM_ (te_temp.hintlessCmm) rs >>
938                                   mapM_ (te_Expr.hintlessCmm) es
939 te_Stmt (CmmCondBranch e _)     = te_Expr e
940 te_Stmt (CmmSwitch e _)         = te_Expr e
941 te_Stmt (CmmJump e _)           = te_Expr e
942 te_Stmt _                       = return ()
943
944 te_Expr :: CmmExpr -> TE ()
945 te_Expr (CmmLit lit)            = te_Lit lit
946 te_Expr (CmmLoad e _)           = te_Expr e
947 te_Expr (CmmReg r)              = te_Reg r
948 te_Expr (CmmMachOp _ es)        = mapM_ te_Expr es
949 te_Expr (CmmRegOff r _)         = te_Reg r
950
951 te_Reg :: CmmReg -> TE ()
952 te_Reg (CmmLocal l) = te_temp l
953 te_Reg _            = return ()
954
955
956 -- ---------------------------------------------------------------------
957 -- C types for MachReps
958
959 cCast :: SDoc -> CmmExpr -> SDoc
960 cCast ty expr = parens ty <> pprExpr1 expr
961
962 cLoad :: CmmExpr -> CmmType -> SDoc
963 #ifdef BEWARE_LOAD_STORE_ALIGNMENT
964 cLoad expr rep =
965     let decl = machRepCType rep <+> ptext (sLit "x") <> semi
966         struct = ptext (sLit "struct") <+> braces (decl)
967         packed_attr = ptext (sLit "__attribute__((packed))")
968         cast = parens (struct <+> packed_attr <> char '*')
969     in parens (cast <+> pprExpr1 expr) <> ptext (sLit "->x")
970 #else
971 cLoad expr rep = char '*' <> parens (cCast (machRepPtrCType rep) expr)
972 #endif
973
974 isCmmWordType :: CmmType -> Bool
975 -- True of GcPtrReg/NonGcReg of native word size
976 isCmmWordType ty = not (isFloatType ty) 
977                    && typeWidth ty == wordWidth
978
979 -- This is for finding the types of foreign call arguments.  For a pointer
980 -- argument, we always cast the argument to (void *), to avoid warnings from
981 -- the C compiler.
982 machRepHintCType :: CmmType -> ForeignHint -> SDoc
983 machRepHintCType rep AddrHint    = ptext (sLit "void *")
984 machRepHintCType rep SignedHint = machRep_S_CType (typeWidth rep)
985 machRepHintCType rep _other     = machRepCType rep
986
987 machRepPtrCType :: CmmType -> SDoc
988 machRepPtrCType r | isCmmWordType r = ptext (sLit "P_")
989                   | otherwise       = machRepCType r <> char '*'
990
991 machRepCType :: CmmType -> SDoc
992 machRepCType ty | isFloatType ty = machRep_F_CType w
993                 | otherwise      = machRep_U_CType w
994                 where
995                   w = typeWidth ty
996
997 machRep_F_CType :: Width -> SDoc
998 machRep_F_CType W32 = ptext (sLit "StgFloat") -- ToDo: correct?
999 machRep_F_CType W64 = ptext (sLit "StgDouble")
1000 machRep_F_CType _   = panic "machRep_F_CType"
1001
1002 machRep_U_CType :: Width -> SDoc
1003 machRep_U_CType w | w == wordWidth = ptext (sLit "W_")
1004 machRep_U_CType W8  = ptext (sLit "StgWord8")
1005 machRep_U_CType W16 = ptext (sLit "StgWord16")
1006 machRep_U_CType W32 = ptext (sLit "StgWord32")
1007 machRep_U_CType W64 = ptext (sLit "StgWord64")
1008 machRep_U_CType _   = panic "machRep_U_CType"
1009
1010 machRep_S_CType :: Width -> SDoc
1011 machRep_S_CType w | w == wordWidth = ptext (sLit "I_")
1012 machRep_S_CType W8  = ptext (sLit "StgInt8")
1013 machRep_S_CType W16 = ptext (sLit "StgInt16")
1014 machRep_S_CType W32 = ptext (sLit "StgInt32")
1015 machRep_S_CType W64 = ptext (sLit "StgInt64")
1016 machRep_S_CType _   = panic "machRep_S_CType"
1017   
1018
1019 -- ---------------------------------------------------------------------
1020 -- print strings as valid C strings
1021
1022 pprStringInCStyle :: [Word8] -> SDoc
1023 pprStringInCStyle s = doubleQuotes (text (concatMap charToC s))
1024
1025 charToC :: Word8 -> String
1026 charToC w = 
1027   case chr (fromIntegral w) of
1028         '\"' -> "\\\""
1029         '\'' -> "\\\'"
1030         '\\' -> "\\\\"
1031         c | c >= ' ' && c <= '~' -> [c]
1032           | otherwise -> ['\\',
1033                          chr (ord '0' + ord c `div` 64),
1034                          chr (ord '0' + ord c `div` 8 `mod` 8),
1035                          chr (ord '0' + ord c         `mod` 8)]
1036
1037 -- ---------------------------------------------------------------------------
1038 -- Initialising static objects with floating-point numbers.  We can't
1039 -- just emit the floating point number, because C will cast it to an int
1040 -- by rounding it.  We want the actual bit-representation of the float.
1041
1042 -- This is a hack to turn the floating point numbers into ints that we
1043 -- can safely initialise to static locations.
1044
1045 big_doubles 
1046   | widthInBytes W64 == 2 * wORD_SIZE  = True
1047   | widthInBytes W64 == wORD_SIZE      = False
1048   | otherwise = panic "big_doubles"
1049
1050 castFloatToIntArray :: STUArray s Int Float -> ST s (STUArray s Int Int)
1051 castFloatToIntArray = castSTUArray
1052
1053 castDoubleToIntArray :: STUArray s Int Double -> ST s (STUArray s Int Int)
1054 castDoubleToIntArray = castSTUArray
1055
1056 -- floats are always 1 word
1057 floatToWord :: Rational -> CmmLit
1058 floatToWord r
1059   = runST (do
1060         arr <- newArray_ ((0::Int),0)
1061         writeArray arr 0 (fromRational r)
1062         arr' <- castFloatToIntArray arr
1063         i <- readArray arr' 0
1064         return (CmmInt (toInteger i) wordWidth)
1065     )
1066
1067 doubleToWords :: Rational -> [CmmLit]
1068 doubleToWords r
1069   | big_doubles                         -- doubles are 2 words
1070   = runST (do
1071         arr <- newArray_ ((0::Int),1)
1072         writeArray arr 0 (fromRational r)
1073         arr' <- castDoubleToIntArray arr
1074         i1 <- readArray arr' 0
1075         i2 <- readArray arr' 1
1076         return [ CmmInt (toInteger i1) wordWidth
1077                , CmmInt (toInteger i2) wordWidth
1078                ]
1079     )
1080   | otherwise                           -- doubles are 1 word
1081   = runST (do
1082         arr <- newArray_ ((0::Int),0)
1083         writeArray arr 0 (fromRational r)
1084         arr' <- castDoubleToIntArray arr
1085         i <- readArray arr' 0
1086         return [ CmmInt (toInteger i) wordWidth ]
1087     )
1088
1089 -- ---------------------------------------------------------------------------
1090 -- Utils
1091
1092 wordShift :: Int
1093 wordShift = widthInLog wordWidth
1094
1095 commafy :: [SDoc] -> SDoc
1096 commafy xs = hsep $ punctuate comma xs
1097
1098 -- Print in C hex format: 0x13fa
1099 pprHexVal :: Integer -> Width -> SDoc
1100 pprHexVal 0 _ = ptext (sLit "0x0")
1101 pprHexVal w rep
1102   | w < 0     = parens (char '-' <> ptext (sLit "0x") <> go (-w) <> repsuffix rep)
1103   | otherwise = ptext (sLit "0x") <> go w <> repsuffix rep
1104   where
1105         -- type suffix for literals:
1106         -- Integer literals are unsigned in Cmm/C.  We explicitly cast to
1107         -- signed values for doing signed operations, but at all other
1108         -- times values are unsigned.  This also helps eliminate occasional
1109         -- warnings about integer overflow from gcc.
1110
1111         -- on 32-bit platforms, add "ULL" to 64-bit literals
1112       repsuffix W64 | wORD_SIZE == 4 = ptext (sLit "ULL")
1113         -- on 64-bit platforms with 32-bit int, add "L" to 64-bit literals
1114       repsuffix W64 | cINT_SIZE == 4 = ptext (sLit "UL")
1115       repsuffix _ = char 'U'
1116       
1117       go 0 = empty
1118       go w' = go q <> dig
1119            where
1120              (q,r) = w' `quotRem` 16
1121              dig | r < 10    = char (chr (fromInteger r + ord '0'))
1122                  | otherwise = char (chr (fromInteger r - 10 + ord 'a'))
1123