diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-03-08 19:44:49 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-03-08 19:49:53 -0800 |
commit | f33ace67e4e0760a423b460bb76ad2b99f49b2cd (patch) | |
tree | 62736f643c46b85f0c75af1edab14e90145aab00 /lisplib.c | |
parent | 56bd0fdab77702e92e4441b4f3c3851f239b43e9 (diff) | |
download | txr-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.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 }; |