diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-11-09 07:14:59 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-11-09 07:14:59 -0800 |
commit | fd2c685968667bc10c37164dd8b765779b4c208a (patch) | |
tree | 5260182939a4c7b9d1ab715765431d9fbd7bee3f /stdlib/path-test.tl | |
parent | f76fe935c227edcf73297c4292cedbb5b560e369 (diff) | |
download | txr-fd2c685968667bc10c37164dd8b765779b4c208a.tar.gz txr-fd2c685968667bc10c37164dd8b765779b4c208a.tar.bz2 txr-fd2c685968667bc10c37164dd8b765779b4c208a.zip |
compiler: avoid eval of unsafe constantp in some situations.
In situations when the compiler evaluates a constant expression in order
to make some code generating decision, we don't just want to be using
safe-const-eval. While that prevents the compiler from blowing up, and
issues a diagnostic, it causes incorrect code to be generated: code
which does not incorporate the unsafe expression. Concrete example:
(if (sqrt -1) (foo) (bar))
if we simply evaluate (sqrt -1) with safe-const-eval, we get a
diagnostic, and the value nil comes out. The compiler will thus
constant-fold this to (bar). Though the diagnostic was emitted,
executing the compiled code does not produce the exception from
(sqrt -1) any more, but just calls bar.
In certain cases where the compiler relies on the evaluation of a
constant expression, we should bypass those cases when the expression is
unsafe.
In cases where the expression will be integrated into the output
code, we can test with constantp. The same is true in some other
mitigating circumstances. For instance if we test with constantp,
and then require safe-const-eval to produce an integer, we are
okay, because a throwing evaluation will not produce an integer.
* stdlib/compiler.tl (safe-constantp): New function.
(compiler (comp-if, comp-ift, lambda-apply-transform)): Use
safe-constantp rather than constantp for determining whether
an expression is suitable for compile-time evaluation.
Diffstat (limited to 'stdlib/path-test.tl')
0 files changed, 0 insertions, 0 deletions