Compare commits

..

3 commits

Author SHA1 Message Date
93e20cf208 Light CPS: cleaner error when lightening non-value 2018-02-16 16:06:36 +01:00
f5783f2b2b Light CPS: implement lambdas 2018-02-16 15:48:56 +01:00
613adf0621 Lighter CPS: first tentative version
Try to lighten the CPS transformation, using fewer continuations when
there is no need for one
2018-02-16 15:48:56 +01:00
10 changed files with 12 additions and 23 deletions

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "src/tests_shared"]
path = src/tests_shared
url = git@github.com:tobast/mpri18-funcprog-tests.git

View file

@ -35,8 +35,16 @@ let rec has_calls (t: S.term): bool = match t with
(* A lambda itself may contain calls, but this call is not evaluated at
* declaration time *)
| S.App _ -> true
| S.IfZero _ -> true (* Cannot optimize that with the current languages *)
| S.Print _ -> true (* Cannot optimize that with the current languages *)
| S.IfZero (cond, tIf, tElse) ->
(* Cannot optimize continuation creation
List.exists has_calls [cond; tIf; tElse]
*)
true
| S.Print value ->
(* Cannot optimize continuation creation
has_calls value
*)
true
| S.Let (_, value, next) ->
List.exists has_calls [value; next]
@ -53,16 +61,7 @@ let rec cps_term_inner (t: S.term) (cont: T.variable) (nameHint: string option)
: T.term = match t with
| S.Var _ -> cps_value_as_term t cont
| S.Lit _ -> cps_value_as_term t cont
| S.BinOp (t1, op, t2) ->
(try cps_value_as_term t cont
with NotValue _ -> (
let t1Var = freshVar ()
and t2Var = freshVar () in
light_term t1Var t1 None @@
light_term t2Var t2 None @@
T.TailCall(T.vvar cont,
[T.VBinOp(T.vvar t1Var, op, T.vvar t2Var)])
))
| S.BinOp _ -> cps_value_as_term t cont
| S.Lam _ as lambda ->
let fName = freshBlockVarHinted nameHint in
light_term fName lambda None @@

View file

@ -1 +0,0 @@
../tests_shared/if_fib.exp

View file

@ -1 +0,0 @@
../tests_shared/if_fib.lambda

View file

@ -1 +0,0 @@
../tests_shared/if_nested.exp

View file

@ -1 +0,0 @@
../tests_shared/if_nested.lambda

View file

@ -1,2 +1,2 @@
let sum = fun x -> fun y -> x + y in
print(sum 40 2)
print(40 + 2)

View file

@ -1 +0,0 @@
../tests_shared/ren.exp

View file

@ -1 +0,0 @@
../tests_shared/ren.lambda

@ -1 +0,0 @@
Subproject commit ab7549347e5b6b51183c5704048c6768aab23d86