Skip to content
Snippets Groups Projects
Commit 84bca4ab authored by Etienne Kneuss's avatar Etienne Kneuss Committed by Philippe Suter
Browse files

Compile functions with their pre/post conditions

parent c44ceafc
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,21 @@ object CodeGeneration { ...@@ -56,7 +56,21 @@ object CodeGeneration {
def compileFunDef(funDef : FunDef, ch : CodeHandler)(implicit env : CompilationEnvironment) { def compileFunDef(funDef : FunDef, ch : CodeHandler)(implicit env : CompilationEnvironment) {
val newMapping = funDef.args.map(_.id).zipWithIndex.toMap val newMapping = funDef.args.map(_.id).zipWithIndex.toMap
val exprToCompile = purescala.TreeOps.matchToIfThenElse(funDef.getBody) val bodyWithPre = if(funDef.hasPrecondition) {
IfExpr(funDef.precondition.get, funDef.getBody, Error("Precondition failed"))
} else {
funDef.getBody
}
val bodyWithPost = if(funDef.hasPostcondition) {
val freshResID = FreshIdentifier("result").setType(funDef.returnType)
val post = purescala.TreeOps.replace(Map(ResultVariable() -> Variable(freshResID)), funDef.postcondition.get)
Let(freshResID, bodyWithPre, IfExpr(post, Variable(freshResID), Error("Postcondition failed")) )
} else {
bodyWithPre
}
val exprToCompile = purescala.TreeOps.matchToIfThenElse(bodyWithPost)
mkExpr(exprToCompile, ch)(env.withVars(newMapping)) mkExpr(exprToCompile, ch)(env.withVars(newMapping))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment