annotate src/especialize.sml @ 802:ef6de4075dc1

Fix a Core_untangle bug that missed closure variable references; XHTMLize
author Adam Chlipala <adamc@hcoop.net>
date Sat, 16 May 2009 12:41:33 -0400
parents e92cfac1608f
children 066493f7f008
rev   line source
adamc@443 1 (* Copyright (c) 2008, Adam Chlipala
adamc@443 2 * All rights reserved.
adamc@443 3 *
adamc@443 4 * Redistribution and use in source and binary forms, with or without
adamc@443 5 * modification, are permitted provided that the following conditions are met:
adamc@443 6 *
adamc@443 7 * - Redistributions of source code must retain the above copyright notice,
adamc@443 8 * this list of conditions and the following disclaimer.
adamc@443 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@443 10 * this list of conditions and the following disclaimer in the documentation
adamc@443 11 * and/or other materials provided with the distribution.
adamc@443 12 * - The names of contributors may not be used to endorse or promote products
adamc@443 13 * derived from this software without specific prior written permission.
adamc@443 14 *
adamc@443 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@443 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@443 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@443 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@443 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@443 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@443 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@443 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@443 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@443 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@443 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@443 26 *)
adamc@443 27
adamc@443 28 structure ESpecialize :> ESPECIALIZE = struct
adamc@443 29
adamc@443 30 open Core
adamc@443 31
adamc@443 32 structure E = CoreEnv
adamc@443 33 structure U = CoreUtil
adamc@443 34
adamc@479 35 type skey = exp
adamc@453 36
adamc@453 37 structure K = struct
adamc@479 38 type ord_key = exp list
adamc@479 39 val compare = Order.joinL U.Exp.compare
adamc@443 40 end
adamc@443 41
adamc@453 42 structure KM = BinaryMapFn(K)
adamc@443 43 structure IM = IntBinaryMap
adamc@482 44 structure IS = IntBinarySet
adamc@443 45
adamc@626 46 val freeVars = U.Exp.foldB {kind = fn (_, _, xs) => xs,
adamc@488 47 con = fn (_, _, xs) => xs,
adamc@488 48 exp = fn (bound, e, xs) =>
adamc@488 49 case e of
adamc@488 50 ERel x =>
adamc@488 51 if x >= bound then
adamc@488 52 IS.add (xs, x - bound)
adamc@488 53 else
adamc@488 54 xs
adamc@488 55 | _ => xs,
adamc@488 56 bind = fn (bound, b) =>
adamc@488 57 case b of
adamc@488 58 U.Exp.RelE _ => bound + 1
adamc@488 59 | _ => bound}
adamc@488 60 0 IS.empty
adamc@479 61
adamc@522 62 val isPoly = U.Decl.exists {kind = fn _ => false,
adamc@522 63 con = fn _ => false,
adamc@522 64 exp = fn ECAbs _ => true
adamc@522 65 | _ => false,
adamc@522 66 decl = fn _ => false}
adamc@522 67
adamc@488 68 fun positionOf (v : int, ls) =
adamc@488 69 let
adamc@488 70 fun pof (pos, ls) =
adamc@488 71 case ls of
adamc@488 72 [] => raise Fail "Defunc.positionOf"
adamc@488 73 | v' :: ls' =>
adamc@488 74 if v = v' then
adamc@488 75 pos
adamc@488 76 else
adamc@488 77 pof (pos + 1, ls')
adamc@488 78 in
adamc@488 79 pof (0, ls)
adamc@488 80 end
adamc@488 81
adamc@488 82 fun squish fvs =
adamc@626 83 U.Exp.mapB {kind = fn _ => fn k => k,
adamc@488 84 con = fn _ => fn c => c,
adamc@488 85 exp = fn bound => fn e =>
adamc@479 86 case e of
adamc@488 87 ERel x =>
adamc@488 88 if x >= bound then
adamc@488 89 ERel (positionOf (x - bound, fvs) + bound)
adamc@488 90 else
adamc@488 91 e
adamc@488 92 | _ => e,
adamc@488 93 bind = fn (bound, b) =>
adamc@488 94 case b of
adamc@488 95 U.Exp.RelE _ => bound + 1
adamc@488 96 | _ => bound}
adamc@488 97 0
adamc@453 98
adamc@443 99 type func = {
adamc@443 100 name : string,
adamc@453 101 args : int KM.map,
adamc@443 102 body : exp,
adamc@443 103 typ : con,
adamc@443 104 tag : string
adamc@443 105 }
adamc@443 106
adamc@443 107 type state = {
adamc@443 108 maxName : int,
adamc@443 109 funcs : func IM.map,
adamc@443 110 decls : (string * int * con * exp * string) list
adamc@443 111 }
adamc@443 112
adamc@488 113 fun default (_, x, st) = (x, st)
adamc@443 114
adamc@800 115 structure SS = BinarySetFn(struct
adamc@800 116 type ord_key = string
adamc@800 117 val compare = String.compare
adamc@800 118 end)
adamc@800 119
adamc@800 120 val mayNotSpec = ref SS.empty
adamc@800 121
adamc@453 122 fun specialize' file =
adamc@443 123 let
adamc@488 124 fun bind (env, b) =
adamc@488 125 case b of
adamc@521 126 U.Decl.RelE xt => xt :: env
adamc@521 127 | _ => env
adamc@488 128
adamc@488 129 fun exp (env, e, st : state) =
adamc@482 130 let
adamc@721 131 (*val () = Print.prefaces "exp" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 132 (e, ErrorMsg.dummySpan))]*)
adamc@721 133
adamc@488 134 fun getApp e =
adamc@482 135 case e of
adamc@488 136 ENamed f => SOME (f, [])
adamc@482 137 | EApp (e1, e2) =>
adamc@488 138 (case getApp (#1 e1) of
adamc@482 139 NONE => NONE
adamc@488 140 | SOME (f, xs) => SOME (f, xs @ [e2]))
adamc@482 141 | _ => NONE
adamc@482 142 in
adamc@482 143 case getApp e of
adamc@721 144 NONE => ((*Print.prefaces "No" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 145 (e, ErrorMsg.dummySpan))];*)
adamc@721 146 (e, st))
adamc@488 147 | SOME (f, xs) =>
adamc@485 148 case IM.find (#funcs st, f) of
adamc@485 149 NONE => (e, st)
adamc@485 150 | SOME {name, args, body, typ, tag} =>
adamc@488 151 let
adamc@721 152 (*val () = Print.prefaces "Consider" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 153 (e, ErrorMsg.dummySpan))]*)
adamc@721 154
adamc@488 155 val functionInside = U.Con.exists {kind = fn _ => false,
adamc@488 156 con = fn TFun _ => true
adamc@488 157 | CFfi ("Basis", "transaction") => true
adamc@794 158 | CFfi ("Basis", "eq") => true
adamc@794 159 | CFfi ("Basis", "num") => true
adamc@794 160 | CFfi ("Basis", "ord") => true
adamc@794 161 | CFfi ("Basis", "show") => true
adamc@794 162 | CFfi ("Basis", "read") => true
adamc@794 163 | CFfi ("Basis", "sql_injectable_prim") => true
adamc@794 164 | CFfi ("Basis", "sql_injectable") => true
adamc@488 165 | _ => false}
adamc@488 166 val loc = ErrorMsg.dummySpan
adamc@488 167
adamc@488 168 fun findSplit (xs, typ, fxs, fvs) =
adamc@488 169 case (#1 typ, xs) of
adamc@488 170 (TFun (dom, ran), e :: xs') =>
adamc@488 171 if functionInside dom then
adamc@488 172 findSplit (xs',
adamc@488 173 ran,
adamc@488 174 e :: fxs,
adamc@488 175 IS.union (fvs, freeVars e))
adamc@488 176 else
adamc@488 177 (rev fxs, xs, fvs)
adamc@488 178 | _ => (rev fxs, xs, fvs)
adamc@488 179
adamc@488 180 val (fxs, xs, fvs) = findSplit (xs, typ, [], IS.empty)
adamc@488 181
adamc@488 182 val fxs' = map (squish (IS.listItems fvs)) fxs
adamc@488 183
adamc@488 184 fun firstRel () =
adamc@488 185 case fxs' of
adamc@488 186 (ERel _, _) :: _ => true
adamc@488 187 | _ => false
adamc@488 188 in
adamc@800 189 (*Print.preface ("fxs'", Print.p_list (CorePrint.p_exp CoreEnv.empty) fxs');*)
adamc@488 190 if firstRel ()
adamc@488 191 orelse List.all (fn (ERel _, _) => true
adamc@488 192 | _ => false) fxs' then
adamc@488 193 (e, st)
adamc@488 194 else
adamc@800 195 case (KM.find (args, fxs'), SS.member (!mayNotSpec, name)) of
adamc@800 196 (SOME f', _) =>
adamc@485 197 let
adamc@488 198 val e = (ENamed f', loc)
adamc@488 199 val e = IS.foldr (fn (arg, e) => (EApp (e, (ERel arg, loc)), loc))
adamc@488 200 e fvs
adamc@488 201 val e = foldl (fn (arg, e) => (EApp (e, arg), loc))
adamc@488 202 e xs
adamc@488 203 in
adamc@488 204 (*Print.prefaces "Brand new (reuse)"
adamc@721 205 [("e'", CorePrint.p_exp CoreEnv.empty e)];*)
adamc@488 206 (#1 e, st)
adamc@488 207 end
adamc@800 208 | (_, true) => (e, st)
adamc@800 209 | (NONE, false) =>
adamc@488 210 let
adamc@800 211 (*val () = Print.prefaces "New one"
adamc@800 212 [("f", Print.PD.string (Int.toString f)),
adamc@800 213 ("mns", Print.p_list Print.PD.string
adamc@800 214 (SS.listItems (!mayNotSpec)))]*)
adamc@800 215
adamc@488 216 fun subBody (body, typ, fxs') =
adamc@488 217 case (#1 body, #1 typ, fxs') of
adamc@488 218 (_, _, []) => SOME (body, typ)
adamc@488 219 | (EAbs (_, _, _, body'), TFun (_, typ'), x :: fxs'') =>
adamc@488 220 let
adamc@488 221 val body'' = E.subExpInExp (0, x) body'
adamc@488 222 in
adamc@488 223 subBody (body'',
adamc@488 224 typ',
adamc@488 225 fxs'')
adamc@488 226 end
adamc@488 227 | _ => NONE
adamc@488 228 in
adamc@488 229 case subBody (body, typ, fxs') of
adamc@488 230 NONE => (e, st)
adamc@488 231 | SOME (body', typ') =>
adamc@488 232 let
adamc@488 233 val f' = #maxName st
adamc@488 234 val args = KM.insert (args, fxs', f')
adamc@488 235 val funcs = IM.insert (#funcs st, f, {name = name,
adamc@488 236 args = args,
adamc@488 237 body = body,
adamc@488 238 typ = typ,
adamc@488 239 tag = tag})
adamc@488 240 val st = {
adamc@488 241 maxName = f' + 1,
adamc@488 242 funcs = funcs,
adamc@488 243 decls = #decls st
adamc@488 244 }
adamc@487 245
adamc@488 246 (*val () = Print.prefaces "specExp"
adamc@488 247 [("f", CorePrint.p_exp env (ENamed f, loc)),
adamc@488 248 ("f'", CorePrint.p_exp env (ENamed f', loc)),
adamc@488 249 ("xs", Print.p_list (CorePrint.p_exp env) xs),
adamc@488 250 ("fxs'", Print.p_list
adamc@488 251 (CorePrint.p_exp E.empty) fxs'),
adamc@488 252 ("e", CorePrint.p_exp env (e, loc))]*)
adamc@488 253 val (body', typ') = IS.foldl (fn (n, (body', typ')) =>
adamc@488 254 let
adamc@521 255 val (x, xt) = List.nth (env, n)
adamc@488 256 in
adamc@488 257 ((EAbs (x, xt, typ', body'),
adamc@488 258 loc),
adamc@488 259 (TFun (xt, typ'), loc))
adamc@488 260 end)
adamc@488 261 (body', typ') fvs
adamc@800 262 val mns = !mayNotSpec
adamc@800 263 val () = mayNotSpec := SS.add (mns, name)
adamc@800 264 (*val () = Print.preface ("body'", CorePrint.p_exp CoreEnv.empty body')*)
adamc@488 265 val (body', st) = specExp env st body'
adamc@800 266 val () = mayNotSpec := mns
adamc@482 267
adamc@488 268 val e' = (ENamed f', loc)
adamc@488 269 val e' = IS.foldr (fn (arg, e) => (EApp (e, (ERel arg, loc)), loc))
adamc@488 270 e' fvs
adamc@488 271 val e' = foldl (fn (arg, e) => (EApp (e, arg), loc))
adamc@488 272 e' xs
adamc@488 273 (*val () = Print.prefaces "Brand new"
adamc@721 274 [("e'", CorePrint.p_exp CoreEnv.empty e'),
adamc@721 275 ("e", CorePrint.p_exp CoreEnv.empty (e, loc)),
adamc@721 276 ("body'", CorePrint.p_exp CoreEnv.empty body')]*)
adamc@488 277 in
adamc@488 278 (#1 e',
adamc@488 279 {maxName = #maxName st,
adamc@488 280 funcs = #funcs st,
adamc@488 281 decls = (name, f', typ', body', tag) :: #decls st})
adamc@488 282 end
adamc@485 283 end
adamc@488 284 end
adamc@485 285 end
adamc@482 286
adamc@626 287 and specExp env = U.Exp.foldMapB {kind = default, con = default, exp = exp, bind = bind} env
adamc@482 288
adamc@626 289 val specDecl = U.Decl.foldMapB {kind = default, con = default, exp = exp, decl = default, bind = bind}
adamc@482 290
adamc@521 291 fun doDecl (d, (st : state, changed)) =
adamc@488 292 let
adamc@521 293 (*val befor = Time.now ()*)
adamc@482 294
adamc@453 295 val funcs = #funcs st
adamc@453 296 val funcs =
adamc@453 297 case #1 d of
adamc@453 298 DValRec vis =>
adamc@453 299 foldl (fn ((x, n, c, e, tag), funcs) =>
adamc@453 300 IM.insert (funcs, n, {name = x,
adamc@453 301 args = KM.empty,
adamc@453 302 body = e,
adamc@453 303 typ = c,
adamc@453 304 tag = tag}))
adamc@453 305 funcs vis
adamc@453 306 | _ => funcs
adamc@453 307
adamc@453 308 val st = {maxName = #maxName st,
adamc@453 309 funcs = funcs,
adamc@453 310 decls = []}
adamc@453 311
adamc@482 312 (*val () = Print.prefaces "decl" [("d", CorePrint.p_decl CoreEnv.empty d)]*)
adamc@521 313
adamc@522 314 val (d', st) =
adamc@522 315 if isPoly d then
adamc@522 316 (d, st)
adamc@522 317 else
adamc@800 318 (mayNotSpec := (case #1 d of
adamc@800 319 DValRec vis => foldl (fn ((x, _, _, _, _), mns) =>
adamc@800 320 SS.add (mns, x)) SS.empty vis
adamc@800 321 | DVal (x, _, _, _, _) => SS.singleton x
adamc@800 322 | _ => SS.empty);
adamc@800 323 specDecl [] st d
adamc@800 324 before mayNotSpec := SS.empty)
adamc@521 325
adamc@482 326 (*val () = print "/decl\n"*)
adamc@443 327
adamc@443 328 val funcs = #funcs st
adamc@443 329 val funcs =
adamc@443 330 case #1 d of
adamc@443 331 DVal (x, n, c, e as (EAbs _, _), tag) =>
adamc@443 332 IM.insert (funcs, n, {name = x,
adamc@453 333 args = KM.empty,
adamc@443 334 body = e,
adamc@443 335 typ = c,
adamc@443 336 tag = tag})
adamc@469 337 | DVal (_, n, _, (ENamed n', _), _) =>
adamc@469 338 (case IM.find (funcs, n') of
adamc@469 339 NONE => funcs
adamc@469 340 | SOME v => IM.insert (funcs, n, v))
adamc@443 341 | _ => funcs
adamc@443 342
adamc@453 343 val (changed, ds) =
adamc@443 344 case #decls st of
adamc@453 345 [] => (changed, [d'])
adamc@453 346 | vis =>
adamc@453 347 (true, case d' of
adamc@453 348 (DValRec vis', _) => [(DValRec (vis @ vis'), ErrorMsg.dummySpan)]
adamc@453 349 | _ => [(DValRec vis, ErrorMsg.dummySpan), d'])
adamc@443 350 in
adamc@802 351 (*Print.prefaces "doDecl" [("d", CorePrint.p_decl E.empty d),
adamc@802 352 ("d'", CorePrint.p_decl E.empty d')];*)
adamc@521 353 (ds, ({maxName = #maxName st,
adamc@453 354 funcs = funcs,
adamc@453 355 decls = []}, changed))
adamc@443 356 end
adamc@443 357
adamc@521 358 val (ds, (_, changed)) = ListUtil.foldlMapConcat doDecl
adamc@521 359 ({maxName = U.File.maxName file + 1,
adamc@488 360 funcs = IM.empty,
adamc@488 361 decls = []},
adamc@488 362 false)
adamc@488 363 file
adamc@443 364 in
adamc@453 365 (changed, ds)
adamc@443 366 end
adamc@443 367
adamc@453 368 fun specialize file =
adamc@453 369 let
adamc@721 370 val file = ReduceLocal.reduce file
adamc@721 371 (*val () = Print.prefaces "Intermediate" [("file", CorePrint.p_file CoreEnv.empty file)]*)
adamc@520 372 (*val file = ReduceLocal.reduce file*)
adamc@453 373 val (changed, file) = specialize' file
adamc@520 374 (*val file = ReduceLocal.reduce file
adamc@520 375 val file = CoreUntangle.untangle file
adamc@488 376 val file = Shake.shake file*)
adamc@453 377 in
adamc@488 378 (*print "Round over\n";*)
adamc@453 379 if changed then
adamc@520 380 let
adamc@721 381 (*val file = ReduceLocal.reduce file*)
adamc@802 382 (*val () = Print.prefaces "Pre-untangle" [("file", CorePrint.p_file CoreEnv.empty file)]*)
adamc@520 383 val file = CoreUntangle.untangle file
adamc@802 384 (*val () = Print.prefaces "Post-untangle" [("file", CorePrint.p_file CoreEnv.empty file)]*)
adamc@520 385 val file = Shake.shake file
adamc@520 386 in
adamc@520 387 (*print "Again!\n";*)
adamc@520 388 specialize file
adamc@520 389 end
adamc@453 390 else
adamc@453 391 file
adamc@453 392 end
adamc@453 393
adamc@443 394 end