Mercurial > urweb
changeset 2260:03b10c7fab9a
Begin work on cache merging.
author | Ziv Scully <ziv@mit.edu> |
---|---|
date | Mon, 28 Sep 2015 22:16:51 -0400 |
parents | 6951a645ccdf |
children | f81f1930c5d6 |
files | src/mono_fooify.sml src/sqlcache.sml |
diffstat | 2 files changed, 40 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/mono_fooify.sml Sun Sep 27 17:24:57 2015 -0400 +++ b/src/mono_fooify.sml Mon Sep 28 22:16:51 2015 -0400 @@ -1,4 +1,4 @@ -structure MonoFooify (* :> MONO_FOOIFY *) = struct +structure MonoFooify :> MONO_FOOIFY = struct open Mono
--- a/src/sqlcache.sml Sun Sep 27 17:24:57 2015 -0400 +++ b/src/sqlcache.sml Mon Sep 28 22:16:51 2015 -0400 @@ -799,6 +799,45 @@ val expSize = MonoUtil.Exp.fold {typ = #2, exp = fn (_, n) => n+1} 0 +structure InvalidationInfo :> sig + type t + val fromList : int list -> t + val toList : t -> int list + val union : t * t -> t + val unbind : t * int -> t option +end = struct + +(* Keep track of the minimum explicitly. NONE is the empty set. *) +type t = (int * IS.set) option + +val fromList = + List.foldl + (fn (n, NONE) => SOME (n, IS.singleton n) + | (n', SOME (n, ns)) => SOME (Int.min (n, n'), IS.add (ns, n'))) + NONE + +val toList = + fn NONE => [] + | SOME (_, ns) => IS.listItems ns + +val union = + fn (SOME (n1, ns1), SOME (n2, ns2)) => SOME (Int.min (n1, n2), IS.union (ns1, ns2)) + | (NONE, x) => x + | (x, NONE) => x + +val unbind = + fn (SOME (n, ns), unbound) => + let + val n = n - unbound + in + if n < 0 + then NONE + else SOME (SOME (n, IS.map (fn n => n - unbound) ns)) + end + | _ => SOME NONE + +end + datatype subexp = Pure of unit -> exp | Impure of exp val isImpure =