summaryrefslogtreecommitdiffstats
path: root/match.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-01-22 23:39:45 -0800
committerKaz Kylheku <kaz@kylheku.com>2014-01-22 23:39:45 -0800
commit9fa70b67bad4f95c22fa0e7a1148b88c82f375e1 (patch)
treefaeb229bbdf434c599a7ddaf2e09e8a48d32475a /match.c
parent8ced687d65438141be8a1305fa4058a76fa3cc59 (diff)
downloadtxr-9fa70b67bad4f95c22fa0e7a1148b88c82f375e1.tar.gz
txr-9fa70b67bad4f95c22fa0e7a1148b88c82f375e1.tar.bz2
txr-9fa70b67bad4f95c22fa0e7a1148b88c82f375e1.zip
Changes to the list collection mechanism to improve
the extension of list operations over vectors and strings. * eval.c (do_eval_args, bindings_helper, op_each, subst_vars, supplement_op_syms, mapcarv, mappendv): Switch from list_collect_* macros to functions. * lib.c (copy_list): Switch from list_collect* macros to functions. Use list_collect_nconc for the final terminator. Doing a copy there with list_collect_append was actually wasteful, and now that list_collect_append calls copy_list in places, it triggered runaway recursion. (make_like): Bugfix: list_vector was used instead of vector_list. (to_seq, list_collect, list_collect_nconc, list_collect_append): New functions. (append2, appendv, nappend2, sub_list, replace_list, ldiff, remq, remql, remqual, remove_if, keep_if, proper_plist_to_alist, improper_plist_to_alist, split_str, split_str_set, tok_str, list_str, chain, andf, orf, lis_vector, mapcar, mapcon, mappend, merge, set_diff, env): Switch from list_collect* macros to functions. (replace_str, replace_vec): Allow single item replacement sequence. * lib.h (to_seq): Declared. (list_collect, list_collect_nconc, list_collect_append): Macros removed, replaced by function declarations of the same name. These functions return the new ptail since they cannot assign to it, requiring all uses to be updated to do the assignment of the returned value. (list_collect_decl): Use val rather than obj_t *. * match.c (vars_to_bindings, h_coll, subst_vars, extract_vars, extract_bindings, do_output_line, do_output, v_gather, v_collect): Switch from list_collect* macros to functions. * parser.y (o_elems_transform): Likewise. * regex.c (dv_compile_regex, regsub): Likewise. * txr.c (txr_main): Likewise.
Diffstat (limited to 'match.c')
-rw-r--r--match.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/match.c b/match.c
index 853926c2..143c4f12 100644
--- a/match.c
+++ b/match.c
@@ -327,10 +327,10 @@ static val vars_to_bindings(val spec, val vars, val bindings)
for (iter = vars; iter; iter = cdr(iter)) {
val item = car(iter);
if (bindable(item)) {
- list_collect (ptail, cons(item, noval_s));
+ ptail = list_collect(ptail, cons(item, noval_s));
} else if (consp(item) && bindable(first(item))) {
- list_collect (ptail, cons(first(item),
- txeval(spec, second(item), bindings)));
+ ptail = list_collect(ptail, cons(first(item),
+ txeval(spec, second(item), bindings)));
} else {
sem_error(spec, lit("not a variable spec: ~a"), item, nao);
}
@@ -795,7 +795,7 @@ static val h_coll(match_line_ctx *c)
if (!exists) {
if (dfl == noval_s)
- list_collect (ptail, var);
+ ptail = list_collect(ptail, var);
else
strictly_new_bindings = acons(var, dfl, strictly_new_bindings);
}
@@ -1381,7 +1381,7 @@ static val subst_vars(val spec, val bindings, val filter)
continue;
} else if (sym == quasi_s) {
val nested = subst_vars(rest(elem), bindings, filter);
- list_collect_append(iter, nested);
+ iter = list_collect_append(iter, nested);
spec = cdr(spec);
continue;
} else if (sym == expr_s) {
@@ -1390,13 +1390,13 @@ static val subst_vars(val spec, val bindings, val filter)
continue;
} else {
val nested = subst_vars(elem, bindings, filter);
- list_collect_append(iter, nested);
+ iter = list_collect_append(iter, nested);
spec = cdr(spec);
continue;
}
}
- list_collect(iter, elem);
+ iter = list_collect(iter, elem);
spec = cdr(spec);
}
@@ -1582,12 +1582,12 @@ static val extract_vars(val output_spec)
val sym = first(output_spec);
if (sym == var_s) {
if (bindable(second(output_spec)))
- list_collect (tai, second(output_spec));
+ tai = list_collect(tai, second(output_spec));
else
- list_collect_nconc (tai, extract_vars(second(output_spec)));
+ tai = list_collect_nconc(tai, extract_vars(second(output_spec)));
} else if (sym != expr_s) {
for (; output_spec; output_spec = cdr(output_spec))
- list_collect_nconc(tai, extract_vars(car(output_spec)));
+ tai = list_collect_nconc(tai, extract_vars(car(output_spec)));
}
}
@@ -1605,7 +1605,7 @@ static val extract_bindings(val bindings, val output_spec, val vars)
if (assoc(sym, bindings_out))
continue;
if (memq(sym, var_list))
- list_collect(ptail, binding);
+ ptail = list_collect(ptail, binding);
}
return bindings_out;
@@ -1689,7 +1689,7 @@ static void do_output_line(val bindings, val specline, val filter, val out)
val m = txeval(args, second(args), bind_a);
if (eql(mod(num_fast(i), m), n))
- list_collect_append (ptail, rest(clause));
+ ptail = list_collect_append(ptail, rest(clause));
}
if (active_mods)
@@ -1712,7 +1712,7 @@ static void do_output_line(val bindings, val specline, val filter, val out)
val m = txeval(args, second(args), bind_a);
if (eql(mod(num_fast(i), m), n))
- list_collect_append (ptail, rest(clause));
+ ptail = list_collect_append(ptail, rest(clause));
}
if (active_mods)
@@ -1812,7 +1812,7 @@ static void do_output(val bindings, val specs, val filter, val out)
val m = txeval(args, second(args), bind_a);
if (eql(mod(num_fast(i), m), n))
- list_collect_append (ptail, rest(clause));
+ ptail = list_collect_append(ptail, rest(clause));
}
if (active_mods)
@@ -1835,7 +1835,7 @@ static void do_output(val bindings, val specs, val filter, val out)
val m = txeval(args, second(args), bind_a);
if (eql(mod(num_fast(i), m), n))
- list_collect_append (ptail, rest(clause));
+ ptail = list_collect_append(ptail, rest(clause));
}
if (active_mods)
@@ -2554,7 +2554,7 @@ static val v_gather(match_files_ctx *c)
if (!success) {
*cdr_l(iter) = nil;
- list_collect_nconc(ptail, iter);
+ ptail = list_collect_nconc(ptail, iter);
} else if (success == t) {
c->bindings = new_bindings;
max_data = t;
@@ -2744,7 +2744,7 @@ static val v_collect(match_files_ctx *c)
if (!exists) {
if (dfl == noval_s)
- list_collect (ptail, var);
+ ptail = list_collect(ptail, var);
else
strictly_new_bindings = acons(var, dfl, strictly_new_bindings);
}