annotate src/mono_reduce.sml @ 252:7e9bd70ad3ce

Monoized and optimized initial query test
author Adam Chlipala <adamc@hcoop.net>
date Sun, 31 Aug 2008 13:58:47 -0400
parents 8e9f97508f0d
children 7f6620853c36
rev   line source
adamc@133 1 (* Copyright (c) 2008, Adam Chlipala
adamc@133 2 * All rights reserved.
adamc@133 3 *
adamc@133 4 * Redistribution and use in source and binary forms, with or without
adamc@133 5 * modification, are permitted provided that the following conditions are met:
adamc@133 6 *
adamc@133 7 * - Redistributions of source code must retain the above copyright notice,
adamc@133 8 * this list of conditions and the following disclaimer.
adamc@133 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@133 10 * this list of conditions and the following disclaimer in the documentation
adamc@133 11 * and/or other materials provided with the distribution.
adamc@133 12 * - The names of contributors may not be used to endorse or promote products
adamc@133 13 * derived from this software without specific prior written permission.
adamc@133 14 *
adamc@133 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@133 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@133 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@133 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@133 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@133 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@133 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@133 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@133 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@133 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@133 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@133 26 *)
adamc@133 27
adamc@133 28 (* Simplify a Mono program algebraically *)
adamc@133 29
adamc@133 30 structure MonoReduce :> MONO_REDUCE = struct
adamc@133 31
adamc@133 32 open Mono
adamc@133 33
adamc@133 34 structure E = MonoEnv
adamc@133 35 structure U = MonoUtil
adamc@133 36
adamc@133 37
adamc@252 38 fun impure (e, _) =
adamc@252 39 case e of
adamc@252 40 EWrite _ => true
adamc@252 41 | EQuery _ => true
adamc@252 42 | EAbs _ => false
adamc@252 43
adamc@252 44 | EPrim _ => false
adamc@252 45 | ERel _ => false
adamc@252 46 | ENamed _ => false
adamc@252 47 | ECon (_, _, eo) => (case eo of NONE => false | SOME e => impure e)
adamc@252 48 | EFfi _ => false
adamc@252 49 | EFfiApp _ => false
adamc@252 50 | EApp ((EFfi _, _), _) => false
adamc@252 51 | EApp _ => true
adamc@252 52
adamc@252 53 | ERecord xes => List.exists (fn (_, e, _) => impure e) xes
adamc@252 54 | EField (e, _) => impure e
adamc@252 55
adamc@252 56 | ECase (e, pes, _) => impure e orelse List.exists (fn (_, e) => impure e) pes
adamc@252 57
adamc@252 58 | EStrcat (e1, e2) => impure e1 orelse impure e2
adamc@252 59
adamc@252 60 | ESeq (e1, e2) => impure e1 orelse impure e2
adamc@252 61 | ELet (_, _, e1, e2) => impure e1 orelse impure e2
adamc@252 62
adamc@252 63 | EClosure (_, es) => List.exists impure es
adamc@252 64
adamc@252 65
adamc@252 66 val liftExpInExp = Monoize.liftExpInExp
adamc@252 67
adamc@252 68 val subExpInExp' =
adamc@133 69 U.Exp.mapB {typ = fn t => t,
adamc@133 70 exp = fn (xn, rep) => fn e =>
adamc@133 71 case e of
adamc@133 72 ERel xn' =>
adamc@133 73 (case Int.compare (xn', xn) of
adamc@133 74 EQUAL => #1 rep
adamc@133 75 | GREATER=> ERel (xn' - 1)
adamc@133 76 | LESS => e)
adamc@133 77 | _ => e,
adamc@133 78 bind = fn ((xn, rep), U.Exp.RelE _) => (xn+1, liftExpInExp 0 rep)
adamc@133 79 | (ctx, _) => ctx}
adamc@133 80
adamc@252 81 fun subExpInExp (n, e1) e2 =
adamc@252 82 let
adamc@252 83 val r = subExpInExp' (n, e1) e2
adamc@252 84 in
adamc@252 85 (*Print.prefaces "subExpInExp" [("e1", MonoPrint.p_exp MonoEnv.empty e1),
adamc@252 86 ("e2", MonoPrint.p_exp MonoEnv.empty e2),
adamc@252 87 ("r", MonoPrint.p_exp MonoEnv.empty r)];*)
adamc@252 88 r
adamc@252 89 end
adamc@133 90
adamc@133 91 fun typ c = c
adamc@133 92
adamc@183 93 fun match (env, p : pat, e : exp) =
adamc@183 94 case (#1 p, #1 e) of
adamc@183 95 (PWild, _) => SOME env
adamc@183 96 | (PVar (x, t), _) => SOME (E.pushERel env x t (SOME e))
adamc@183 97
adamc@183 98 | (PPrim p, EPrim p') =>
adamc@183 99 if Prim.equal (p, p') then
adamc@183 100 SOME env
adamc@183 101 else
adamc@183 102 NONE
adamc@183 103
adamc@188 104 | (PCon (_, PConVar n1, NONE), ECon (_, PConVar n2, NONE)) =>
adamc@183 105 if n1 = n2 then
adamc@183 106 SOME env
adamc@183 107 else
adamc@183 108 NONE
adamc@183 109
adamc@188 110 | (PCon (_, PConVar n1, SOME p), ECon (_, PConVar n2, SOME e)) =>
adamc@183 111 if n1 = n2 then
adamc@183 112 match (env, p, e)
adamc@183 113 else
adamc@183 114 NONE
adamc@183 115
adamc@188 116 | (PCon (_, PConFfi {mod = m1, con = con1, ...}, NONE), ECon (_, PConFfi {mod = m2, con = con2, ...}, NONE)) =>
adamc@185 117 if m1 = m2 andalso con1 = con2 then
adamc@185 118 SOME env
adamc@185 119 else
adamc@185 120 NONE
adamc@185 121
adamc@188 122 | (PCon (_, PConFfi {mod = m1, con = con1, ...}, SOME ep), ECon (_, PConFfi {mod = m2, con = con2, ...}, SOME e)) =>
adamc@185 123 if m1 = m2 andalso con1 = con2 then
adamc@185 124 match (env, p, e)
adamc@185 125 else
adamc@185 126 NONE
adamc@185 127
adamc@183 128 | (PRecord xps, ERecord xes) =>
adamc@183 129 let
adamc@183 130 fun consider (xps, env) =
adamc@183 131 case xps of
adamc@183 132 [] => SOME env
adamc@183 133 | (x, p, _) :: rest =>
adamc@183 134 case List.find (fn (x', _, _) => x' = x) xes of
adamc@183 135 NONE => NONE
adamc@183 136 | SOME (_, e, _) =>
adamc@183 137 case match (env, p, e) of
adamc@183 138 NONE => NONE
adamc@183 139 | SOME env => consider (rest, env)
adamc@183 140 in
adamc@183 141 consider (xps, env)
adamc@183 142 end
adamc@183 143
adamc@183 144 | _ => NONE
adamc@183 145
adamc@133 146 fun exp env e =
adamc@133 147 case e of
adamc@183 148 ERel n =>
adamc@183 149 (case E.lookupERel env n of
adamc@183 150 (_, _, SOME e') => #1 e'
adamc@183 151 | _ => e)
adamc@183 152 | ENamed n =>
adamc@133 153 (case E.lookupENamed env n of
adamc@133 154 (_, _, SOME e', _) => #1 e'
adamc@133 155 | _ => e)
adamc@133 156
adamc@252 157 | EApp ((EAbs (x, t, _, e1), loc), e2) =>
adamc@252 158 ((*Print.prefaces "Considering" [("e1", MonoPrint.p_exp env e1),
adamc@252 159 ("e2", MonoPrint.p_exp env e2)];*)
adamc@252 160 if impure e2 then
adamc@252 161 #1 (reduceExp env (ELet (x, t, e2, e1), loc))
adamc@252 162 else
adamc@252 163 #1 (reduceExp env (subExpInExp (0, e2) e1)))
adamc@133 164
adamc@184 165 | ECase (disc, pes, _) =>
adamc@183 166 (case ListUtil.search (fn (p, body) =>
adamc@183 167 case match (env, p, disc) of
adamc@183 168 NONE => NONE
adamc@183 169 | SOME env => SOME (#1 (reduceExp env body))) pes of
adamc@183 170 NONE => e
adamc@183 171 | SOME e' => e')
adamc@183 172
adamc@252 173 | EField ((ERecord xes, _), x) =>
adamc@252 174 (case List.find (fn (x', _, _) => x' = x) xes of
adamc@252 175 SOME (_, e, _) => #1 e
adamc@252 176 | NONE => e)
adamc@252 177
adamc@252 178 | ELet (x1, t1, (ELet (x2, t2, e1, b1), loc), b2) =>
adamc@252 179 let
adamc@252 180 val e' = (ELet (x2, t2, e1,
adamc@252 181 (ELet (x1, t1, b1,
adamc@252 182 liftExpInExp 1 b2), loc)), loc)
adamc@252 183 in
adamc@252 184 Print.prefaces "ELet commute" [("e", MonoPrint.p_exp env (e, loc)),
adamc@252 185 ("e'", MonoPrint.p_exp env e')];
adamc@252 186 #1 (reduceExp env e')
adamc@252 187 end
adamc@252 188 | EApp ((ELet (x, t, e, b), loc), e') =>
adamc@252 189 #1 (reduceExp env (ELet (x, t, e,
adamc@252 190 (EApp (b, liftExpInExp 0 e'), loc)), loc))
adamc@252 191 | ELet (x, t, e', b) =>
adamc@252 192 if impure e' then
adamc@252 193 e
adamc@252 194 else
adamc@252 195 #1 (reduceExp env (subExpInExp (0, e') b))
adamc@252 196
adamc@133 197 | _ => e
adamc@133 198
adamc@252 199 and bind (env, b) =
adamc@252 200 case b of
adamc@252 201 U.Decl.Datatype (x, n, xncs) => E.pushDatatype env x n xncs
adamc@252 202 | U.Decl.RelE (x, t) => E.pushERel env x t NONE
adamc@252 203 | U.Decl.NamedE (x, n, t, eo, s) => E.pushENamed env x n t (Option.map (reduceExp env) eo) s
adamc@252 204
adamc@133 205 and reduceExp env = U.Exp.mapB {typ = typ, exp = exp, bind = bind} env
adamc@133 206
adamc@133 207 fun decl env d = d
adamc@133 208
adamc@133 209 val reduce = U.File.mapB {typ = typ, exp = exp, decl = decl, bind = bind} E.empty
adamc@133 210
adamc@133 211 end