summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-03-08 19:44:49 -0800
committerKaz Kylheku <kaz@kylheku.com>2021-03-08 19:49:53 -0800
commitf33ace67e4e0760a423b460bb76ad2b99f49b2cd (patch)
tree62736f643c46b85f0c75af1edab14e90145aab00 /lisplib.c
parent56bd0fdab77702e92e4441b4f3c3851f239b43e9 (diff)
downloadtxr-f33ace67e4e0760a423b460bb76ad2b99f49b2cd.tar.gz
txr-f33ace67e4e0760a423b460bb76ad2b99f49b2cd.tar.bz2
txr-f33ace67e4e0760a423b460bb76ad2b99f49b2cd.zip
compiler: optimization control.
* lisplib.c (compiler_set_entries): Register *opt-level* symbol for auto-loading. * share/txr/stdlib/compiler.tl (*opt-level*): New special variable. (compiler comp-let): Eliminate frames only at level 3. (compiler comp-lambda-impl): Lift load time at level 3. (compiler comp-arith-form): Constant-folding only at lvl 1. (compiler comp-fun-form): Algebraic substitutions and reductions and constant-folding only at level 1. (compiler comp-apply-call): Constant folding at level 1. (compiler optimize): Optimizations off if level zero. Thread jumps and eliminate dead code at level 2. Flow-analysis based optimizations at level 3. Additional optimizations at level 4. (compile comp-block): Block elimination at level 3. (compile-toplevel): Rebind *opt-level*, giving it value zero if it is previously nil. * share/txr/stdlib/optimize.tl (basic-blocks get-insns): Just retrieve the instructions, letting caller decide whether to call late-peephole or not. * txr.1: Documented *opt-level*.
Diffstat (limited to 'lisplib.c')
-rw-r--r--lisplib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisplib.c b/lisplib.c
index 79c7087b..a425d95b 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -724,6 +724,7 @@ static val compiler_set_entries(val dlt, val fun)
lit("compile-toplevel"), lit("compile"), lit("compile-file"),
lit("compile-update-file"),
lit("with-compilation-unit"), lit("dump-compiled-objects"),
+ lit("*opt-level*"),
nil
};