hermit-1.0.1: src/HERMIT/Dictionary/Local/Cast.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE FlexibleContexts #-}
module HERMIT.Dictionary.Local.Cast
( -- * Rewrites on Case Expressions
externals
, castElimR
, castElimReflR
, castElimSymR
, castFloatAppR
, castFloatLamR
, castElimSymPlusR -- TODO: revisit
, castElimUnsafeR
)
where
import Control.Arrow
import Control.Monad
import HERMIT.Core
import HERMIT.External
import HERMIT.GHC
import HERMIT.Kure
import HERMIT.Dictionary.Common
------------------------------------------------------------------------------
-- | Externals relating to Case expressions.
externals :: [External]
externals =
[ external "cast-elim" (promoteExprR castElimR :: RewriteH LCore)
[ "cast-elim-refl <+ cast-elim-sym" ] .+ Shallow -- don't include in "Bash", as sub-rewrites are tagged "Bash" already.
, external "cast-elim-refl" (promoteExprR castElimReflR :: RewriteH LCore)
[ "cast e co ==> e ; if co is a reflexive coercion" ] .+ Shallow
, external "cast-elim-sym" (promoteExprR castElimSymR :: RewriteH LCore)
[ "removes pairs of symmetric casts" ] .+ Shallow
, external "cast-elim-sym-plus" (promoteExprR castElimSymPlusR :: RewriteH LCore)
[ "removes pairs of symmetric casts possibly separated by let or case forms" ] .+ Deep .+ TODO
, external "cast-float-app" (promoteExprR castFloatAppR :: RewriteH LCore)
[ "(cast e (c1 -> c2)) x ==> cast (e (cast x (sym c1))) c2" ] .+ Shallow
, external "cast-float-lam" (promoteExprR castFloatLamR :: RewriteH LCore)
[ "\\ x::a -> cast x (a -> b) ==> cast (\\x::a -> x) ((a -> a) -> (a -> b))" ] .+ Shallow
, external "cast-elim-unsafe" (promoteExprR castElimUnsafeR :: RewriteH LCore)
[ "removes casts regardless of whether it is safe to do so" ] .+ Shallow .+ Experiment .+ Unsafe .+ TODO
]
------------------------------------------------------------------------------
castElimR :: MonadCatch m => Rewrite c m CoreExpr
castElimR = setFailMsg "Cast elimination failed: " $
castElimReflR <+ castElimSymR
castElimReflR :: MonadCatch m => Rewrite c m CoreExpr
castElimReflR = prefixFailMsg "Reflexive cast elimination failed: " $
withPatFailMsg (wrongExprForm "Cast e co") $
do Cast e co <- idR
Pair a b <- return $ coercionKind co
guardMsg (eqType a b) "not a reflexive coercion."
return e
castElimSymR :: MonadCatch m => Rewrite c m CoreExpr
castElimSymR = prefixFailMsg "Symmetric cast elimination failed: " $
withPatFailMsg (wrongExprForm "Cast (Cast e co1) co2") $
do Cast (Cast e co1) co2 <- idR
let Pair a b = coercionKind co1
Pair b' a' = coercionKind co2
guardMsg (eqType a a' && eqType b b') "coercions are not symmetric."
return e
castFloatAppR :: MonadCatch m => Rewrite c m CoreExpr
castFloatAppR = prefixFailMsg "Cast float from application failed: " $
withPatFailMsg (wrongExprForm "App (Cast e1 co) e2") $
do App (Cast e1 co) e2 <- idR
case co of
TyConAppCo _r t [c1, c2] -> do
True <- return (isFunTyCon t)
return $ Cast (App e1 (Cast e2 (SymCo c1))) c2
#if __GLASGOW_HASKELL__ > 710
ForAllCo{} -> fail "castFloatAppR: ForAllCo TODO"
#else
ForAllCo t c2 -> do
Type x' <- return e2
return (Cast (App e1 e2) (substCo (extendTvSubst emptySubst t x') c2))
#endif
_ -> fail "castFloatApp"
-- (\ x::a -> cast e (b -> c)) :: a -> c
-- cast (\x::a -> e) ((a -> b) -> (a -> c))
castFloatLamR :: MonadCatch m => Rewrite c m CoreExpr
castFloatLamR = prefixFailMsg "Cast float from lambda failed: " $
withPatFailMsg (wrongExprForm "Lam b (Cast e co)") $ do
Lam b (Cast e co) <- idR
let r = coercionRole co
aTy = varType b
return (Cast (Lam b e) (mkFunCo r (mkReflCo r aTy) co))
#if __GLASGOW_HASKELL__ <= 710
-- | Attempts to tease a coercion apart into a type constructor and the application
-- of a number of coercion arguments to that constructor
splitTyConAppCo_maybe :: Coercion -> Maybe (TyCon, [Coercion])
splitTyConAppCo_maybe (Refl ro ty) = (fmap . second . map) (Refl ro) (splitTyConApp_maybe ty)
splitTyConAppCo_maybe (TyConAppCo _r tc cs) = Just (tc, cs)
splitTyConAppCo_maybe _ = Nothing
#endif
-- TODO: revisit
castElimSymPlusR :: (ExtendPath c Crumb, Monad m) => Rewrite c m CoreExpr
castElimSymPlusR = castT idR idR (flip go) >>> joinT
where
go :: Monad m => Coercion -> CoreExpr -> m CoreExpr
go _ (Var _) = fail "no symmetric casts found"
go _ (Lit _) = fail "no symmetric casts found"
go _ (App _ _) = fail "app unimplemented" {- focus [0] (go c1 (add arg)) -}
go c1 (Lam x body)
| Just (con, [arg, res]) <- splitTyConAppCo_maybe c1
, con == funTyCon
, Pair arg1 arg2 <- coercionKind arg
, arg1 `eqType` arg2 = do
body' <- go res body
return (Lam x body')
| otherwise = fail "lam unimplemented" {-focus [0] (go c1 (drop arg))-}
go c1 (Let bs body) = do body' <- go c1 body
return (Let bs body')
go c1 (Case scr x _ alts) = do alts' <- sequence [liftM ((,,) c a) (go c1 b) | (c,a,b) <- alts]
let t' = exprType (case head alts' of (_,_,b) -> b)
return (Case scr x t' alts')
go c1 (Cast e c2) = if sym c1 c2 then return e else fail "no symmetric casts found"
go _ (Tick{}) = fail "unexpected tick"
go _ (Type{}) = fail "unexpected type"
go _ (Coercion{}) = fail "unexpected coercion"
sym :: Coercion -> Coercion -> Bool
sym c1 c2
| Pair c11 c12 <- coercionKind c1,
Pair c21 c22 <- coercionKind c2,
c11 `eqType` c22, c21 `eqType` c12 = True
| otherwise = False
--sym (SymCo c1) c2 = geq c1 c2
--sym c1 (SymCo c2) = geq c1 c2
--sym _ _ = False
castElimUnsafeR :: (ExtendPath c Crumb, Monad m) => Rewrite c m CoreExpr
castElimUnsafeR = castT idR idR const