aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cjr_print.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2008-09-11 13:06:51 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2008-09-11 13:06:51 -0400
commit05fbd01cabc967d7216d8cbe701ac10ad797b122 (patch)
tree73966b5bbe40adcbb3abbf589652ef3b8afc0440 /src/cjr_print.sml
parentfe9025e471578cbdef8ee21e0f9dc51f0f2107ce (diff)
More opportunities to use regions and lack of string copying
Diffstat (limited to 'src/cjr_print.sml')
-rw-r--r--src/cjr_print.sml48
1 files changed, 44 insertions, 4 deletions
diff --git a/src/cjr_print.sml b/src/cjr_print.sml
index 8bdb1ba5..bdf2873f 100644
--- a/src/cjr_print.sml
+++ b/src/cjr_print.sml
@@ -393,11 +393,15 @@ fun patConInfo env pc =
"uw_" ^ ident m ^ "_" ^ ident con,
"uw_" ^ ident con)
-fun p_unsql env (tAll as (t, loc)) e =
+fun p_unsql wontLeakStrings env (tAll as (t, loc)) e =
case t of
TFfi ("Basis", "int") => box [string "uw_Basis_stringToInt_error(ctx, ", e, string ")"]
| TFfi ("Basis", "float") => box [string "uw_Basis_stringToFloat_error(ctx, ", e, string ")"]
- | TFfi ("Basis", "string") => box [string "uw_Basis_strdup(ctx, ", e, string ")"]
+ | TFfi ("Basis", "string") =>
+ if wontLeakStrings then
+ e
+ else
+ box [string "uw_Basis_strdup(ctx, ", e, string ")"]
| TFfi ("Basis", "bool") => box [string "uw_Basis_stringToBool_error(ctx, ", e, string ")"]
| _ => (ErrorMsg.errorAt loc "Don't know how to unmarshal type from SQL";
Print.eprefaces' [("Type", p_typ env tAll)];
@@ -443,6 +447,29 @@ fun p_ensql_len t e =
| String => box [string "strlen(", e, string ")"]
| Bool => string "sizeof(uw_Basis_bool)"
+fun notLeaky env allowHeapAllocated =
+ let
+ fun nl (t, _) =
+ case t of
+ TFun _ => false
+ | TRecord n =>
+ let
+ val xts = E.lookupStruct env n
+ in
+ List.all (fn (_, t) => nl t) xts
+ end
+ | TDatatype (dk, _, ref cons) =>
+ (allowHeapAllocated orelse dk = Enum)
+ andalso List.all (fn (_, _, to) => case to of
+ NONE => true
+ | SOME t => nl t) cons
+ | TFfi ("Basis", "string") => false
+ | TFfi _ => true
+ | TOption t => allowHeapAllocated andalso nl t
+ in
+ nl
+ end
+
fun p_exp' par env (e, loc) =
case e of
EPrim p => Prim.p_t_GCC p
@@ -711,8 +738,16 @@ fun p_exp' par env (e, loc) =
tables
val outputs = exps @ tables
+
+ val wontLeakStrings = notLeaky env true state
+ val wontLeakAnything = notLeaky env false state
in
- box [string "(uw_begin_region(ctx), ({",
+ box [string "(uw_begin_region(ctx), ",
+ if wontLeakAnything then
+ string "uw_begin_regio(ctx), "
+ else
+ box [],
+ string "({",
newline,
string "PGconn *conn = uw_get_db(ctx);",
newline,
@@ -826,7 +861,7 @@ fun p_exp' par env (e, loc) =
space,
string "=",
space,
- p_unsql env t
+ p_unsql wontLeakStrings env t
(box [string "PQgetvalue(res, i, ",
string (Int.toString i),
string ")"]),
@@ -851,6 +886,11 @@ fun p_exp' par env (e, loc) =
newline,
string "PQclear(res);",
newline,
+ if wontLeakAnything then
+ box [string "uw_end_region(ctx);",
+ newline]
+ else
+ box [],
string "acc;",
newline,
string "}))"]