module LLVM.Extra.MaybeContinuation where
import qualified LLVM.Extra.Maybe as Maybe
import qualified LLVM.Extra.Arithmetic as A
import qualified LLVM.Extra.Control as C
import LLVM.Extra.Control (ifThenElse, )
import LLVM.Extra.Class (Undefined, undefTuple, )
import qualified LLVM.Core as LLVM
import LLVM.Core
(Value, value, valueOf,
CodeGenFunction,
IsConst, IsType, IsFirstClass, IsInteger,
CmpRet, CmpResult, )
import LLVM.Util.Loop (Phi, )
import qualified Control.Monad as M
import qualified Control.Applicative as App
import Control.Monad.IO.Class (MonadIO(liftIO), )
import Control.Monad.HT ((<=<), )
import Foreign.Ptr (Ptr, )
import Data.Tuple.HT (mapSnd, )
import Prelude hiding (map, )
newtype T r z a =
Cons {resolve ::
CodeGenFunction r z ->
(a -> CodeGenFunction r z) ->
CodeGenFunction r z
}
map :: (a -> CodeGenFunction r b) -> T r z a -> T r z b
map f (Cons m) = Cons $ \n j ->
m n (j <=< f)
instance Functor (T r z) where
fmap f (Cons m) = Cons $ \n j -> m n (j . f)
instance App.Applicative (T r z) where
pure = return
(<*>) = M.ap
instance Monad (T r z) where
return a = lift (return a)
(>>=) = bind
instance MonadIO (T r z) where
liftIO = lift . liftIO
withBool ::
(Phi z) =>
Value Bool -> CodeGenFunction r a -> T r z a
withBool b a =
guard b >> lift a
fromBool ::
(Phi z) =>
CodeGenFunction r (Value Bool, a) ->
T r z a
fromBool m = do
(b,a) <- lift m
guard b
return a
toBool ::
(Undefined a) =>
T r (Value Bool, a) a -> CodeGenFunction r (Value Bool, a)
toBool (Cons m) =
m (return (valueOf False, undefTuple)) (return . (,) (valueOf True))
fromMaybe ::
(Phi z) =>
CodeGenFunction r (Maybe.T a) -> T r z a
fromMaybe m = do
Maybe.Cons b a <- lift m
guard b
return a
toMaybe ::
(Undefined a) =>
T r (Maybe.T a) a -> CodeGenFunction r (Maybe.T a)
toMaybe (Cons m) =
m (return Maybe.nothing) (return . Maybe.just)
isJust ::
T r (Value Bool) a -> CodeGenFunction r (Value Bool)
isJust (Cons m) =
m (return (valueOf False)) (const $ return (valueOf True))
lift :: CodeGenFunction r a -> T r z a
lift a = Cons $ \ _n j -> j =<< a
guard ::
(Phi z) =>
Value Bool -> T r z ()
guard b = Cons $ \n j ->
ifThenElse b (j ()) n
just :: a -> T r z a
just a = Cons $ \ _n j -> j a
nothing :: T r z a
nothing = Cons $ \n _j -> n
bind ::
T r z a ->
(a -> T r z b) ->
T r z b
bind (Cons ma) mb = Cons $ \n j ->
ma n (\a -> resolve (mb a) n j)
onFail :: CodeGenFunction r () -> T r z a -> T r z a
onFail handler m = Cons $ \n j -> resolve m (handler >> n) j
alternative ::
(Phi z, Undefined a) =>
T r (Maybe.T a) a -> T r (Maybe.T a) a -> T r z a
alternative x y =
fromMaybe $ resolve x (toMaybe y) (return . Maybe.just)
fixedLengthLoop ::
(Phi s, Undefined s,
Num i, IsConst i, IsInteger i, IsFirstClass i, CmpRet i, CmpResult i ~ Bool) =>
Value i -> s ->
(s -> T r (Maybe.T s) s) ->
CodeGenFunction r (Value i, Maybe.T s)
fixedLengthLoop len start loopBody = do
(vars, i) <-
C.loopWithExit (start, len)
(\(s0, i) -> do
counterRunning <- A.cmp LLVM.CmpGT i (value LLVM.zero)
(running, ms1) <-
C.ifThen counterRunning (valueOf False, Maybe.just s0) $
fmap (\m -> (Maybe.isJust m, m)) $ toMaybe $ loopBody s0
return (running, (ms1, i)))
(\(ms, i) ->
fmap ((,) (Maybe.fromJust ms)) $ A.dec i)
pos <- A.sub len i
return (pos, vars)
arrayLoop ::
(Phi s, Undefined s, IsType a,
Num i, IsConst i, IsInteger i, IsFirstClass i, CmpRet i, CmpResult i ~ Bool) =>
Value i ->
Value (Ptr a) -> s ->
(Value (Ptr a) -> s -> T r (Maybe.T (Value (Ptr a), s)) s) ->
CodeGenFunction r (Value i, Maybe.T s)
arrayLoop len ptr start loopBody =
fmap (mapSnd (fmap snd)) $
fixedLengthLoop len (ptr,start) $ \(ptr0,s0) -> do
s1 <- loopBody ptr0 s0
ptr1 <- lift $ A.advanceArrayElementPtr ptr0
return (ptr1,s1)
arrayLoop2 ::
(Phi s, Undefined s, IsType a, IsType b,
Num i, IsConst i, IsInteger i, IsFirstClass i, CmpRet i, CmpResult i ~ Bool) =>
Value i ->
Value (Ptr a) -> Value (Ptr b) -> s ->
(Value (Ptr a) -> Value (Ptr b) -> s ->
T r (Maybe.T (Value (Ptr a), (Value (Ptr b), s))) s) ->
CodeGenFunction r (Value i, Maybe.T s)
arrayLoop2 len ptrA ptrB start loopBody =
fmap (mapSnd (fmap snd)) $
arrayLoop len ptrA (ptrB,start) $ \ptrAi (ptrB0,s0) -> do
s1 <- loopBody ptrAi ptrB0 s0
ptrB1 <- lift $ A.advanceArrayElementPtr ptrB0
return (ptrB1,s1)