module Feldspar.Compiler.Imperative.FromCore.Mutable where
import Language.Syntactic
import Language.Syntactic.Constructs.Binding
import Language.Syntactic.Constructs.Binding.HigherOrder
import Feldspar.Core.Types
import Feldspar.Core.Interpretation
import Feldspar.Core.Constructs.Binding
import Feldspar.Core.Constructs.Mutable
import Feldspar.Core.Constructs.MutableArray
import Feldspar.Core.Constructs.MutableReference
import Feldspar.Compiler.Imperative.Frontend hiding (Type)
import Feldspar.Compiler.Imperative.FromCore.Interpretation
instance (Compile dom dom, Project (CLambda Type) dom) => Compile (MONAD Mut) dom
where
compileProgSym Bind _ loc (ma :* (lam :$ body) :* Nil)
| Just (SubConstr2 (Lambda v)) <- prjLambda lam
= do
e <- compileExpr ma
withAlias v e $ compileProg loc body
compileProgSym Then _ loc (ma :* mb :* Nil) = do
compileExpr ma
compileProg loc mb
compileProgSym Return info loc (a :* Nil)
| MutType UnitType <- infoType info = return ()
| otherwise = compileProg loc a
compileProgSym When _ loc (c :* action :* Nil) = do
c' <- compileExpr c
(_, Bl ds body) <- confiscateBlock $ compileProg loc action
tellProg [If c' (Block ds body) Skip]
instance (Compile dom dom, Project (CLambda Type) dom) => Compile Mutable dom
where
compileProgSym Run _ loc (ma :* Nil) = compileProg loc ma
compileExprSym Run _ (ma :* Nil) = compileExpr ma
instance (Compile dom dom, Project (CLambda Type) dom) => Compile MutableReference dom
where
compileProgSym NewRef _ loc (a :* Nil) = compileProg loc a
compileProgSym GetRef _ loc (r :* Nil) = compileProg loc r
compileProgSym SetRef _ _ (r :* a :* Nil) = do
var <- compileExpr r
compileProg var a
compileExprSym GetRef _ (r :* Nil) = compileExpr r
compileExprSym feat info args = compileProgFresh feat info args
instance (Compile dom dom, Project (CLambda Type) dom) => Compile MutableArray dom
where
compileProgSym NewArr_ _ loc (len :* Nil) = do
l <- compileExpr len
tellProg [initArray loc l]
compileProgSym NewArr _ loc (len :* a :* Nil) = do
let ix = Var U32 "i"
a' <- compileExpr a
l <- compileExpr len
tellProg [initArray loc l]
tellProg [For "i" l 1 (Seq [assignProg (loc :!: ix) a'])]
compileProgSym GetArr _ loc (arr :* i :* Nil) = do
arr' <- compileExpr arr
i' <- compileExpr i
assign loc (arr' :!: i')
compileProgSym SetArr _ _ (arr :* i :* a :* Nil) = do
arr' <- compileExpr arr
i' <- compileExpr i
a' <- compileExpr a
assign (arr' :!: i') a'
compileProgSym a info loc args = compileExprLoc a info loc args
compileExprSym ArrLength info (arr :* Nil) = do
a' <- compileExpr arr
return $ Fun (compileTypeRep (infoType info) (infoSize info)) "getLength" [a']
compileExprSym a info args = compileProgFresh a info args