summaryrefslogtreecommitdiff
path: root/src/especialize.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-11-11 11:49:51 -0500
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-11-11 11:49:51 -0500
commitefdbe3296b37e61fe8838762e4212756f4a3833d (patch)
treece9540d60a9af2f4d7d9a9767b507d174f3283f1 /src/especialize.sml
parentb6d4b9caac8f61ee5900f1ae1387d686e2c9480d (diff)
Get threadedBlog to work
Diffstat (limited to 'src/especialize.sml')
-rw-r--r--src/especialize.sml21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/especialize.sml b/src/especialize.sml
index f9c7c388..ffd4745b 100644
--- a/src/especialize.sml
+++ b/src/especialize.sml
@@ -188,9 +188,14 @@ fun specialize' file =
andalso List.exists (fn (ERecord [], _) => false | _ => true) xs'
andalso not (IS.member (actionable, f))
andalso hasFunarg (typ, xs') then
- (#1 (foldl (fn (arg, e) => (EApp (e, arg), ErrorMsg.dummySpan))
- body xs'),
- st)
+ let
+ val e = foldl (fn (arg, e) => (EApp (e, arg), ErrorMsg.dummySpan))
+ body xs'
+ in
+ (*Print.prefaces "Unfolded"
+ [("e", CorePrint.p_exp CoreEnv.empty e)];*)
+ (#1 e, st)
+ end
else
(e, st)
end)
@@ -221,6 +226,9 @@ fun specialize' file =
NONE => (e, st)
| SOME (body', typ') =>
let
+ (*val () = Print.prefaces "sub'd"
+ [("body'", CorePrint.p_exp CoreEnv.empty body')]*)
+
val f' = #maxName st
val funcs = IM.insert (#funcs st, f, {name = name,
args = KM.insert (args,
@@ -234,7 +242,13 @@ fun specialize' file =
decls = #decls st
}
+ (*val () = print ("Created " ^ Int.toString f' ^ " from "
+ ^ Int.toString f ^ "\n")
+ val () = Print.prefaces "body'"
+ [("body'", CorePrint.p_exp CoreEnv.empty body')]*)
val (body', st) = specExp st body'
+ (*val () = Print.prefaces "body''"
+ [("body'", CorePrint.p_exp CoreEnv.empty body')]*)
val e' = foldl (fn (arg, e) => (EApp (e, arg), ErrorMsg.dummySpan))
(ENamed f', ErrorMsg.dummySpan) xs'
in
@@ -316,6 +330,7 @@ fun specialize' file =
fun specialize file =
let
+ (*val () = Print.prefaces "Intermediate" [("file", CorePrint.p_file CoreEnv.empty file)];*)
val (changed, file) = specialize' file
in
if changed then