annotate src/cjrize.sml @ 290:df00701f2323

'read' type class
author Adam Chlipala <adamc@hcoop.net>
date Sun, 07 Sep 2008 11:53:30 -0400
parents 4260ad920c36
children 59dc042629b9
rev   line source
adamc@29 1 (* Copyright (c) 2008, Adam Chlipala
adamc@29 2 * All rights reserved.
adamc@29 3 *
adamc@29 4 * Redistribution and use in source and binary forms, with or without
adamc@29 5 * modification, are permitted provided that the following conditions are met:
adamc@29 6 *
adamc@29 7 * - Redistributions of source code must retain the above copyright notice,
adamc@29 8 * this list of conditions and the following disclaimer.
adamc@29 9 * - Redistributions in binary form must reproduce the above copyright notice,
adamc@29 10 * this list of conditions and the following disclaimer in the documentation
adamc@29 11 * and/or other materials provided with the distribution.
adamc@29 12 * - The names of contributors may not be used to endorse or promote products
adamc@29 13 * derived from this software without specific prior written permission.
adamc@29 14 *
adamc@29 15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
adamc@29 16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
adamc@29 17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
adamc@29 18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
adamc@29 19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
adamc@29 20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
adamc@29 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
adamc@29 22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
adamc@29 23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
adamc@29 24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
adamc@29 25 * POSSIBILITY OF SUCH DAMAGE.
adamc@29 26 *)
adamc@29 27
adamc@29 28 structure Cjrize :> CJRIZE = struct
adamc@29 29
adamc@109 30 structure L = Mono
adamc@29 31 structure L' = Cjr
adamc@29 32
adamc@196 33 structure IM = IntBinaryMap
adamc@196 34
adamc@29 35 structure Sm :> sig
adamc@29 36 type t
adamc@29 37
adamc@29 38 val empty : t
adamc@29 39 val find : t * (string * L.typ) list * (string * L'.typ) list -> t * int
adamc@29 40
adamc@29 41 val declares : t -> (int * (string * L'.typ) list) list
adamc@29 42 end = struct
adamc@29 43
adamc@29 44 structure FM = BinaryMapFn(struct
adamc@29 45 type ord_key = L.typ
adamc@109 46 val compare = MonoUtil.Typ.compare
adamc@29 47 end)
adamc@29 48
adamc@29 49 type t = int * int FM.map * (int * (string * L'.typ) list) list
adamc@29 50
adamc@102 51 val empty : t = (1, FM.insert (FM.empty, (L.TRecord [], ErrorMsg.dummySpan), 0), [])
adamc@29 52
adamc@29 53 fun find ((n, m, ds), xts, xts') =
adamc@29 54 let
adamc@29 55 val t = (L.TRecord xts, ErrorMsg.dummySpan)
adamc@29 56 in
adamc@29 57 case FM.find (m, t) of
adamc@29 58 NONE => ((n+1, FM.insert (m, t, n), (n, xts') :: ds), n)
adamc@29 59 | SOME i => ((n, m, ds), i)
adamc@29 60 end
adamc@29 61
adamc@29 62 fun declares (_, _, ds) = ds
adamc@29 63
adamc@29 64 end
adamc@29 65
adamc@196 66 fun cifyTyp x =
adamc@196 67 let
adamc@196 68 fun cify dtmap ((t, loc), sm) =
adamc@196 69 case t of
adamc@196 70 L.TFun (t1, t2) =>
adamc@196 71 let
adamc@196 72 val (t1, sm) = cify dtmap (t1, sm)
adamc@196 73 val (t2, sm) = cify dtmap (t2, sm)
adamc@196 74 in
adamc@196 75 ((L'.TFun (t1, t2), loc), sm)
adamc@196 76 end
adamc@196 77 | L.TRecord xts =>
adamc@196 78 let
adamc@196 79 val old_xts = xts
adamc@196 80 val (xts, sm) = ListUtil.foldlMap (fn ((x, t), sm) =>
adamc@196 81 let
adamc@196 82 val (t, sm) = cify dtmap (t, sm)
adamc@196 83 in
adamc@196 84 ((x, t), sm)
adamc@196 85 end)
adamc@196 86 sm xts
adamc@196 87 val (sm, si) = Sm.find (sm, old_xts, xts)
adamc@196 88 in
adamc@196 89 ((L'.TRecord si, loc), sm)
adamc@196 90 end
adamc@196 91 | L.TDatatype (n, ref (dk, xncs)) =>
adamc@196 92 (case IM.find (dtmap, n) of
adamc@196 93 SOME r => ((L'.TDatatype (dk, n, r), loc), sm)
adamc@196 94 | NONE =>
adamc@196 95 let
adamc@196 96 val r = ref []
adamc@196 97 val dtmap = IM.insert (dtmap, n, r)
adamc@196 98
adamc@196 99 val (xncs, sm) = ListUtil.foldlMap (fn ((x, n, to), sm) =>
adamc@196 100 case to of
adamc@196 101 NONE => ((x, n, NONE), sm)
adamc@196 102 | SOME t =>
adamc@196 103 let
adamc@196 104 val (t, sm) = cify dtmap (t, sm)
adamc@196 105 in
adamc@196 106 ((x, n, SOME t), sm)
adamc@196 107 end)
adamc@196 108 sm xncs
adamc@196 109 in
adamc@196 110 r := xncs;
adamc@196 111 ((L'.TDatatype (dk, n, r), loc), sm)
adamc@196 112 end)
adamc@196 113 | L.TFfi mx => ((L'.TFfi mx, loc), sm)
adamc@288 114 | L.TOption t =>
adamc@288 115 let
adamc@288 116 val (t, sm) = cify dtmap (t, sm)
adamc@288 117 in
adamc@288 118 ((L'.TOption t, loc), sm)
adamc@288 119 end
adamc@196 120 in
adamc@196 121 cify IM.empty x
adamc@196 122 end
adamc@29 123
adamc@109 124 val dummye = (L'.EPrim (Prim.Int 0), ErrorMsg.dummySpan)
adamc@109 125
adamc@186 126 fun cifyPatCon (pc, sm) =
adamc@181 127 case pc of
adamc@186 128 L.PConVar n => (L'.PConVar n, sm)
adamc@186 129 | L.PConFfi {mod = m, datatyp, con, arg} =>
adamc@186 130 let
adamc@186 131 val (arg, sm) =
adamc@186 132 case arg of
adamc@186 133 NONE => (NONE, sm)
adamc@186 134 | SOME t =>
adamc@186 135 let
adamc@186 136 val (t, sm) = cifyTyp (t, sm)
adamc@186 137 in
adamc@186 138 (SOME t, sm)
adamc@186 139 end
adamc@186 140 in
adamc@186 141 (L'.PConFfi {mod = m, datatyp = datatyp, con = con, arg = arg}, sm)
adamc@186 142 end
adamc@181 143
adamc@182 144 fun cifyPat ((p, loc), sm) =
adamc@181 145 case p of
adamc@182 146 L.PWild => ((L'.PWild, loc), sm)
adamc@182 147 | L.PVar (x, t) =>
adamc@182 148 let
adamc@182 149 val (t, sm) = cifyTyp (t, sm)
adamc@182 150 in
adamc@182 151 ((L'.PVar (x, t), loc), sm)
adamc@182 152 end
adamc@182 153 | L.PPrim p => ((L'.PPrim p, loc), sm)
adamc@188 154 | L.PCon (dk, pc, NONE) =>
adamc@186 155 let
adamc@186 156 val (pc, sm) = cifyPatCon (pc, sm)
adamc@186 157 in
adamc@188 158 ((L'.PCon (dk, pc, NONE), loc), sm)
adamc@186 159 end
adamc@188 160 | L.PCon (dk, pc, SOME p) =>
adamc@182 161 let
adamc@186 162 val (pc, sm) = cifyPatCon (pc, sm)
adamc@182 163 val (p, sm) = cifyPat (p, sm)
adamc@182 164 in
adamc@188 165 ((L'.PCon (dk, pc, SOME p), loc), sm)
adamc@182 166 end
adamc@182 167 | L.PRecord xps =>
adamc@182 168 let
adamc@182 169 val (xps, sm) = ListUtil.foldlMap (fn ((x, p, t), sm) =>
adamc@182 170 let
adamc@182 171 val (p, sm) = cifyPat (p, sm)
adamc@182 172 val (t, sm) = cifyTyp (t, sm)
adamc@182 173 in
adamc@182 174 ((x, p, t), sm)
adamc@182 175 end) sm xps
adamc@182 176 in
adamc@182 177 ((L'.PRecord xps, loc), sm)
adamc@182 178 end
adamc@288 179 | L.PNone t =>
adamc@288 180 let
adamc@288 181 val (t, sm) = cifyTyp (t, sm)
adamc@288 182 in
adamc@288 183 ((L'.PNone t, loc), sm)
adamc@288 184 end
adamc@288 185 | L.PSome (t, p) =>
adamc@288 186 let
adamc@288 187 val (t, sm) = cifyTyp (t, sm)
adamc@288 188 val (p, sm) = cifyPat (p, sm)
adamc@288 189 in
adamc@288 190 ((L'.PSome (t, p), loc), sm)
adamc@288 191 end
adamc@288 192
adamc@181 193
adamc@280 194 fun cifyExp (eAll as (e, loc), sm) =
adamc@29 195 case e of
adamc@29 196 L.EPrim p => ((L'.EPrim p, loc), sm)
adamc@29 197 | L.ERel n => ((L'.ERel n, loc), sm)
adamc@29 198 | L.ENamed n => ((L'.ENamed n, loc), sm)
adamc@188 199 | L.ECon (dk, pc, eo) =>
adamc@181 200 let
adamc@181 201 val (eo, sm) =
adamc@181 202 case eo of
adamc@181 203 NONE => (NONE, sm)
adamc@181 204 | SOME e =>
adamc@181 205 let
adamc@181 206 val (e, sm) = cifyExp (e, sm)
adamc@181 207 in
adamc@181 208 (SOME e, sm)
adamc@181 209 end
adamc@186 210 val (pc, sm) = cifyPatCon (pc, sm)
adamc@181 211 in
adamc@188 212 ((L'.ECon (dk, pc, eo), loc), sm)
adamc@181 213 end
adamc@290 214 | L.ESome (t, e) =>
adamc@290 215 let
adamc@290 216 val (t, sm) = cifyTyp (t, sm)
adamc@290 217 val (e, sm) = cifyExp (e, sm)
adamc@290 218 in
adamc@290 219 ((L'.ESome (t, e), loc), sm)
adamc@290 220 end
adamc@53 221 | L.EFfi mx => ((L'.EFfi mx, loc), sm)
adamc@53 222 | L.EFfiApp (m, x, es) =>
adamc@53 223 let
adamc@53 224 val (es, sm) = ListUtil.foldlMap cifyExp sm es
adamc@53 225 in
adamc@53 226 ((L'.EFfiApp (m, x, es), loc), sm)
adamc@53 227 end
adamc@29 228 | L.EApp (e1, e2) =>
adamc@29 229 let
adamc@29 230 val (e1, sm) = cifyExp (e1, sm)
adamc@29 231 val (e2, sm) = cifyExp (e2, sm)
adamc@29 232 in
adamc@29 233 ((L'.EApp (e1, e2), loc), sm)
adamc@29 234 end
adamc@109 235 | L.EAbs _ => (ErrorMsg.errorAt loc "Anonymous function remains at code generation";
adamc@280 236 Print.prefaces' [("Function", MonoPrint.p_exp MonoEnv.empty eAll)];
adamc@109 237 (dummye, sm))
adamc@29 238
adamc@29 239 | L.ERecord xes =>
adamc@29 240 let
adamc@29 241 val old_xts = map (fn (x, _, t) => (x, t)) xes
adamc@29 242
adamc@29 243 val (xets, sm) = ListUtil.foldlMap (fn ((x, e, t), sm) =>
adamc@29 244 let
adamc@29 245 val (e, sm) = cifyExp (e, sm)
adamc@29 246 val (t, sm) = cifyTyp (t, sm)
adamc@29 247 in
adamc@29 248 ((x, e, t), sm)
adamc@29 249 end)
adamc@29 250 sm xes
adamc@29 251
adamc@29 252 val (sm, si) = Sm.find (sm, old_xts, map (fn (x, _, t) => (x, t)) xets)
adamc@29 253
adamc@29 254 val xes = map (fn (x, e, _) => (x, e)) xets
adamc@29 255 val xes = ListMergeSort.sort (fn ((x1, _), (x2, _)) => String.compare (x1, x2) = GREATER) xes
adamc@29 256 in
adamc@29 257 ((L'.ERecord (si, xes), loc), sm)
adamc@29 258 end
adamc@29 259 | L.EField (e, x) =>
adamc@29 260 let
adamc@29 261 val (e, sm) = cifyExp (e, sm)
adamc@29 262 in
adamc@29 263 ((L'.EField (e, x), loc), sm)
adamc@29 264 end
adamc@29 265
adamc@182 266 | L.ECase (e, pes, {disc, result}) =>
adamc@181 267 let
adamc@181 268 val (e, sm) = cifyExp (e, sm)
adamc@181 269 val (pes, sm) = ListUtil.foldlMap
adamc@181 270 (fn ((p, e), sm) =>
adamc@181 271 let
adamc@181 272 val (e, sm) = cifyExp (e, sm)
adamc@182 273 val (p, sm) = cifyPat (p, sm)
adamc@181 274 in
adamc@182 275 ((p, e), sm)
adamc@181 276 end) sm pes
adamc@182 277 val (disc, sm) = cifyTyp (disc, sm)
adamc@182 278 val (result, sm) = cifyTyp (result, sm)
adamc@181 279 in
adamc@182 280 ((L'.ECase (e, pes, {disc = disc, result = result}), loc), sm)
adamc@181 281 end
adamc@178 282
adamc@283 283 | L.EError (e, t) =>
adamc@283 284 let
adamc@283 285 val (e, sm) = cifyExp (e, sm)
adamc@283 286 val (t, sm) = cifyTyp (t, sm)
adamc@283 287 in
adamc@283 288 ((L'.EError (e, t), loc), sm)
adamc@283 289 end
adamc@283 290
adamc@180 291 | L.EStrcat (e1, e2) =>
adamc@180 292 let
adamc@180 293 val (e1, sm) = cifyExp (e1, sm)
adamc@180 294 val (e2, sm) = cifyExp (e2, sm)
adamc@180 295 in
adamc@180 296 ((L'.EFfiApp ("Basis", "strcat", [e1, e2]), loc), sm)
adamc@180 297 end
adamc@102 298
adamc@102 299 | L.EWrite e =>
adamc@102 300 let
adamc@102 301 val (e, sm) = cifyExp (e, sm)
adamc@102 302 in
adamc@102 303 ((L'.EWrite e, loc), sm)
adamc@102 304 end
adamc@102 305
adamc@106 306 | L.ESeq (e1, e2) =>
adamc@106 307 let
adamc@106 308 val (e1, sm) = cifyExp (e1, sm)
adamc@106 309 val (e2, sm) = cifyExp (e2, sm)
adamc@106 310 in
adamc@106 311 ((L'.ESeq (e1, e2), loc), sm)
adamc@106 312 end
adamc@106 313
adamc@269 314 | L.ELet (x, t, e1, e2) =>
adamc@269 315 let
adamc@269 316 val (t, sm) = cifyTyp (t, sm)
adamc@269 317 val (e1, sm) = cifyExp (e1, sm)
adamc@269 318 val (e2, sm) = cifyExp (e2, sm)
adamc@269 319 in
adamc@269 320 ((L'.ELet (x, t, e1, e2), loc), sm)
adamc@269 321 end
adamc@251 322
adamc@111 323 | L.EClosure _ => (ErrorMsg.errorAt loc "Nested closure remains in code generation";
adamc@111 324 (dummye, sm))
adamc@111 325
adamc@269 326 | L.EQuery {exps, tables, state, query, body, initial} =>
adamc@269 327 let
adamc@269 328 val (exps', sm) = ListUtil.foldlMap (fn ((x, t), sm) =>
adamc@269 329 let
adamc@269 330 val (t, sm) = cifyTyp (t, sm)
adamc@269 331 in
adamc@269 332 ((x, t), sm)
adamc@269 333 end) sm exps
adamc@269 334 val (tables', sm) = ListUtil.foldlMap (fn ((x, xts), sm) =>
adamc@269 335 let
adamc@269 336 val (xts, sm) = ListUtil.foldlMap
adamc@269 337 (fn ((x, t), sm) =>
adamc@269 338 let
adamc@269 339 val (t, sm) = cifyTyp (t, sm)
adamc@269 340 in
adamc@269 341 ((x, t), sm)
adamc@269 342 end) sm xts
adamc@269 343 in
adamc@269 344 ((x, xts), sm)
adamc@269 345 end) sm tables
adamc@269 346
adamc@269 347 val row = exps @ map (fn (x, xts) => (x, (L.TRecord xts, loc))) tables
adamc@269 348 val row = ListMergeSort.sort (fn ((x, _), (y, _)) => String.compare (x, y) = GREATER) row
adamc@269 349
adamc@269 350 val (tableRows, sm) = ListUtil.foldlMap (fn (((x, xts), (_, xts')), sm) =>
adamc@269 351 let
adamc@269 352 val (sm, rnum) = Sm.find (sm, xts, xts')
adamc@269 353 in
adamc@269 354 ((x, rnum), sm)
adamc@269 355 end)
adamc@269 356 sm (ListPair.zip (tables, tables'))
adamc@269 357 val row' = exps' @ map (fn (x, n) => (x, (L'.TRecord n, loc))) tableRows
adamc@269 358 val row' = ListMergeSort.sort (fn ((x, _), (y, _)) => String.compare (x, y) = GREATER) row'
adamc@269 359
adamc@269 360 val (sm, rnum) = Sm.find (sm, row, row')
adamc@269 361
adamc@269 362 val (state, sm) = cifyTyp (state, sm)
adamc@269 363 val (query, sm) = cifyExp (query, sm)
adamc@269 364 val (body, sm) = cifyExp (body, sm)
adamc@269 365 val (initial, sm) = cifyExp (initial, sm)
adamc@269 366 in
adamc@269 367 ((L'.EQuery {exps = exps', tables = tables', rnum = rnum, state = state,
adamc@282 368 query = query, body = body, initial = initial, prepared = NONE}, loc), sm)
adamc@269 369 end
adamc@269 370
adamc@252 371
adamc@29 372 fun cifyDecl ((d, loc), sm) =
adamc@29 373 case d of
adamc@165 374 L.DDatatype (x, n, xncs) =>
adamc@165 375 let
adamc@198 376 val dk = ElabUtil.classifyDatatype xncs
adamc@165 377 val (xncs, sm) = ListUtil.foldlMap (fn ((x, n, to), sm) =>
adamc@165 378 case to of
adamc@165 379 NONE => ((x, n, NONE), sm)
adamc@165 380 | SOME t =>
adamc@165 381 let
adamc@165 382 val (t, sm) = cifyTyp (t, sm)
adamc@165 383 in
adamc@165 384 ((x, n, SOME t), sm)
adamc@165 385 end) sm xncs
adamc@165 386 in
adamc@188 387 (SOME (L'.DDatatype (dk, x, n, xncs), loc), NONE, sm)
adamc@165 388 end
adamc@164 389
adamc@164 390 | L.DVal (x, n, t, e, _) =>
adamc@29 391 let
adamc@29 392 val (t, sm) = cifyTyp (t, sm)
adamc@109 393
adamc@109 394 val (d, sm) = case #1 t of
adamc@121 395 L'.TFun _ =>
adamc@121 396 let
adamc@121 397 fun unravel (tAll as (t, _), eAll as (e, _)) =
adamc@121 398 case (t, e) of
adamc@121 399 (L'.TFun (dom, ran), L.EAbs (ax, _, _, e)) =>
adamc@121 400 let
adamc@121 401 val (args, t, e) = unravel (ran, e)
adamc@121 402 in
adamc@121 403 ((ax, dom) :: args, t, e)
adamc@121 404 end
adamc@121 405 | (L'.TFun _, _) =>
adamc@121 406 (ErrorMsg.errorAt loc "Function isn't explicit at code generation";
adamc@121 407 ([], tAll, eAll))
adamc@121 408 | _ => ([], tAll, eAll)
adamc@121 409
adamc@121 410 val (args, ran, e) = unravel (t, e)
adamc@121 411 val (e, sm) = cifyExp (e, sm)
adamc@121 412 in
adamc@121 413 (L'.DFun (x, n, args, ran, e), sm)
adamc@121 414 end
adamc@121 415
adamc@109 416 | _ =>
adamc@109 417 let
adamc@109 418 val (e, sm) = cifyExp (e, sm)
adamc@109 419 in
adamc@109 420 (L'.DVal (x, n, t, e), sm)
adamc@109 421 end
adamc@29 422 in
adamc@109 423 (SOME (d, loc), NONE, sm)
adamc@29 424 end
adamc@129 425 | L.DValRec vis =>
adamc@129 426 let
adamc@129 427 val (vis, sm) = ListUtil.foldlMap
adamc@129 428 (fn ((x, n, t, e, _), sm) =>
adamc@129 429 let
adamc@129 430 val (t, sm) = cifyTyp (t, sm)
adamc@129 431
adamc@129 432 fun unravel (tAll as (t, _), eAll as (e, _)) =
adamc@129 433 case (t, e) of
adamc@129 434 (L'.TFun (dom, ran), L.EAbs (ax, _, _, e)) =>
adamc@129 435 let
adamc@129 436 val (args, t, e) = unravel (ran, e)
adamc@129 437 in
adamc@129 438 ((ax, dom) :: args, t, e)
adamc@129 439 end
adamc@129 440 | (L'.TFun _, _) =>
adamc@129 441 (ErrorMsg.errorAt loc "Function isn't explicit at code generation";
adamc@129 442 ([], tAll, eAll))
adamc@129 443 | _ => ([], tAll, eAll)
adamc@129 444
adamc@129 445 val (args, ran, e) = unravel (t, e)
adamc@129 446 val (e, sm) = cifyExp (e, sm)
adamc@129 447 in
adamc@129 448 ((x, n, args, ran, e), sm)
adamc@129 449 end)
adamc@129 450 sm vis
adamc@129 451 in
adamc@129 452 (SOME (L'.DFunRec vis, loc), NONE, sm)
adamc@129 453 end
adamc@129 454
adamc@144 455 | L.DExport (ek, s, n, ts) =>
adamc@120 456 let
adamc@120 457 val (ts, sm) = ListUtil.foldlMap cifyTyp sm ts
adamc@120 458 in
adamc@144 459 (NONE, SOME (ek, "/" ^ s, n, ts), sm)
adamc@120 460 end
adamc@29 461
adamc@273 462 | L.DTable (s, xts) =>
adamc@273 463 let
adamc@273 464 val (xts, sm) = ListUtil.foldlMap (fn ((x, t), sm) =>
adamc@273 465 let
adamc@273 466 val (t, sm) = cifyTyp (t, sm)
adamc@273 467 in
adamc@273 468 ((x, t), sm)
adamc@273 469 end) sm xts
adamc@273 470 in
adamc@273 471 (SOME (L'.DTable (s, xts), loc), NONE, sm)
adamc@273 472 end
adamc@271 473 | L.DDatabase s => (SOME (L'.DDatabase s, loc), NONE, sm)
adamc@271 474
adamc@29 475 fun cjrize ds =
adamc@29 476 let
adamc@196 477 val (dsF, ds, ps, sm) = foldl (fn (d, (dsF, ds, ps, sm)) =>
adamc@196 478 let
adamc@196 479 val (dop, pop, sm) = cifyDecl (d, sm)
adamc@196 480 val (dsF, ds) = case dop of
adamc@196 481 NONE => (dsF, ds)
adamc@196 482 | SOME (d as (L'.DDatatype (dk, x, n, _), loc)) =>
adamc@196 483 ((L'.DDatatypeForward (dk, x, n), loc) :: dsF,
adamc@196 484 d :: ds)
adamc@196 485 | SOME d => (dsF, d :: ds)
adamc@196 486 val ps = case pop of
adamc@196 487 NONE => ps
adamc@196 488 | SOME p => p :: ps
adamc@196 489 in
adamc@196 490 (dsF, ds, ps, sm)
adamc@196 491 end)
adamc@196 492 ([], [], [], Sm.empty) ds
adamc@29 493 in
adamc@196 494 (List.revAppend (dsF,
adamc@196 495 List.revAppend (map (fn v => (L'.DStruct v, ErrorMsg.dummySpan)) (Sm.declares sm),
adamc@196 496 rev ds)),
adamc@101 497 ps)
adamc@29 498 end
adamc@29 499
adamc@29 500 end