summaryrefslogtreecommitdiffstats
path: root/linenoise
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-02-28 09:49:28 -0800
committerKaz Kylheku <kaz@kylheku.com>2021-02-28 09:49:28 -0800
commitbbb60b690e5a7dc696a766d500a8c36e62c53eb8 (patch)
tree9cc83c4b40b90fb4a293e6d0226531a4aa5e2325 /linenoise
parent920782cb237657e912ac154dbc5117b6ac8e1229 (diff)
downloadtxr-bbb60b690e5a7dc696a766d500a8c36e62c53eb8.tar.gz
txr-bbb60b690e5a7dc696a766d500a8c36e62c53eb8.tar.bz2
txr-bbb60b690e5a7dc696a766d500a8c36e62c53eb8.zip
compiler: avoid invalid if d-reg optimization.
We cannot assume that a d register is has a non-nil value. This is because d registers are exploited in the implementation of load-time: the result of a load-time form is stored by mutating a d register, and the value could be nil. Since we still want to be able to assume that d registers are non-nil, what we can do is just avoid that assumption for those d regisers that are used for load-time values. * share/txr/stdlib/compiler.tl (struct compiler): When constructing basic-blocks, pass a new constructor argument: the list of load-time d-regs. This is easily obtained by mapping the load-time frags to their oreg slots, which are those d-regs. * share/txr/stdlib/optimize.tl (struct basic-blocks): New slot and BOA constructor argument, lt-dregs. (basic-blocks thread-jumps-block): Add a require to the pattern (if (d @reg) @jlabel), that the register must not be one of the load-time d-regs.
Diffstat (limited to 'linenoise')
0 files changed, 0 insertions, 0 deletions