[Git][ghc/ghc][wip/andreask/bitcast_panic] cmmMachOpFoldM: Add missing pattern matches for bitcasts.
Andreas Klebinger (@AndreasK)
gitlab at gitlab.haskell.org
Thu Feb 27 20:39:16 UTC 2025
Andreas Klebinger pushed to branch wip/andreask/bitcast_panic at Glasgow Haskell Compiler / GHC
Commits:
3a55819b by Andreas Klebinger at 2025-02-27T21:16:50+01:00
cmmMachOpFoldM: Add missing pattern matches for bitcasts.
Fixes #25771
- - - - -
1 changed file:
- compiler/GHC/Cmm/Opt.hs
Changes:
=====================================
compiler/GHC/Cmm/Opt.hs
=====================================
@@ -63,18 +63,23 @@ cmmMachOpFoldM _ (MO_VF_Broadcast lg _w) exprs =
[CmmLit l] -> Just $! CmmLit (CmmVec $ replicate lg l)
_ -> Nothing
cmmMachOpFoldM _ op [CmmLit (CmmInt x rep)]
- = Just $! case op of
- MO_S_Neg _ -> CmmLit (CmmInt (narrowS rep (-x)) rep)
- MO_Not _ -> CmmLit (CmmInt (complement x) rep)
+ = case op of
+ MO_S_Neg _ -> Just $! CmmLit (CmmInt (narrowS rep (-x)) rep)
+ MO_Not _ -> Just $! CmmLit (CmmInt (complement x) rep)
-- these are interesting: we must first narrow to the
-- "from" type, in order to truncate to the correct size.
-- The final narrow/widen to the destination type
-- is implicit in the CmmLit.
- MO_SF_Round _frm to -> CmmLit (CmmFloat (fromInteger x) to)
- MO_SS_Conv from to -> CmmLit (CmmInt (narrowS from x) to)
- MO_UU_Conv from to -> CmmLit (CmmInt (narrowU from x) to)
- MO_XX_Conv from to -> CmmLit (CmmInt (narrowS from x) to)
+ MO_SF_Round _frm to -> Just $! CmmLit (CmmFloat (fromInteger x) to)
+ MO_SS_Conv from to -> Just $! CmmLit (CmmInt (narrowS from x) to)
+ MO_UU_Conv from to -> Just $! CmmLit (CmmInt (narrowU from x) to)
+ MO_XX_Conv from to -> Just $! CmmLit (CmmInt (narrowS from x) to)
+
+ -- Not as simply as it seems, since CmmFloat uses Rational, so skipping those
+ -- for now ...
+ MO_WF_Bitcast _w -> Nothing
+ MO_FW_Bitcast _w -> Nothing
_ -> panic $ "cmmMachOpFoldM: unknown unary op: " ++ show op
-- Eliminate shifts that are wider than the shiftee
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/3a55819b7980488c1f6672e27255a12230a6084a
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/3a55819b7980488c1f6672e27255a12230a6084a
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250227/bee9474d/attachment-0001.html>
More information about the ghc-commits
mailing list