annotate src/especialize.sml @ 794:dc3fc3f3b834

Improving/reordering Unpoly and Especialize; pathmaps
author Adam Chlipala <adamc@hcoop.net>
date Thu, 14 May 2009 08:13:54 -0400
parents 9864b64b1700
children e92cfac1608f
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@453 115 fun specialize' file =
adamc@443 116 let
adamc@488 117 fun bind (env, b) =
adamc@488 118 case b of
adamc@521 119 U.Decl.RelE xt => xt :: env
adamc@521 120 | _ => env
adamc@488 121
adamc@488 122 fun exp (env, e, st : state) =
adamc@482 123 let
adamc@721 124 (*val () = Print.prefaces "exp" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 125 (e, ErrorMsg.dummySpan))]*)
adamc@721 126
adamc@488 127 fun getApp e =
adamc@482 128 case e of
adamc@488 129 ENamed f => SOME (f, [])
adamc@482 130 | EApp (e1, e2) =>
adamc@488 131 (case getApp (#1 e1) of
adamc@482 132 NONE => NONE
adamc@488 133 | SOME (f, xs) => SOME (f, xs @ [e2]))
adamc@482 134 | _ => NONE
adamc@482 135 in
adamc@482 136 case getApp e of
adamc@721 137 NONE => ((*Print.prefaces "No" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 138 (e, ErrorMsg.dummySpan))];*)
adamc@721 139 (e, st))
adamc@488 140 | SOME (f, xs) =>
adamc@485 141 case IM.find (#funcs st, f) of
adamc@485 142 NONE => (e, st)
adamc@485 143 | SOME {name, args, body, typ, tag} =>
adamc@488 144 let
adamc@721 145 (*val () = Print.prefaces "Consider" [("e", CorePrint.p_exp CoreEnv.empty
adamc@721 146 (e, ErrorMsg.dummySpan))]*)
adamc@721 147
adamc@488 148 val functionInside = U.Con.exists {kind = fn _ => false,
adamc@488 149 con = fn TFun _ => true
adamc@488 150 | CFfi ("Basis", "transaction") => true
adamc@794 151 | CFfi ("Basis", "eq") => true
adamc@794 152 | CFfi ("Basis", "num") => true
adamc@794 153 | CFfi ("Basis", "ord") => true
adamc@794 154 | CFfi ("Basis", "show") => true
adamc@794 155 | CFfi ("Basis", "read") => true
adamc@794 156 | CFfi ("Basis", "sql_injectable_prim") => true
adamc@794 157 | CFfi ("Basis", "sql_injectable") => true
adamc@488 158 | _ => false}
adamc@488 159 val loc = ErrorMsg.dummySpan
adamc@488 160
adamc@488 161 fun findSplit (xs, typ, fxs, fvs) =
adamc@488 162 case (#1 typ, xs) of
adamc@488 163 (TFun (dom, ran), e :: xs') =>
adamc@488 164 if functionInside dom then
adamc@488 165 findSplit (xs',
adamc@488 166 ran,
adamc@488 167 e :: fxs,
adamc@488 168 IS.union (fvs, freeVars e))
adamc@488 169 else
adamc@488 170 (rev fxs, xs, fvs)
adamc@488 171 | _ => (rev fxs, xs, fvs)
adamc@488 172
adamc@488 173 val (fxs, xs, fvs) = findSplit (xs, typ, [], IS.empty)
adamc@488 174
adamc@488 175 val fxs' = map (squish (IS.listItems fvs)) fxs
adamc@488 176
adamc@488 177 fun firstRel () =
adamc@488 178 case fxs' of
adamc@488 179 (ERel _, _) :: _ => true
adamc@488 180 | _ => false
adamc@488 181 in
adamc@488 182 if firstRel ()
adamc@488 183 orelse List.all (fn (ERel _, _) => true
adamc@488 184 | _ => false) fxs' then
adamc@488 185 (e, st)
adamc@488 186 else
adamc@488 187 case KM.find (args, fxs') of
adamc@488 188 SOME f' =>
adamc@485 189 let
adamc@488 190 val e = (ENamed f', loc)
adamc@488 191 val e = IS.foldr (fn (arg, e) => (EApp (e, (ERel arg, loc)), loc))
adamc@488 192 e fvs
adamc@488 193 val e = foldl (fn (arg, e) => (EApp (e, arg), loc))
adamc@488 194 e xs
adamc@488 195 in
adamc@488 196 (*Print.prefaces "Brand new (reuse)"
adamc@721 197 [("e'", CorePrint.p_exp CoreEnv.empty e)];*)
adamc@488 198 (#1 e, st)
adamc@488 199 end
adamc@488 200 | NONE =>
adamc@488 201 let
adamc@488 202 fun subBody (body, typ, fxs') =
adamc@488 203 case (#1 body, #1 typ, fxs') of
adamc@488 204 (_, _, []) => SOME (body, typ)
adamc@488 205 | (EAbs (_, _, _, body'), TFun (_, typ'), x :: fxs'') =>
adamc@488 206 let
adamc@488 207 val body'' = E.subExpInExp (0, x) body'
adamc@488 208 in
adamc@488 209 subBody (body'',
adamc@488 210 typ',
adamc@488 211 fxs'')
adamc@488 212 end
adamc@488 213 | _ => NONE
adamc@488 214 in
adamc@488 215 case subBody (body, typ, fxs') of
adamc@488 216 NONE => (e, st)
adamc@488 217 | SOME (body', typ') =>
adamc@488 218 let
adamc@488 219 val f' = #maxName st
adamc@488 220 val args = KM.insert (args, fxs', f')
adamc@488 221 val funcs = IM.insert (#funcs st, f, {name = name,
adamc@488 222 args = args,
adamc@488 223 body = body,
adamc@488 224 typ = typ,
adamc@488 225 tag = tag})
adamc@488 226 val st = {
adamc@488 227 maxName = f' + 1,
adamc@488 228 funcs = funcs,
adamc@488 229 decls = #decls st
adamc@488 230 }
adamc@487 231
adamc@488 232 (*val () = Print.prefaces "specExp"
adamc@488 233 [("f", CorePrint.p_exp env (ENamed f, loc)),
adamc@488 234 ("f'", CorePrint.p_exp env (ENamed f', loc)),
adamc@488 235 ("xs", Print.p_list (CorePrint.p_exp env) xs),
adamc@488 236 ("fxs'", Print.p_list
adamc@488 237 (CorePrint.p_exp E.empty) fxs'),
adamc@488 238 ("e", CorePrint.p_exp env (e, loc))]*)
adamc@488 239 val (body', typ') = IS.foldl (fn (n, (body', typ')) =>
adamc@488 240 let
adamc@521 241 val (x, xt) = List.nth (env, n)
adamc@488 242 in
adamc@488 243 ((EAbs (x, xt, typ', body'),
adamc@488 244 loc),
adamc@488 245 (TFun (xt, typ'), loc))
adamc@488 246 end)
adamc@488 247 (body', typ') fvs
adamc@488 248 val (body', st) = specExp env st body'
adamc@482 249
adamc@488 250 val e' = (ENamed f', loc)
adamc@488 251 val e' = IS.foldr (fn (arg, e) => (EApp (e, (ERel arg, loc)), loc))
adamc@488 252 e' fvs
adamc@488 253 val e' = foldl (fn (arg, e) => (EApp (e, arg), loc))
adamc@488 254 e' xs
adamc@488 255 (*val () = Print.prefaces "Brand new"
adamc@721 256 [("e'", CorePrint.p_exp CoreEnv.empty e'),
adamc@721 257 ("e", CorePrint.p_exp CoreEnv.empty (e, loc)),
adamc@721 258 ("body'", CorePrint.p_exp CoreEnv.empty body')]*)
adamc@488 259 in
adamc@488 260 (#1 e',
adamc@488 261 {maxName = #maxName st,
adamc@488 262 funcs = #funcs st,
adamc@488 263 decls = (name, f', typ', body', tag) :: #decls st})
adamc@488 264 end
adamc@485 265 end
adamc@488 266 end
adamc@485 267 end
adamc@482 268
adamc@626 269 and specExp env = U.Exp.foldMapB {kind = default, con = default, exp = exp, bind = bind} env
adamc@482 270
adamc@626 271 val specDecl = U.Decl.foldMapB {kind = default, con = default, exp = exp, decl = default, bind = bind}
adamc@482 272
adamc@521 273 fun doDecl (d, (st : state, changed)) =
adamc@488 274 let
adamc@521 275 (*val befor = Time.now ()*)
adamc@482 276
adamc@453 277 val funcs = #funcs st
adamc@453 278 val funcs =
adamc@453 279 case #1 d of
adamc@453 280 DValRec vis =>
adamc@453 281 foldl (fn ((x, n, c, e, tag), funcs) =>
adamc@453 282 IM.insert (funcs, n, {name = x,
adamc@453 283 args = KM.empty,
adamc@453 284 body = e,
adamc@453 285 typ = c,
adamc@453 286 tag = tag}))
adamc@453 287 funcs vis
adamc@453 288 | _ => funcs
adamc@453 289
adamc@453 290 val st = {maxName = #maxName st,
adamc@453 291 funcs = funcs,
adamc@453 292 decls = []}
adamc@453 293
adamc@482 294 (*val () = Print.prefaces "decl" [("d", CorePrint.p_decl CoreEnv.empty d)]*)
adamc@521 295
adamc@522 296 val (d', st) =
adamc@522 297 if isPoly d then
adamc@522 298 (d, st)
adamc@522 299 else
adamc@522 300 specDecl [] st d
adamc@521 301
adamc@482 302 (*val () = print "/decl\n"*)
adamc@443 303
adamc@443 304 val funcs = #funcs st
adamc@443 305 val funcs =
adamc@443 306 case #1 d of
adamc@443 307 DVal (x, n, c, e as (EAbs _, _), tag) =>
adamc@443 308 IM.insert (funcs, n, {name = x,
adamc@453 309 args = KM.empty,
adamc@443 310 body = e,
adamc@443 311 typ = c,
adamc@443 312 tag = tag})
adamc@469 313 | DVal (_, n, _, (ENamed n', _), _) =>
adamc@469 314 (case IM.find (funcs, n') of
adamc@469 315 NONE => funcs
adamc@469 316 | SOME v => IM.insert (funcs, n, v))
adamc@443 317 | _ => funcs
adamc@443 318
adamc@453 319 val (changed, ds) =
adamc@443 320 case #decls st of
adamc@453 321 [] => (changed, [d'])
adamc@453 322 | vis =>
adamc@453 323 (true, case d' of
adamc@453 324 (DValRec vis', _) => [(DValRec (vis @ vis'), ErrorMsg.dummySpan)]
adamc@453 325 | _ => [(DValRec vis, ErrorMsg.dummySpan), d'])
adamc@443 326 in
adamc@521 327 (*Print.prefaces "doDecl" [("d", CorePrint.p_decl E.empty d),
adamc@521 328 ("t", Print.PD.string (Real.toString (Time.toReal
adamc@521 329 (Time.- (Time.now (), befor)))))];*)
adamc@521 330 (ds, ({maxName = #maxName st,
adamc@453 331 funcs = funcs,
adamc@453 332 decls = []}, changed))
adamc@443 333 end
adamc@443 334
adamc@521 335 val (ds, (_, changed)) = ListUtil.foldlMapConcat doDecl
adamc@521 336 ({maxName = U.File.maxName file + 1,
adamc@488 337 funcs = IM.empty,
adamc@488 338 decls = []},
adamc@488 339 false)
adamc@488 340 file
adamc@443 341 in
adamc@453 342 (changed, ds)
adamc@443 343 end
adamc@443 344
adamc@453 345 fun specialize file =
adamc@453 346 let
adamc@721 347 val file = ReduceLocal.reduce file
adamc@721 348 (*val () = Print.prefaces "Intermediate" [("file", CorePrint.p_file CoreEnv.empty file)]*)
adamc@520 349 (*val file = ReduceLocal.reduce file*)
adamc@453 350 val (changed, file) = specialize' file
adamc@520 351 (*val file = ReduceLocal.reduce file
adamc@520 352 val file = CoreUntangle.untangle file
adamc@488 353 val file = Shake.shake file*)
adamc@453 354 in
adamc@488 355 (*print "Round over\n";*)
adamc@453 356 if changed then
adamc@520 357 let
adamc@721 358 (*val file = ReduceLocal.reduce file*)
adamc@520 359 val file = CoreUntangle.untangle file
adamc@520 360 val file = Shake.shake file
adamc@520 361 in
adamc@520 362 (*print "Again!\n";*)
adamc@520 363 specialize file
adamc@520 364 end
adamc@453 365 else
adamc@453 366 file
adamc@453 367 end
adamc@453 368
adamc@443 369 end