summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-11-22 21:18:20 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-12-02 18:13:31 -0500
commite19e9e71739ffd01d6557256b59b3bd26651a4ad (patch)
tree5acb35c8c22d11af1de0cdd78e439c32ff675fd3
parentadc7f108141a973b6dcb02a7836eed65d61230e8 (diff)
downloadhaskell-e19e9e71739ffd01d6557256b59b3bd26651a4ad.tar.gz
CmmToC: Fix width of shift operations
Under C's implicit widening rules, the result of an operation like (a >> b) where a::Word8 and b::Word will have type Word, yet we want Word.
-rw-r--r--compiler/GHC/CmmToC.hs18
1 files changed, 15 insertions, 3 deletions
diff --git a/compiler/GHC/CmmToC.hs b/compiler/GHC/CmmToC.hs
index e259cdb55d..483c9be578 100644
--- a/compiler/GHC/CmmToC.hs
+++ b/compiler/GHC/CmmToC.hs
@@ -438,12 +438,18 @@ pprMachOpApp platform mop args
| otherwise
= pprMachOpApp' platform mop args
--- Comparisons in C have type 'int', but we want type W_ (this is what
--- resultRepOfMachOp says). The other C operations inherit their type
--- from their operands, so no casting is required.
+-- | The type of most operations is determined by the operands. However, there are a few exceptions. For these we explicitly cast the result.
machOpNeedsCast :: MachOp -> Maybe SDoc
machOpNeedsCast mop
+ -- Comparisons in C have type 'int', but we want type W_ (this is what
+ -- resultRepOfMachOp says).
| isComparisonMachOp mop = Just mkW_
+ -- A shift operation like (a >> b) where a::Word8 and b::Word has type Word
+ -- in C yet we want a Word8
+ | w <- shiftMachOp mop = let ty
+ | signedOp mop = machRep_S_CType platform w
+ | otherwise = machRep_U_CType platform w
+ in Just $ parens ty
| otherwise = Nothing
pprMachOpApp' :: Platform -> MachOp -> [CmmExpr] -> SDoc
@@ -771,6 +777,12 @@ signedOp (MO_SS_Conv _ _) = True
signedOp (MO_SF_Conv _ _) = True
signedOp _ = False
+shiftOp :: MachOp -> Maybe Width
+shiftOp (MO_Shl w) = Just w
+shiftOp (MO_U_Shr w) = Just w
+shiftOp (MO_S_Shr w) = Just w
+shiftOp _ = Nothing
+
floatComparison :: MachOp -> Bool -- comparison between float args
floatComparison (MO_F_Eq _) = True
floatComparison (MO_F_Ne _) = True