[Git][ghc/ghc][wip/with2-primop] Adapt to Simon's simplifier approach
Ben Gamari
gitlab at gitlab.haskell.org
Wed Apr 15 23:50:02 UTC 2020
Ben Gamari pushed to branch wip/with2-primop at Glasgow Haskell Compiler / GHC
Commits:
2ccce995 by Ben Gamari at 2020-04-15T19:49:54-04:00
Adapt to Simon's simplifier approach
- - - - -
3 changed files:
- compiler/GHC/Core/Op/Simplify.hs
- compiler/prelude/PrelNames.hs
- libraries/base/GHC/ForeignPtr.hs
Changes:
=====================================
compiler/GHC/Core/Op/Simplify.hs
=====================================
@@ -15,7 +15,6 @@ import GhcPrelude
import GHC.Platform
import GHC.Driver.Session
-import GHC.Core.Arity ( etaExpand )
import GHC.Core.Op.Simplify.Monad
import GHC.Core.Type hiding ( substTy, substTyVar, extendTvSubst, extendCvSubst )
import GHC.Core.Op.Simplify.Env
@@ -1791,40 +1790,6 @@ completeCall env var cont
; dump_inline expr cont
; simplExprF (zapSubstEnv env) expr cont }
- -- Push strict contexts into with# continuation
- --
- -- That is,
- --
- -- K[keepAlive# @arg_rep @arg_ty @res_rep @res_ty x (\s -> rhs) s0] :: (out_ty :: TYPE out_rep)
- -- ~>
- -- keepAlive# @arg_rep @arg_ty @out_rep @out_ty x (\s -> K[rhs]) s0
- | var `hasKey` keepAliveIdKey
- , ApplyToTy arg_rep hole1 cont1 <- -- cont
- pprTrace "completeCall(keepAlive#)" (ppr var $$ ppr cont) cont
- , ApplyToTy arg_ty hole2 cont2 <- cont1
- , ApplyToTy _res_rep _ cont3 <- cont2
- , ApplyToTy _res_ty _ cont4 <- cont3
- , ApplyToVal dup5 x env5 cont5 <- cont4
- , ApplyToVal dup6 f env6 cont6 <- cont5
- , ApplyToVal dup7 s0 env7 cont7 <- cont6
- , not $ contIsStop cont7
- , Lam f_arg f_rhs <- etaExpand 1 f
- = do { let out_ty = contResultType cont
- out_rep = getRuntimeRep out_ty
- ; (floats1, f') <- rebuild env6 f_rhs cont7
- ; let cont' =
- ApplyToTy arg_rep hole1
- $ ApplyToTy arg_ty hole2
- $ ApplyToTy out_rep undefined
- $ ApplyToTy out_ty undefined
- $ ApplyToVal dup5 x env5
- $ ApplyToVal dup6 (Lam f_arg f') env6
- $ ApplyToVal dup7 s0 env7
- $ mkBoringStop out_ty
- ; (floats2, result) <- completeCall env var cont'
- ; pprTrace "rebuilt" (ppr result) $ return (floats1 `addFloats` floats2, result)
- }
-
| otherwise
-- Don't inline; instead rebuild the call
= do { rule_base <- getSimplRules
@@ -1907,6 +1872,37 @@ rebuildCall env info@(ArgInfo { ai_fun = fun, ai_args = rev_args
_ -> True
+---------- Simplify continuation-passing primops --------------
+-- Push strict contexts into keepAlive# continuation
+--
+-- That is,
+--
+-- K[keepAlive# @arg_rep @arg_ty @res_rep @res_ty x (\s -> rhs) s0] :: (out_ty :: TYPE out_rep)
+-- ~>
+-- keepAlive# @arg_rep @arg_ty @out_rep @out_ty x (\s -> K[rhs]) s0
+rebuildCall env (ArgInfo { ai_fun = fun, ai_args = rev_args }) cont
+ | fun `hasKey` keepAliveIdKey
+ , [ ValArg s0
+ , ValArg (Lam f_arg f_body)
+ , ValArg x
+ , TyArg {}
+ , TyArg {}
+ , TyArg {as_arg_ty=arg_ty}
+ , TyArg {as_arg_ty=arg_rep}
+ ] <- rev_args
+ = do { (env', f_arg) <- simplLamBndr (zapSubstEnv env) f_arg
+ ; f_body' <- simplExprC env' f_body cont
+ ; let f' = Lam f_arg f_body'
+ ty' = contResultType cont
+ call' = mkApps (Var fun)
+ [ mkTyArg (getRuntimeRep ty'), mkTyArg ty'
+ , mkTyArg arg_rep, mkTyArg arg_ty
+ , x
+ , f'
+ , s0
+ ]
+ ; return (emptyFloats env, call') }
+
---------- Simplify applications and casts --------------
rebuildCall env info (CastIt co cont)
= rebuildCall env (addCastTo info co) cont
=====================================
compiler/prelude/PrelNames.hs
=====================================
@@ -246,7 +246,6 @@ basicKnownKeyNames
ioTyConName, ioDataConName,
runMainIOName,
runRWName,
- keepAliveIdName,
-- Type representation types
trModuleTyConName, trModuleDataConName,
@@ -912,10 +911,9 @@ and it's convenient to write them all down in one place.
wildCardName :: Name
wildCardName = mkSystemVarName wildCardKey (fsLit "wild")
-runMainIOName, runRWName, keepAliveIdName :: Name
+runMainIOName, runRWName :: Name
runMainIOName = varQual gHC_TOP_HANDLER (fsLit "runMainIO") runMainKey
runRWName = varQual gHC_MAGIC (fsLit "runRW#") runRWKey
-keepAliveIdName = varQual gHC_MAGIC (fsLit "keepAlive#") keepAliveIdKey
orderingTyConName, ordLTDataConName, ordEQDataConName, ordGTDataConName :: Name
orderingTyConName = tcQual gHC_TYPES (fsLit "Ordering") orderingTyConKey
=====================================
libraries/base/GHC/ForeignPtr.hs
=====================================
@@ -412,7 +412,7 @@ withForeignPtr :: ForeignPtr a -> (Ptr a -> IO b) -> IO b
-- 'Storable' class.
withForeignPtr fo@(ForeignPtr _ r) f = IO $ \s ->
case f (unsafeForeignPtrToPtr fo) of
- IO action# -> keepAlive# r (\s' -> action# s') s
+ IO action# -> keepAlive# r action# s
touchForeignPtr :: ForeignPtr a -> IO ()
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2ccce995c91f8c037f906d66df5865b01a687f7b
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/2ccce995c91f8c037f906d66df5865b01a687f7b
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/20200415/4cefcd14/attachment-0001.html>
More information about the ghc-commits
mailing list