module Cryptol.Transform.Specialize
where
import Cryptol.TypeCheck.AST
import Cryptol.TypeCheck.TypeMap
import Cryptol.TypeCheck.Subst
import qualified Cryptol.ModuleSystem as M
import qualified Cryptol.ModuleSystem.Env as M
import qualified Cryptol.ModuleSystem.Monad as M
import Cryptol.ModuleSystem.Name
import Data.Map (Map)
import qualified Data.Map as Map
import Data.Maybe (catMaybes)
import MonadLib hiding (mapM)
type SpecCache = Map Name (Decl, TypesMap (Name, Maybe Decl))
type SpecT m a = StateT SpecCache (M.ModuleT m) a
type SpecM a = SpecT IO a
runSpecT :: SpecCache -> SpecT m a -> M.ModuleT m (a, SpecCache)
runSpecT :: SpecCache -> SpecT m a -> ModuleT m (a, SpecCache)
runSpecT SpecCache
s SpecT m a
m = SpecCache -> SpecT m a -> ModuleT m (a, SpecCache)
forall i (m :: * -> *) a. i -> StateT i m a -> m (a, i)
runStateT SpecCache
s SpecT m a
m
liftSpecT :: Monad m => M.ModuleT m a -> SpecT m a
liftSpecT :: ModuleT m a -> SpecT m a
liftSpecT ModuleT m a
m = ModuleT m a -> SpecT m a
forall (t :: (* -> *) -> * -> *) (m :: * -> *) a.
(MonadT t, Monad m) =>
m a -> t m a
lift ModuleT m a
m
getSpecCache :: Monad m => SpecT m SpecCache
getSpecCache :: SpecT m SpecCache
getSpecCache = SpecT m SpecCache
forall (m :: * -> *) i. StateM m i => m i
get
setSpecCache :: Monad m => SpecCache -> SpecT m ()
setSpecCache :: SpecCache -> SpecT m ()
setSpecCache = SpecCache -> SpecT m ()
forall (m :: * -> *) i. StateM m i => i -> m ()
set
modifySpecCache :: Monad m => (SpecCache -> SpecCache) -> SpecT m ()
modifySpecCache :: (SpecCache -> SpecCache) -> SpecT m ()
modifySpecCache = (SpecCache -> SpecCache) -> SpecT m ()
forall (m :: * -> *) s. StateM m s => (s -> s) -> m ()
modify
modify :: StateM m s => (s -> s) -> m ()
modify :: (s -> s) -> m ()
modify s -> s
f = m s
forall (m :: * -> *) i. StateM m i => m i
get m s -> (s -> m ()) -> m ()
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= (s -> m ()
forall (m :: * -> *) i. StateM m i => i -> m ()
set (s -> m ()) -> (s -> s) -> s -> m ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. s -> s
f)
specialize :: Expr -> M.ModuleCmd Expr
specialize :: Expr -> ModuleCmd Expr
specialize Expr
expr (EvalOpts
ev, FilePath -> IO ByteString
byteReader, ModuleEnv
modEnv) = SpecT IO Expr
-> IO (Either ModuleError (Expr, ModuleEnv), [ModuleWarning])
forall a.
SpecT IO a
-> IO (Either ModuleError (a, ModuleEnv), [ModuleWarning])
run (SpecT IO Expr
-> IO (Either ModuleError (Expr, ModuleEnv), [ModuleWarning]))
-> SpecT IO Expr
-> IO (Either ModuleError (Expr, ModuleEnv), [ModuleWarning])
forall a b. (a -> b) -> a -> b
$ do
let extDgs :: [DeclGroup]
extDgs = ModuleEnv -> [DeclGroup]
allDeclGroups ModuleEnv
modEnv
let ([TParam]
tparams, Expr
expr') = Expr -> ([TParam], Expr)
destETAbs Expr
expr
Expr
spec' <- Expr -> [DeclGroup] -> SpecT IO Expr
specializeEWhere Expr
expr' [DeclGroup]
extDgs
Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return ((TParam -> Expr -> Expr) -> Expr -> [TParam] -> Expr
forall (t :: * -> *) a b.
Foldable t =>
(a -> b -> b) -> b -> t a -> b
foldr TParam -> Expr -> Expr
ETAbs Expr
spec' [TParam]
tparams)
where
run :: SpecT IO a
-> IO (Either ModuleError (a, ModuleEnv), [ModuleWarning])
run = (EvalOpts, FilePath -> IO ByteString, ModuleEnv)
-> ModuleT IO a
-> IO (Either ModuleError (a, ModuleEnv), [ModuleWarning])
forall (m :: * -> *) a.
Monad m =>
(EvalOpts, FilePath -> m ByteString, ModuleEnv)
-> ModuleT m a
-> m (Either ModuleError (a, ModuleEnv), [ModuleWarning])
M.runModuleT (EvalOpts
ev, FilePath -> IO ByteString
byteReader, ModuleEnv
modEnv) (ModuleT IO a
-> IO (Either ModuleError (a, ModuleEnv), [ModuleWarning]))
-> (SpecT IO a -> ModuleT IO a)
-> SpecT IO a
-> IO (Either ModuleError (a, ModuleEnv), [ModuleWarning])
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ((a, SpecCache) -> a) -> ModuleT IO (a, SpecCache) -> ModuleT IO a
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (a, SpecCache) -> a
forall a b. (a, b) -> a
fst (ModuleT IO (a, SpecCache) -> ModuleT IO a)
-> (SpecT IO a -> ModuleT IO (a, SpecCache))
-> SpecT IO a
-> ModuleT IO a
forall b c a. (b -> c) -> (a -> b) -> a -> c
. SpecCache -> SpecT IO a -> ModuleT IO (a, SpecCache)
forall (m :: * -> *) a.
SpecCache -> SpecT m a -> ModuleT m (a, SpecCache)
runSpecT SpecCache
forall k a. Map k a
Map.empty
specializeExpr :: Expr -> SpecM Expr
specializeExpr :: Expr -> SpecT IO Expr
specializeExpr Expr
expr =
case Expr
expr of
EList [Expr]
es Type
t -> [Expr] -> Type -> Expr
EList ([Expr] -> Type -> Expr)
-> StateT SpecCache (ModuleT IO) [Expr]
-> StateT SpecCache (ModuleT IO) (Type -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (Expr -> SpecT IO Expr)
-> [Expr] -> StateT SpecCache (ModuleT IO) [Expr]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse Expr -> SpecT IO Expr
specializeExpr [Expr]
es StateT SpecCache (ModuleT IO) (Type -> Expr)
-> StateT SpecCache (ModuleT IO) Type -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Type -> StateT SpecCache (ModuleT IO) Type
forall (f :: * -> *) a. Applicative f => a -> f a
pure Type
t
ETuple [Expr]
es -> [Expr] -> Expr
ETuple ([Expr] -> Expr)
-> StateT SpecCache (ModuleT IO) [Expr] -> SpecT IO Expr
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (Expr -> SpecT IO Expr)
-> [Expr] -> StateT SpecCache (ModuleT IO) [Expr]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse Expr -> SpecT IO Expr
specializeExpr [Expr]
es
ERec RecordMap Ident Expr
fs -> RecordMap Ident Expr -> Expr
ERec (RecordMap Ident Expr -> Expr)
-> StateT SpecCache (ModuleT IO) (RecordMap Ident Expr)
-> SpecT IO Expr
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (Expr -> SpecT IO Expr)
-> RecordMap Ident Expr
-> StateT SpecCache (ModuleT IO) (RecordMap Ident Expr)
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse Expr -> SpecT IO Expr
specializeExpr RecordMap Ident Expr
fs
ESel Expr
e Selector
s -> Expr -> Selector -> Expr
ESel (Expr -> Selector -> Expr)
-> SpecT IO Expr
-> StateT SpecCache (ModuleT IO) (Selector -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e StateT SpecCache (ModuleT IO) (Selector -> Expr)
-> StateT SpecCache (ModuleT IO) Selector -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Selector -> StateT SpecCache (ModuleT IO) Selector
forall (f :: * -> *) a. Applicative f => a -> f a
pure Selector
s
ESet Type
ty Expr
e Selector
s Expr
v -> Type -> Expr -> Selector -> Expr -> Expr
ESet Type
ty (Expr -> Selector -> Expr -> Expr)
-> SpecT IO Expr
-> StateT SpecCache (ModuleT IO) (Selector -> Expr -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e StateT SpecCache (ModuleT IO) (Selector -> Expr -> Expr)
-> StateT SpecCache (ModuleT IO) Selector
-> StateT SpecCache (ModuleT IO) (Expr -> Expr)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Selector -> StateT SpecCache (ModuleT IO) Selector
forall (f :: * -> *) a. Applicative f => a -> f a
pure Selector
s StateT SpecCache (ModuleT IO) (Expr -> Expr)
-> SpecT IO Expr -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Expr -> SpecT IO Expr
specializeExpr Expr
v
EIf Expr
e1 Expr
e2 Expr
e3 -> Expr -> Expr -> Expr -> Expr
EIf (Expr -> Expr -> Expr -> Expr)
-> SpecT IO Expr
-> StateT SpecCache (ModuleT IO) (Expr -> Expr -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e1 StateT SpecCache (ModuleT IO) (Expr -> Expr -> Expr)
-> SpecT IO Expr -> StateT SpecCache (ModuleT IO) (Expr -> Expr)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Expr -> SpecT IO Expr
specializeExpr Expr
e2 StateT SpecCache (ModuleT IO) (Expr -> Expr)
-> SpecT IO Expr -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Expr -> SpecT IO Expr
specializeExpr Expr
e3
EComp Type
len Type
t Expr
e [[Match]]
mss -> Type -> Type -> Expr -> [[Match]] -> Expr
EComp Type
len Type
t (Expr -> [[Match]] -> Expr)
-> SpecT IO Expr
-> StateT SpecCache (ModuleT IO) ([[Match]] -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e StateT SpecCache (ModuleT IO) ([[Match]] -> Expr)
-> StateT SpecCache (ModuleT IO) [[Match]] -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> ([Match] -> StateT SpecCache (ModuleT IO) [Match])
-> [[Match]] -> StateT SpecCache (ModuleT IO) [[Match]]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse ((Match -> StateT SpecCache (ModuleT IO) Match)
-> [Match] -> StateT SpecCache (ModuleT IO) [Match]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse Match -> StateT SpecCache (ModuleT IO) Match
specializeMatch) [[Match]]
mss
EVar {} -> Expr -> SpecT IO Expr
specializeConst Expr
expr
ETAbs TParam
t Expr
e -> do
SpecCache
cache <- SpecT IO SpecCache
forall (m :: * -> *). Monad m => SpecT m SpecCache
getSpecCache
SpecCache -> SpecT IO ()
forall (m :: * -> *). Monad m => SpecCache -> SpecT m ()
setSpecCache SpecCache
forall k a. Map k a
Map.empty
Expr
e' <- Expr -> SpecT IO Expr
specializeExpr Expr
e
SpecCache -> SpecT IO ()
forall (m :: * -> *). Monad m => SpecCache -> SpecT m ()
setSpecCache SpecCache
cache
Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return (TParam -> Expr -> Expr
ETAbs TParam
t Expr
e')
ETApp {} -> Expr -> SpecT IO Expr
specializeConst Expr
expr
EApp Expr
e1 Expr
e2 -> Expr -> Expr -> Expr
EApp (Expr -> Expr -> Expr)
-> SpecT IO Expr -> StateT SpecCache (ModuleT IO) (Expr -> Expr)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e1 StateT SpecCache (ModuleT IO) (Expr -> Expr)
-> SpecT IO Expr -> SpecT IO Expr
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Expr -> SpecT IO Expr
specializeExpr Expr
e2
EAbs Name
qn Type
t Expr
e -> Name -> Type -> Expr -> Expr
EAbs Name
qn Type
t (Expr -> Expr) -> SpecT IO Expr -> SpecT IO Expr
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e
EProofAbs Type
p Expr
e -> Type -> Expr -> Expr
EProofAbs Type
p (Expr -> Expr) -> SpecT IO Expr -> SpecT IO Expr
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e
EProofApp {} -> Expr -> SpecT IO Expr
specializeConst Expr
expr
EWhere Expr
e [DeclGroup]
dgs -> Expr -> [DeclGroup] -> SpecT IO Expr
specializeEWhere Expr
e [DeclGroup]
dgs
specializeMatch :: Match -> SpecM Match
specializeMatch :: Match -> StateT SpecCache (ModuleT IO) Match
specializeMatch (From Name
qn Type
l Type
t Expr
e) = Name -> Type -> Type -> Expr -> Match
From Name
qn Type
l Type
t (Expr -> Match)
-> SpecT IO Expr -> StateT SpecCache (ModuleT IO) Match
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Expr -> SpecT IO Expr
specializeExpr Expr
e
specializeMatch (Let Decl
decl)
| [TParam] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null (Schema -> [TParam]
sVars (Decl -> Schema
dSignature Decl
decl)) = Match -> StateT SpecCache (ModuleT IO) Match
forall (m :: * -> *) a. Monad m => a -> m a
return (Decl -> Match
Let Decl
decl)
| Bool
otherwise = FilePath -> StateT SpecCache (ModuleT IO) Match
forall (m :: * -> *) a. MonadFail m => FilePath -> m a
fail FilePath
"unimplemented: specializeMatch Let unimplemented"
withDeclGroups :: [DeclGroup] -> SpecM a
-> SpecM (a, [DeclGroup], Map Name (TypesMap Name))
withDeclGroups :: [DeclGroup]
-> SpecM a -> SpecM (a, [DeclGroup], Map Name (TypesMap Name))
withDeclGroups [DeclGroup]
dgs SpecM a
action = do
SpecCache
origCache <- SpecT IO SpecCache
forall (m :: * -> *). Monad m => SpecT m SpecCache
getSpecCache
let decls :: [Decl]
decls = (DeclGroup -> [Decl]) -> [DeclGroup] -> [Decl]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap DeclGroup -> [Decl]
groupDecls [DeclGroup]
dgs
let newCache :: Map Name (Decl, List TypeMap a)
newCache = [(Name, (Decl, List TypeMap a))] -> Map Name (Decl, List TypeMap a)
forall k a. Ord k => [(k, a)] -> Map k a
Map.fromList [ (Decl -> Name
dName Decl
d, (Decl
d, List TypeMap a
forall (m :: * -> *) k a. TrieMap m k => m a
emptyTM)) | Decl
d <- [Decl]
decls ]
let savedCache :: SpecCache
savedCache = SpecCache -> Map Name (Decl, List TypeMap Any) -> SpecCache
forall k a b. Ord k => Map k a -> Map k b -> Map k a
Map.intersection SpecCache
origCache Map Name (Decl, List TypeMap Any)
forall a. Map Name (Decl, List TypeMap a)
newCache
SpecCache -> SpecT IO ()
forall (m :: * -> *). Monad m => SpecCache -> SpecT m ()
setSpecCache (SpecCache -> SpecCache -> SpecCache
forall k a. Ord k => Map k a -> Map k a -> Map k a
Map.union SpecCache
forall a. Map Name (Decl, List TypeMap a)
newCache SpecCache
origCache)
a
result <- SpecM a
action
let splitDecl :: Decl -> SpecM [Decl]
splitDecl :: Decl -> SpecM [Decl]
splitDecl Decl
d = do
~(Just (Decl
_, TypesMap (Name, Maybe Decl)
tm)) <- Name -> SpecCache -> Maybe (Decl, TypesMap (Name, Maybe Decl))
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup (Decl -> Name
dName Decl
d) (SpecCache -> Maybe (Decl, TypesMap (Name, Maybe Decl)))
-> SpecT IO SpecCache
-> StateT
SpecCache (ModuleT IO) (Maybe (Decl, TypesMap (Name, Maybe Decl)))
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> SpecT IO SpecCache
forall (m :: * -> *). Monad m => SpecT m SpecCache
getSpecCache
[Decl] -> SpecM [Decl]
forall (m :: * -> *) a. Monad m => a -> m a
return ([Maybe Decl] -> [Decl]
forall a. [Maybe a] -> [a]
catMaybes ([Maybe Decl] -> [Decl]) -> [Maybe Decl] -> [Decl]
forall a b. (a -> b) -> a -> b
$ (([Type], (Name, Maybe Decl)) -> Maybe Decl)
-> [([Type], (Name, Maybe Decl))] -> [Maybe Decl]
forall a b. (a -> b) -> [a] -> [b]
map ((Name, Maybe Decl) -> Maybe Decl
forall a b. (a, b) -> b
snd ((Name, Maybe Decl) -> Maybe Decl)
-> (([Type], (Name, Maybe Decl)) -> (Name, Maybe Decl))
-> ([Type], (Name, Maybe Decl))
-> Maybe Decl
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ([Type], (Name, Maybe Decl)) -> (Name, Maybe Decl)
forall a b. (a, b) -> b
snd) ([([Type], (Name, Maybe Decl))] -> [Maybe Decl])
-> [([Type], (Name, Maybe Decl))] -> [Maybe Decl]
forall a b. (a -> b) -> a -> b
$ TypesMap (Name, Maybe Decl) -> [([Type], (Name, Maybe Decl))]
forall (m :: * -> *) k a. TrieMap m k => m a -> [(k, a)]
toListTM TypesMap (Name, Maybe Decl)
tm)
let splitDeclGroup :: DeclGroup -> SpecM [DeclGroup]
splitDeclGroup :: DeclGroup -> SpecM [DeclGroup]
splitDeclGroup (Recursive [Decl]
ds) = do
[Decl]
ds' <- [[Decl]] -> [Decl]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([[Decl]] -> [Decl])
-> StateT SpecCache (ModuleT IO) [[Decl]] -> SpecM [Decl]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (Decl -> SpecM [Decl])
-> [Decl] -> StateT SpecCache (ModuleT IO) [[Decl]]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse Decl -> SpecM [Decl]
splitDecl [Decl]
ds
if [Decl] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [Decl]
ds'
then [DeclGroup] -> SpecM [DeclGroup]
forall (m :: * -> *) a. Monad m => a -> m a
return []
else [DeclGroup] -> SpecM [DeclGroup]
forall (m :: * -> *) a. Monad m => a -> m a
return [[Decl] -> DeclGroup
Recursive [Decl]
ds']
splitDeclGroup (NonRecursive Decl
d) = (Decl -> DeclGroup) -> [Decl] -> [DeclGroup]
forall a b. (a -> b) -> [a] -> [b]
map Decl -> DeclGroup
NonRecursive ([Decl] -> [DeclGroup]) -> SpecM [Decl] -> SpecM [DeclGroup]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Decl -> SpecM [Decl]
splitDecl Decl
d
[DeclGroup]
dgs' <- [[DeclGroup]] -> [DeclGroup]
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([[DeclGroup]] -> [DeclGroup])
-> StateT SpecCache (ModuleT IO) [[DeclGroup]] -> SpecM [DeclGroup]
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (DeclGroup -> SpecM [DeclGroup])
-> [DeclGroup] -> StateT SpecCache (ModuleT IO) [[DeclGroup]]
forall (t :: * -> *) (f :: * -> *) a b.
(Traversable t, Applicative f) =>
(a -> f b) -> t a -> f (t b)
traverse DeclGroup -> SpecM [DeclGroup]
splitDeclGroup [DeclGroup]
dgs
SpecCache
newCache' <- (SpecCache -> Map Name (Decl, List TypeMap Any) -> SpecCache)
-> Map Name (Decl, List TypeMap Any) -> SpecCache -> SpecCache
forall a b c. (a -> b -> c) -> b -> a -> c
flip SpecCache -> Map Name (Decl, List TypeMap Any) -> SpecCache
forall k a b. Ord k => Map k a -> Map k b -> Map k a
Map.intersection Map Name (Decl, List TypeMap Any)
forall a. Map Name (Decl, List TypeMap a)
newCache (SpecCache -> SpecCache)
-> SpecT IO SpecCache -> SpecT IO SpecCache
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> SpecT IO SpecCache
forall (m :: * -> *). Monad m => SpecT m SpecCache
getSpecCache
let nameTable :: Map Name (TypesMap Name)
nameTable = ((Decl, TypesMap (Name, Maybe Decl)) -> TypesMap Name)
-> SpecCache -> Map Name (TypesMap Name)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (((Name, Maybe Decl) -> Name)
-> TypesMap (Name, Maybe Decl) -> TypesMap Name
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap (Name, Maybe Decl) -> Name
forall a b. (a, b) -> a
fst (TypesMap (Name, Maybe Decl) -> TypesMap Name)
-> ((Decl, TypesMap (Name, Maybe Decl))
-> TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl))
-> TypesMap Name
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (Decl, TypesMap (Name, Maybe Decl)) -> TypesMap (Name, Maybe Decl)
forall a b. (a, b) -> b
snd) SpecCache
newCache'
(SpecCache -> SpecCache) -> SpecT IO ()
forall (m :: * -> *).
Monad m =>
(SpecCache -> SpecCache) -> SpecT m ()
modifySpecCache (SpecCache -> SpecCache -> SpecCache
forall k a. Ord k => Map k a -> Map k a -> Map k a
Map.union SpecCache
savedCache (SpecCache -> SpecCache)
-> (SpecCache -> SpecCache) -> SpecCache -> SpecCache
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (SpecCache -> Map Name (Decl, List TypeMap Any) -> SpecCache)
-> Map Name (Decl, List TypeMap Any) -> SpecCache -> SpecCache
forall a b c. (a -> b -> c) -> b -> a -> c
flip SpecCache -> Map Name (Decl, List TypeMap Any) -> SpecCache
forall k a b. Ord k => Map k a -> Map k b -> Map k a
Map.difference Map Name (Decl, List TypeMap Any)
forall a. Map Name (Decl, List TypeMap a)
newCache)
(a, [DeclGroup], Map Name (TypesMap Name))
-> SpecM (a, [DeclGroup], Map Name (TypesMap Name))
forall (m :: * -> *) a. Monad m => a -> m a
return (a
result, [DeclGroup]
dgs', Map Name (TypesMap Name)
nameTable)
specializeEWhere :: Expr -> [DeclGroup] -> SpecM Expr
specializeEWhere :: Expr -> [DeclGroup] -> SpecT IO Expr
specializeEWhere Expr
e [DeclGroup]
dgs = do
(Expr
e', [DeclGroup]
dgs', Map Name (TypesMap Name)
_) <- [DeclGroup]
-> SpecT IO Expr
-> SpecM (Expr, [DeclGroup], Map Name (TypesMap Name))
forall a.
[DeclGroup]
-> SpecM a -> SpecM (a, [DeclGroup], Map Name (TypesMap Name))
withDeclGroups [DeclGroup]
dgs (Expr -> SpecT IO Expr
specializeExpr Expr
e)
Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return (Expr -> SpecT IO Expr) -> Expr -> SpecT IO Expr
forall a b. (a -> b) -> a -> b
$ if [DeclGroup] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null [DeclGroup]
dgs'
then Expr
e'
else Expr -> [DeclGroup] -> Expr
EWhere Expr
e' [DeclGroup]
dgs'
specializeDeclGroups :: [DeclGroup] -> SpecM ([DeclGroup], Map Name (TypesMap Name))
specializeDeclGroups :: [DeclGroup] -> SpecM ([DeclGroup], Map Name (TypesMap Name))
specializeDeclGroups [DeclGroup]
dgs = do
let decls :: [Decl]
decls = (DeclGroup -> [Decl]) -> [DeclGroup] -> [Decl]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap DeclGroup -> [Decl]
groupDecls [DeclGroup]
dgs
let isMonoType :: Schema -> Bool
isMonoType Schema
s = [TParam] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null (Schema -> [TParam]
sVars Schema
s) Bool -> Bool -> Bool
&& [Type] -> Bool
forall (t :: * -> *) a. Foldable t => t a -> Bool
null (Schema -> [Type]
sProps Schema
s)
let monos :: [Expr]
monos = [ Name -> Expr
EVar (Decl -> Name
dName Decl
d) | Decl
d <- [Decl]
decls, Schema -> Bool
isMonoType (Decl -> Schema
dSignature Decl
d) ]
([Expr]
_, [DeclGroup]
dgs', Map Name (TypesMap Name)
names) <- [DeclGroup]
-> StateT SpecCache (ModuleT IO) [Expr]
-> SpecM ([Expr], [DeclGroup], Map Name (TypesMap Name))
forall a.
[DeclGroup]
-> SpecM a -> SpecM (a, [DeclGroup], Map Name (TypesMap Name))
withDeclGroups [DeclGroup]
dgs (StateT SpecCache (ModuleT IO) [Expr]
-> SpecM ([Expr], [DeclGroup], Map Name (TypesMap Name)))
-> StateT SpecCache (ModuleT IO) [Expr]
-> SpecM ([Expr], [DeclGroup], Map Name (TypesMap Name))
forall a b. (a -> b) -> a -> b
$ (Expr -> SpecT IO Expr)
-> [Expr] -> StateT SpecCache (ModuleT IO) [Expr]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
mapM Expr -> SpecT IO Expr
specializeExpr [Expr]
monos
([DeclGroup], Map Name (TypesMap Name))
-> SpecM ([DeclGroup], Map Name (TypesMap Name))
forall (m :: * -> *) a. Monad m => a -> m a
return ([DeclGroup]
dgs', Map Name (TypesMap Name)
names)
specializeConst :: Expr -> SpecM Expr
specializeConst :: Expr -> SpecT IO Expr
specializeConst Expr
e0 = do
let (Expr
e1, Int
n) = Expr -> (Expr, Int)
destEProofApps Expr
e0
let (Expr
e2, [Type]
ts) = Expr -> (Expr, [Type])
destETApps Expr
e1
case Expr
e2 of
EVar Name
qname ->
do SpecCache
cache <- SpecT IO SpecCache
forall (m :: * -> *). Monad m => SpecT m SpecCache
getSpecCache
case Name -> SpecCache -> Maybe (Decl, TypesMap (Name, Maybe Decl))
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup Name
qname SpecCache
cache of
Maybe (Decl, TypesMap (Name, Maybe Decl))
Nothing -> Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return Expr
e0
Just (Decl
decl, TypesMap (Name, Maybe Decl)
tm) ->
case [Type] -> TypesMap (Name, Maybe Decl) -> Maybe (Name, Maybe Decl)
forall (m :: * -> *) k a. TrieMap m k => k -> m a -> Maybe a
lookupTM [Type]
ts TypesMap (Name, Maybe Decl)
tm of
Just (Name
qname', Maybe Decl
_) -> Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return (Name -> Expr
EVar Name
qname')
Maybe (Name, Maybe Decl)
Nothing -> do
Name
qname' <- Name -> [Type] -> SpecM Name
freshName Name
qname [Type]
ts
Schema
sig' <- [Type] -> Int -> Schema -> SpecM Schema
instantiateSchema [Type]
ts Int
n (Decl -> Schema
dSignature Decl
decl)
(SpecCache -> SpecCache) -> SpecT IO ()
forall (m :: * -> *).
Monad m =>
(SpecCache -> SpecCache) -> SpecT m ()
modifySpecCache (((Decl, TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl)))
-> Name -> SpecCache -> SpecCache
forall k a. Ord k => (a -> a) -> k -> Map k a -> Map k a
Map.adjust ((TypesMap (Name, Maybe Decl) -> TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl))
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap ([Type]
-> (Name, Maybe Decl)
-> TypesMap (Name, Maybe Decl)
-> TypesMap (Name, Maybe Decl)
forall (m :: * -> *) k a. TrieMap m k => k -> a -> m a -> m a
insertTM [Type]
ts (Name
qname', Maybe Decl
forall a. Maybe a
Nothing))) Name
qname)
DeclDef
rhs' <- case Decl -> DeclDef
dDefinition Decl
decl of
DExpr Expr
e -> do Expr
e' <- Expr -> SpecT IO Expr
specializeExpr (Expr -> SpecT IO Expr) -> SpecT IO Expr -> SpecT IO Expr
forall (m :: * -> *) a b. Monad m => (a -> m b) -> m a -> m b
=<< [Type] -> Int -> Expr -> SpecT IO Expr
instantiateExpr [Type]
ts Int
n Expr
e
DeclDef -> StateT SpecCache (ModuleT IO) DeclDef
forall (m :: * -> *) a. Monad m => a -> m a
return (Expr -> DeclDef
DExpr Expr
e')
DeclDef
DPrim -> DeclDef -> StateT SpecCache (ModuleT IO) DeclDef
forall (m :: * -> *) a. Monad m => a -> m a
return DeclDef
DPrim
let decl' :: Decl
decl' = Decl
decl { dName :: Name
dName = Name
qname', dSignature :: Schema
dSignature = Schema
sig', dDefinition :: DeclDef
dDefinition = DeclDef
rhs' }
(SpecCache -> SpecCache) -> SpecT IO ()
forall (m :: * -> *).
Monad m =>
(SpecCache -> SpecCache) -> SpecT m ()
modifySpecCache (((Decl, TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl)))
-> Name -> SpecCache -> SpecCache
forall k a. Ord k => (a -> a) -> k -> Map k a -> Map k a
Map.adjust ((TypesMap (Name, Maybe Decl) -> TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl))
-> (Decl, TypesMap (Name, Maybe Decl))
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
fmap ([Type]
-> (Name, Maybe Decl)
-> TypesMap (Name, Maybe Decl)
-> TypesMap (Name, Maybe Decl)
forall (m :: * -> *) k a. TrieMap m k => k -> a -> m a -> m a
insertTM [Type]
ts (Name
qname', Decl -> Maybe Decl
forall a. a -> Maybe a
Just Decl
decl'))) Name
qname)
Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return (Name -> Expr
EVar Name
qname')
Expr
_ -> Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return Expr
e0
destEProofApps :: Expr -> (Expr, Int)
destEProofApps :: Expr -> (Expr, Int)
destEProofApps = Int -> Expr -> (Expr, Int)
forall b. Num b => b -> Expr -> (Expr, b)
go Int
0
where
go :: b -> Expr -> (Expr, b)
go b
n (EProofApp Expr
e) = b -> Expr -> (Expr, b)
go (b
n b -> b -> b
forall a. Num a => a -> a -> a
+ b
1) Expr
e
go b
n Expr
e = (Expr
e, b
n)
destETApps :: Expr -> (Expr, [Type])
destETApps :: Expr -> (Expr, [Type])
destETApps = [Type] -> Expr -> (Expr, [Type])
go []
where
go :: [Type] -> Expr -> (Expr, [Type])
go [Type]
ts (ETApp Expr
e Type
t) = [Type] -> Expr -> (Expr, [Type])
go (Type
t Type -> [Type] -> [Type]
forall a. a -> [a] -> [a]
: [Type]
ts) Expr
e
go [Type]
ts Expr
e = (Expr
e, [Type]
ts)
destEProofAbs :: Expr -> ([Prop], Expr)
destEProofAbs :: Expr -> ([Type], Expr)
destEProofAbs = [Type] -> Expr -> ([Type], Expr)
go []
where
go :: [Type] -> Expr -> ([Type], Expr)
go [Type]
ps (EProofAbs Type
p Expr
e) = [Type] -> Expr -> ([Type], Expr)
go (Type
p Type -> [Type] -> [Type]
forall a. a -> [a] -> [a]
: [Type]
ps) Expr
e
go [Type]
ps Expr
e = ([Type]
ps, Expr
e)
destETAbs :: Expr -> ([TParam], Expr)
destETAbs :: Expr -> ([TParam], Expr)
destETAbs = [TParam] -> Expr -> ([TParam], Expr)
go []
where
go :: [TParam] -> Expr -> ([TParam], Expr)
go [TParam]
ts (ETAbs TParam
t Expr
e) = [TParam] -> Expr -> ([TParam], Expr)
go (TParam
t TParam -> [TParam] -> [TParam]
forall a. a -> [a] -> [a]
: [TParam]
ts) Expr
e
go [TParam]
ts Expr
e = ([TParam]
ts, Expr
e)
freshName :: Name -> [Type] -> SpecM Name
freshName :: Name -> [Type] -> SpecM Name
freshName Name
n [Type]
_ =
case Name -> NameInfo
nameInfo Name
n of
Declared ModName
ns NameSource
s -> (Supply -> (Name, Supply)) -> SpecM Name
forall (m :: * -> *) a. FreshM m => (Supply -> (a, Supply)) -> m a
liftSupply (ModName
-> NameSource
-> Ident
-> Maybe Fixity
-> Range
-> Supply
-> (Name, Supply)
mkDeclared ModName
ns NameSource
s Ident
ident Maybe Fixity
fx Range
loc)
NameInfo
Parameter -> (Supply -> (Name, Supply)) -> SpecM Name
forall (m :: * -> *) a. FreshM m => (Supply -> (a, Supply)) -> m a
liftSupply (Ident -> Range -> Supply -> (Name, Supply)
mkParameter Ident
ident Range
loc)
where
fx :: Maybe Fixity
fx = Name -> Maybe Fixity
nameFixity Name
n
ident :: Ident
ident = Name -> Ident
nameIdent Name
n
loc :: Range
loc = Name -> Range
nameLoc Name
n
instantiateSchema :: [Type] -> Int -> Schema -> SpecM Schema
instantiateSchema :: [Type] -> Int -> Schema -> SpecM Schema
instantiateSchema [Type]
ts Int
n (Forall [TParam]
params [Type]
props Type
ty)
| [TParam] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length [TParam]
params Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= [Type] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length [Type]
ts = FilePath -> SpecM Schema
forall (m :: * -> *) a. MonadFail m => FilePath -> m a
fail FilePath
"instantiateSchema: wrong number of type arguments"
| [Type] -> Int
forall (t :: * -> *) a. Foldable t => t a -> Int
length [Type]
props Int -> Int -> Bool
forall a. Eq a => a -> a -> Bool
/= Int
n = FilePath -> SpecM Schema
forall (m :: * -> *) a. MonadFail m => FilePath -> m a
fail FilePath
"instantiateSchema: wrong number of prop arguments"
| Bool
otherwise = Schema -> SpecM Schema
forall (m :: * -> *) a. Monad m => a -> m a
return (Schema -> SpecM Schema) -> Schema -> SpecM Schema
forall a b. (a -> b) -> a -> b
$ [TParam] -> [Type] -> Type -> Schema
Forall [] [] (Subst -> Type -> Type
forall t. TVars t => Subst -> t -> t
apSubst Subst
sub Type
ty)
where sub :: Subst
sub = [(TParam, Type)] -> Subst
listParamSubst ([TParam] -> [Type] -> [(TParam, Type)]
forall a b. [a] -> [b] -> [(a, b)]
zip [TParam]
params [Type]
ts)
instantiateExpr :: [Type] -> Int -> Expr -> SpecM Expr
instantiateExpr :: [Type] -> Int -> Expr -> SpecT IO Expr
instantiateExpr [] Int
0 Expr
e = Expr -> SpecT IO Expr
forall (m :: * -> *) a. Monad m => a -> m a
return Expr
e
instantiateExpr [] Int
n (EProofAbs Type
_ Expr
e) = [Type] -> Int -> Expr -> SpecT IO Expr
instantiateExpr [] (Int
n Int -> Int -> Int
forall a. Num a => a -> a -> a
- Int
1) Expr
e
instantiateExpr (Type
t : [Type]
ts) Int
n (ETAbs TParam
param Expr
e) =
[Type] -> Int -> Expr -> SpecT IO Expr
instantiateExpr [Type]
ts Int
n (Subst -> Expr -> Expr
forall t. TVars t => Subst -> t -> t
apSubst (TParam -> Type -> Subst
singleTParamSubst TParam
param Type
t) Expr
e)
instantiateExpr [Type]
_ Int
_ Expr
_ = FilePath -> SpecT IO Expr
forall (m :: * -> *) a. MonadFail m => FilePath -> m a
fail FilePath
"instantiateExpr: wrong number of type/proof arguments"
allDeclGroups :: M.ModuleEnv -> [DeclGroup]
allDeclGroups :: ModuleEnv -> [DeclGroup]
allDeclGroups =
(Module -> [DeclGroup]) -> [Module] -> [DeclGroup]
forall (t :: * -> *) a b. Foldable t => (a -> [b]) -> t a -> [b]
concatMap Module -> [DeclGroup]
mDecls
([Module] -> [DeclGroup])
-> (ModuleEnv -> [Module]) -> ModuleEnv -> [DeclGroup]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ModuleEnv -> [Module]
M.loadedModules
traverseSnd :: Functor f => (b -> f c) -> (a, b) -> f (a, c)
traverseSnd :: (b -> f c) -> (a, b) -> f (a, c)
traverseSnd b -> f c
f (a
x, b
y) = (,) a
x (c -> (a, c)) -> f c -> f (a, c)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> b -> f c
f b
y