diff options
author | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 18:28:43 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2008-06-10 18:28:43 -0400 |
commit | c1c6013533ba8eaa3b41924bcd61d99a4da27955 (patch) | |
tree | 21e70479e0bc1cf28935d2d80700c1c3063ddc36 /src/cjr_print.sml | |
parent | ecf88cd1a7c5d137a732c4c8eb4d34c5e845ccaf (diff) |
Translation to Cjr
Diffstat (limited to 'src/cjr_print.sml')
-rw-r--r-- | src/cjr_print.sml | 197 |
1 files changed, 197 insertions, 0 deletions
diff --git a/src/cjr_print.sml b/src/cjr_print.sml new file mode 100644 index 00000000..c7263e3b --- /dev/null +++ b/src/cjr_print.sml @@ -0,0 +1,197 @@ +(* Copyright (c) 2008, Adam Chlipala + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * - Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * - Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * - The names of contributors may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + *) + +(* Pretty-printing C jr. *) + +structure CjrPrint :> CJR_PRINT = struct + +open Print.PD +open Print + +open Cjr + +structure E = CjrEnv +structure EM = ErrorMsg + +val debug = ref false + +val dummyTyp = (TNamed 0, ErrorMsg.dummySpan) + +fun p_typ' par env (t, loc) = + case t of + TTop => + (EM.errorAt loc "Undetermined type"; + string "?") + | TFun => + (EM.errorAt loc "Undetermined function type"; + string "?->") + | TCode (t1, t2) => parenIf par (box [p_typ' true env t2, + space, + string "(*)", + space, + string "(", + p_typ env t1, + string ")"]) + | TRecord i => box [string "struct", + space, + string "__lws_", + string (Int.toString i)] + | TNamed n => + (string ("__lwt_" ^ #1 (E.lookupTNamed env n) ^ "_" ^ Int.toString n) + handle CjrEnv.UnboundNamed _ => string ("__lwt_UNBOUND__" ^ Int.toString n)) + +and p_typ env = p_typ' false env + +fun p_rel env n = string ("__lwr_" ^ #1 (E.lookupERel env n) ^ "_" ^ Int.toString (E.countERels env - n - 1)) + handle CjrEnv.UnboundRel _ => string ("__lwr_UNBOUND_" ^ Int.toString (E.countERels env - n - 1)) + +fun p_exp' par env (e, _) = + case e of + EPrim p => Prim.p_t p + | ERel n => p_rel env n + | ENamed n => + (string ("__lwn_" ^ #1 (E.lookupENamed env n) ^ "_" ^ Int.toString n) + handle CjrEnv.UnboundNamed _ => string ("__lwn_UNBOUND_" ^ Int.toString n)) + | ECode n => string ("__lwc_" ^ Int.toString n) + | EApp (e1, e2) => parenIf par (box [p_exp' true env e1, + string "(", + p_exp env e2, + string ")"]) + + | ERecord (i, xes) => box [string "({", + space, + string "struct", + space, + string ("__lws_" ^ Int.toString i), + space, + string "__lw_tmp", + space, + string "=", + space, + string "{", + p_list (fn (_, e) => + p_exp env e) xes, + string "};", + space, + string "__lw_tmp;", + space, + string "})" ] + | EField (e, x) => + box [p_exp' true env e, + string ".", + string x] + + | ELet (xes, e) => + let + val (env, pps) = foldl (fn ((x, t, e), (env, pps)) => + let + val env' = E.pushERel env x t + in + (env', + List.revAppend ([p_typ env t, + space, + p_rel env' 0, + space, + string "=", + space, + p_exp env e, + string ";", + newline], + pps)) + end) + (env, []) xes + in + box [string "({", + newline, + box (rev pps), + p_exp env e, + space, + string ";", + newline, + string "})"] + end + +and p_exp env = p_exp' false env + +fun p_decl env ((d, _) : decl) = + case d of + DStruct (n, xts) => + box [string "struct", + space, + string ("__lws_" ^ Int.toString n), + space, + string "{", + newline, + p_list_sep (box []) (fn (x, t) => box [p_typ env t, + space, + string x, + string ";", + newline]) xts, + string "};"] + + | DVal (x, n, t, e) => + box [p_typ env t, + space, + string ("__lwn_" ^ x ^ "_" ^ Int.toString n), + space, + string "=", + space, + p_exp env e, + string ";"] + | DFun (n, x, dom, ran, e) => + let + val env' = E.pushERel env x dom + in + box [p_typ env ran, + space, + string ("__lwc_" ^ Int.toString n), + string "(", + p_typ env dom, + space, + p_rel env' 0, + string ")", + space, + string "{", + newline, + box[string "return(", + p_exp env' e, + string ")"], + newline, + string "}"] + end + +fun p_file env file = + let + val (_, pds) = ListUtil.mapfoldl (fn (d, env) => + (E.declBinds env d, + p_decl env d)) + env file + in + p_list_sep newline (fn x => x) pds + end + +end |