annotate src/mono_shake.sml @ 164:6847741e1f5f

Datatypes through monoize
author Adam Chlipala <adamc@hcoop.net>
date Tue, 29 Jul 2008 13:32:07 -0400
parents f0d3402184d1
children 25b169416ea8
rev   line source
adamc@134 1 (* Copyright (c) 2008, Adam Chlipala
adamc@134 2 * All rights reserved.
adamc@134 3 *
adamc@134 4 * Redistribution and use in source and binary forms, with or without
adamc@134 5 * modification, are permitted provided that the following conditions are met:
adamc@134 6 *
adamc@134 7 * - Redistributions of source code must retain the above copyright notice,
adamc@134 8 * this list of conditions and the following disclaimer.
adamc@134 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@134 10 * this list of conditions and the following disclaimer in the documentation
adamc@134 11 * and/or other materials provided with the distribution.
adamc@134 12 * - The names of contributors may not be used to endorse or promote products
adamc@134 13 * derived from this software without specific prior written permission.
adamc@134 14 *
adamc@134 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@134 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@134 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@134 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@134 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@134 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@134 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@134 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@134 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@134 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@134 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@134 26 *)
adamc@134 27
adamc@134 28 (* Remove unused definitions from a file *)
adamc@134 29
adamc@134 30 structure MonoShake :> MONO_SHAKE = struct
adamc@134 31
adamc@134 32 open Mono
adamc@134 33
adamc@134 34 structure U = MonoUtil
adamc@134 35
adamc@134 36 structure IS = IntBinarySet
adamc@134 37 structure IM = IntBinaryMap
adamc@134 38
adamc@134 39 type free = {
adamc@134 40 con : IS.set,
adamc@134 41 exp : IS.set
adamc@134 42 }
adamc@134 43
adamc@134 44 fun shake file =
adamc@134 45 let
adamc@134 46 val page_es = List.foldl
adamc@144 47 (fn ((DExport (_, _, n, _), _), page_es) => n :: page_es
adamc@134 48 | (_, page_es) => page_es) [] file
adamc@134 49
adamc@164 50 val (cdef, edef) = foldl (fn ((DDatatype _, _), acc) => acc
adamc@164 51 | ((DVal (_, n, t, e, _), _), (cdef, edef)) => (cdef, IM.insert (edef, n, (t, e)))
adamc@134 52 | ((DValRec vis, _), (cdef, edef)) =>
adamc@134 53 (cdef, foldl (fn ((_, n, t, e, _), edef) => IM.insert (edef, n, (t, e))) edef vis)
adamc@134 54 | ((DExport _, _), acc) => acc)
adamc@134 55 (IM.empty, IM.empty) file
adamc@134 56
adamc@164 57 fun typ (c, s) =
adamc@164 58 case c of
adamc@164 59 TNamed n =>
adamc@164 60 if IS.member (#con s, n) then
adamc@164 61 s
adamc@164 62 else
adamc@164 63 {exp = #exp s,
adamc@164 64 con = IS.add (#con s, n)}
adamc@164 65 | _ => s
adamc@134 66
adamc@134 67 fun exp (e, s) =
adamc@134 68 case e of
adamc@134 69 ENamed n =>
adamc@134 70 if IS.member (#exp s, n) then
adamc@134 71 s
adamc@134 72 else
adamc@134 73 let
adamc@134 74 val s' = {exp = IS.add (#exp s, n),
adamc@134 75 con = #con s}
adamc@134 76 in
adamc@134 77 case IM.find (edef, n) of
adamc@134 78 NONE => s'
adamc@134 79 | SOME (t, e) => shakeExp s' e
adamc@134 80 end
adamc@134 81 | _ => s
adamc@134 82
adamc@134 83 and shakeExp s = U.Exp.fold {typ = typ, exp = exp} s
adamc@134 84
adamc@134 85 val s = {con = IS.empty, exp = IS.addList (IS.empty, page_es)}
adamc@134 86
adamc@134 87 val s = foldl (fn (n, s) =>
adamc@134 88 case IM.find (edef, n) of
adamc@134 89 NONE => raise Fail "Shake: Couldn't find 'val'"
adamc@134 90 | SOME (t, e) => shakeExp s e) s page_es
adamc@134 91 in
adamc@164 92 List.filter (fn (DDatatype (_, n, _), _) => IS.member (#con s, n)
adamc@164 93 | (DVal (_, n, _, _, _), _) => IS.member (#exp s, n)
adamc@134 94 | (DValRec vis, _) => List.exists (fn (_, n, _, _, _) => IS.member (#exp s, n)) vis
adamc@134 95 | (DExport _, _) => true) file
adamc@134 96 end
adamc@134 97
adamc@134 98 end