annotate src/core_print.sml @ 149:7420fa18d657

Record cut
author Adam Chlipala <adamc@hcoop.net>
date Thu, 24 Jul 2008 10:09:21 -0400
parents f0d3402184d1
children 80192edca30d
rev   line source
adamc@16 1 (* Copyright (c) 2008, Adam Chlipala
adamc@16 2 * All rights reserved.
adamc@16 3 *
adamc@16 4 * Redistribution and use in source and binary forms, with or without
adamc@16 5 * modification, are permitted provided that the following conditions are met:
adamc@16 6 *
adamc@16 7 * - Redistributions of source code must retain the above copyright notice,
adamc@16 8 * this list of conditions and the following disclaimer.
adamc@16 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@16 10 * this list of conditions and the following disclaimer in the documentation
adamc@16 11 * and/or other materials provided with the distribution.
adamc@16 12 * - The names of contributors may not be used to endorse or promote products
adamc@16 13 * derived from this software without specific prior written permission.
adamc@16 14 *
adamc@16 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@16 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@16 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@16 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@16 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@16 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@16 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@16 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@16 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@16 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@16 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@16 26 *)
adamc@16 27
adamc@16 28 (* Pretty-printing core Laconic/Web *)
adamc@16 29
adamc@16 30 structure CorePrint :> CORE_PRINT = struct
adamc@16 31
adamc@16 32 open Print.PD
adamc@16 33 open Print
adamc@16 34
adamc@16 35 open Core
adamc@16 36
adamc@16 37 structure E = CoreEnv
adamc@16 38
adamc@16 39 val debug = ref false
adamc@16 40
adamc@16 41 fun p_kind' par (k, _) =
adamc@16 42 case k of
adamc@16 43 KType => string "Type"
adamc@16 44 | KArrow (k1, k2) => parenIf par (box [p_kind' true k1,
adamc@16 45 space,
adamc@16 46 string "->",
adamc@16 47 space,
adamc@16 48 p_kind k2])
adamc@16 49 | KName => string "Name"
adamc@16 50 | KRecord k => box [string "{", p_kind k, string "}"]
adamc@87 51 | KUnit => string "Unit"
adamc@16 52
adamc@16 53 and p_kind k = p_kind' false k
adamc@16 54
adamc@16 55 fun p_con' par env (c, _) =
adamc@16 56 case c of
adamc@16 57 TFun (t1, t2) => parenIf par (box [p_con' true env t1,
adamc@16 58 space,
adamc@16 59 string "->",
adamc@16 60 space,
adamc@16 61 p_con env t2])
adamc@16 62 | TCFun (x, k, c) => parenIf par (box [string x,
adamc@16 63 space,
adamc@16 64 string "::",
adamc@16 65 space,
adamc@16 66 p_kind k,
adamc@16 67 space,
adamc@16 68 string "->",
adamc@16 69 space,
adamc@16 70 p_con (E.pushCRel env x k) c])
adamc@16 71 | TRecord (CRecord (_, xcs), _) => box [string "{",
adamc@16 72 p_list (fn (x, c) =>
adamc@20 73 box [p_name env x,
adamc@16 74 space,
adamc@16 75 string ":",
adamc@16 76 space,
adamc@16 77 p_con env c]) xcs,
adamc@16 78 string "}"]
adamc@16 79 | TRecord c => box [string "$",
adamc@16 80 p_con' true env c]
adamc@16 81
adamc@16 82 | CRel n =>
adamc@39 83 ((if !debug then
adamc@39 84 string (#1 (E.lookupCRel env n) ^ "_" ^ Int.toString n)
adamc@39 85 else
adamc@39 86 string (#1 (E.lookupCRel env n)))
adamc@39 87 handle E.UnboundRel _ => string ("UNBOUND_" ^ Int.toString n))
adamc@16 88 | CNamed n =>
adamc@39 89 ((if !debug then
adamc@39 90 string (#1 (E.lookupCNamed env n) ^ "__" ^ Int.toString n)
adamc@39 91 else
adamc@39 92 string (#1 (E.lookupCNamed env n)))
adamc@39 93 handle E.UnboundNamed _ => string ("UNBOUNDN_" ^ Int.toString n))
adamc@48 94 | CFfi (m, x) => box [string "FFI(", string m, string ".", string x, string ")"]
adamc@16 95
adamc@16 96 | CApp (c1, c2) => parenIf par (box [p_con env c1,
adamc@16 97 space,
adamc@16 98 p_con' true env c2])
adamc@16 99 | CAbs (x, k, c) => parenIf par (box [string "fn",
adamc@16 100 space,
adamc@16 101 string x,
adamc@16 102 space,
adamc@16 103 string "::",
adamc@16 104 space,
adamc@16 105 p_kind k,
adamc@16 106 space,
adamc@16 107 string "=>",
adamc@16 108 space,
adamc@16 109 p_con (E.pushCRel env x k) c])
adamc@16 110
adamc@16 111 | CName s => box [string "#", string s]
adamc@16 112
adamc@16 113 | CRecord (k, xcs) =>
adamc@16 114 if !debug then
adamc@16 115 parenIf par (box [string "[",
adamc@16 116 p_list (fn (x, c) =>
adamc@16 117 box [p_con env x,
adamc@16 118 space,
adamc@16 119 string "=",
adamc@16 120 space,
adamc@16 121 p_con env c]) xcs,
adamc@16 122 string "]::",
adamc@16 123 p_kind k])
adamc@16 124 else
adamc@16 125 parenIf par (box [string "[",
adamc@16 126 p_list (fn (x, c) =>
adamc@16 127 box [p_con env x,
adamc@16 128 space,
adamc@16 129 string "=",
adamc@16 130 space,
adamc@16 131 p_con env c]) xcs,
adamc@16 132 string "]"])
adamc@16 133 | CConcat (c1, c2) => parenIf par (box [p_con' true env c1,
adamc@16 134 space,
adamc@16 135 string "++",
adamc@16 136 space,
adamc@16 137 p_con env c2])
adamc@69 138 | CFold _ => string "fold"
adamc@87 139 | CUnit => string "()"
adamc@16 140
adamc@16 141 and p_con env = p_con' false env
adamc@16 142
adamc@20 143 and p_name env (all as (c, _)) =
adamc@20 144 case c of
adamc@20 145 CName s => string s
adamc@20 146 | _ => p_con env all
adamc@20 147
adamc@109 148 fun p_enamed env n =
adamc@109 149 (if !debug then
adamc@109 150 string (#1 (E.lookupENamed env n) ^ "__" ^ Int.toString n)
adamc@109 151 else
adamc@109 152 string (#1 (E.lookupENamed env n)))
adamc@109 153 handle E.UnboundNamed _ => string ("UNBOUNDN_" ^ Int.toString n)
adamc@109 154
adamc@16 155 fun p_exp' par env (e, _) =
adamc@16 156 case e of
adamc@16 157 EPrim p => Prim.p_t p
adamc@16 158 | ERel n =>
adamc@39 159 ((if !debug then
adamc@39 160 string (#1 (E.lookupERel env n) ^ "_" ^ Int.toString n)
adamc@39 161 else
adamc@39 162 string (#1 (E.lookupERel env n)))
adamc@39 163 handle E.UnboundRel _ => string ("UNBOUND_" ^ Int.toString n))
adamc@109 164 | ENamed n => p_enamed env n
adamc@48 165 | EFfi (m, x) => box [string "FFI(", string m, string ".", string x, string ")"]
adamc@48 166 | EFfiApp (m, x, es) => box [string "FFI(",
adamc@48 167 string m,
adamc@48 168 string ".",
adamc@48 169 string x,
adamc@48 170 string "(",
adamc@48 171 p_list (p_exp env) es,
adamc@48 172 string "))"]
adamc@16 173 | EApp (e1, e2) => parenIf par (box [p_exp env e1,
adamc@16 174 space,
adamc@16 175 p_exp' true env e2])
adamc@26 176 | EAbs (x, t, _, e) => parenIf par (box [string "fn",
adamc@26 177 space,
adamc@26 178 string x,
adamc@26 179 space,
adamc@26 180 string ":",
adamc@26 181 space,
adamc@26 182 p_con env t,
adamc@26 183 space,
adamc@26 184 string "=>",
adamc@26 185 space,
adamc@26 186 p_exp (E.pushERel env x t) e])
adamc@16 187 | ECApp (e, c) => parenIf par (box [p_exp env e,
adamc@16 188 space,
adamc@16 189 string "[",
adamc@16 190 p_con env c,
adamc@16 191 string "]"])
adamc@16 192 | ECAbs (x, k, e) => parenIf par (box [string "fn",
adamc@16 193 space,
adamc@16 194 string x,
adamc@16 195 space,
adamc@16 196 string "::",
adamc@16 197 space,
adamc@16 198 p_kind k,
adamc@16 199 space,
adamc@16 200 string "=>",
adamc@16 201 space,
adamc@16 202 p_exp (E.pushCRel env x k) e])
adamc@16 203
adamc@16 204 | ERecord xes => box [string "{",
adamc@29 205 p_list (fn (x, e, _) =>
adamc@21 206 box [p_name env x,
adamc@16 207 space,
adamc@16 208 string "=",
adamc@16 209 space,
adamc@16 210 p_exp env e]) xes,
adamc@16 211 string "}"]
adamc@16 212 | EField (e, c, {field, rest}) =>
adamc@16 213 if !debug then
adamc@16 214 box [p_exp' true env e,
adamc@16 215 string ".",
adamc@16 216 p_con' true env c,
adamc@16 217 space,
adamc@16 218 string "[",
adamc@16 219 p_con env field,
adamc@16 220 space,
adamc@16 221 string " in ",
adamc@16 222 space,
adamc@16 223 p_con env rest,
adamc@16 224 string "]"]
adamc@16 225 else
adamc@16 226 box [p_exp' true env e,
adamc@16 227 string ".",
adamc@16 228 p_con' true env c]
adamc@149 229 | ECut (e, c, {field, rest}) =>
adamc@149 230 parenIf par (if !debug then
adamc@149 231 box [p_exp' true env e,
adamc@149 232 space,
adamc@149 233 string "--",
adamc@149 234 space,
adamc@149 235 p_con' true env c,
adamc@149 236 space,
adamc@149 237 string "[",
adamc@149 238 p_con env field,
adamc@149 239 space,
adamc@149 240 string " in ",
adamc@149 241 space,
adamc@149 242 p_con env rest,
adamc@149 243 string "]"]
adamc@149 244 else
adamc@149 245 box [p_exp' true env e,
adamc@149 246 space,
adamc@149 247 string "--",
adamc@149 248 space,
adamc@149 249 p_con' true env c])
adamc@73 250 | EFold _ => string "fold"
adamc@16 251
adamc@102 252 | EWrite e => box [string "write(",
adamc@102 253 p_exp env e,
adamc@102 254 string ")"]
adamc@102 255
adamc@110 256 | EClosure (n, es) => box [string "CLOSURE(",
adamc@110 257 p_enamed env n,
adamc@110 258 p_list_sep (string "") (fn e => box [string ", ",
adamc@110 259 p_exp env e]) es,
adamc@110 260 string ")"]
adamc@110 261
adamc@16 262 and p_exp env = p_exp' false env
adamc@16 263
adamc@125 264 fun p_vali env (x, n, t, e, s) =
adamc@125 265 let
adamc@125 266 val xp = if !debug then
adamc@125 267 box [string x,
adamc@125 268 string "__",
adamc@125 269 string (Int.toString n)]
adamc@125 270 else
adamc@125 271 string x
adamc@125 272 in
adamc@125 273 box [xp,
adamc@125 274 space,
adamc@125 275 string "as",
adamc@125 276 space,
adamc@125 277 string s,
adamc@125 278 space,
adamc@125 279 string ":",
adamc@125 280 space,
adamc@125 281 p_con env t,
adamc@125 282 space,
adamc@125 283 string "=",
adamc@125 284 space,
adamc@125 285 p_exp env e]
adamc@125 286 end
adamc@125 287
adamc@144 288 fun p_export_kind ck =
adamc@144 289 case ck of
adamc@144 290 Link => string "link"
adamc@144 291 | Action => string "action"
adamc@144 292
adamc@125 293 fun p_decl env (dAll as (d, _) : decl) =
adamc@16 294 case d of
adamc@16 295 DCon (x, n, k, c) =>
adamc@16 296 let
adamc@16 297 val xp = if !debug then
adamc@16 298 box [string x,
adamc@16 299 string "__",
adamc@16 300 string (Int.toString n)]
adamc@16 301 else
adamc@16 302 string x
adamc@16 303 in
adamc@16 304 box [string "con",
adamc@16 305 space,
adamc@16 306 xp,
adamc@16 307 space,
adamc@16 308 string "::",
adamc@16 309 space,
adamc@16 310 p_kind k,
adamc@16 311 space,
adamc@16 312 string "=",
adamc@16 313 space,
adamc@16 314 p_con env c]
adamc@16 315 end
adamc@125 316 | DVal vi => box [string "val",
adamc@125 317 space,
adamc@125 318 p_vali env vi]
adamc@125 319 | DValRec vis =>
adamc@16 320 let
adamc@125 321 val env = E.declBinds env dAll
adamc@16 322 in
adamc@16 323 box [string "val",
adamc@16 324 space,
adamc@125 325 string "rec",
adamc@16 326 space,
adamc@125 327 p_list_sep (box [newline, string "and", space]) (p_vali env) vis]
adamc@16 328 end
adamc@144 329 | DExport (ek, n) => box [string "export",
adamc@144 330 space,
adamc@144 331 p_export_kind ek,
adamc@144 332 space,
adamc@144 333 p_enamed env n,
adamc@144 334 space,
adamc@144 335 string "as",
adamc@144 336 space,
adamc@144 337 p_con env (#2 (E.lookupENamed env n))]
adamc@16 338
adamc@16 339 fun p_file env file =
adamc@16 340 let
adamc@31 341 val (pds, _) = ListUtil.foldlMap (fn (d, env) =>
adamc@31 342 (p_decl env d,
adamc@31 343 E.declBinds env d))
adamc@16 344 env file
adamc@16 345 in
adamc@16 346 p_list_sep newline (fn x => x) pds
adamc@16 347 end
adamc@16 348
adamc@16 349 end