summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-03-17 06:54:19 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-03-17 06:54:19 -0700
commitcd323346c90a9d61f7190845288678404c714e36 (patch)
tree88e18d68bd3d39e8d748fecc3c8d8e29bb1b28c2
parent185fde63e31ba9d9c335b963a37e55bcfacaead9 (diff)
downloadtxr-cd323346c90a9d61f7190845288678404c714e36.tar.gz
txr-cd323346c90a9d61f7190845288678404c714e36.tar.bz2
txr-cd323346c90a9d61f7190845288678404c714e36.zip
compiler: improve end-propagating optimization.
When a jmp instruction is replaced by the end instruction that it jumps to, or possibly by a two-instruction sequence ending in end, there can be more opportunities to optimize. For instance, the second reduction in a sequence like this: mov t3, t5 mov t3, t5 jmp label --> end t3 --> end t5 ... label: end t3 * share/txr/stdlib/optimize.tl (basic-blocks peephole-block): If the end-propagation is done, we change the linkage of the current block to indicate that it has no next blocks. We add it to the rescan list and set the recalc flag so the liveness information is updated.
-rw-r--r--share/txr/stdlib/optimize.tl20
1 files changed, 13 insertions, 7 deletions
diff --git a/share/txr/stdlib/optimize.tl b/share/txr/stdlib/optimize.tl
index cf8a42b0..31702cb4 100644
--- a/share/txr/stdlib/optimize.tl
+++ b/share/txr/stdlib/optimize.tl
@@ -425,13 +425,19 @@
(not (memqual reg bb.lt-dregs)))
^((jmp ,jlabel)))
(((jmp @jlabel) . @rest)
- (let ((jinsns (cdr [bb.hash jlabel].insns)))
- (match-case jinsns
- (((jend @nil) . @nil)
- ^(,(car jinsns) ,*rest))
- ((@nil (jend @nil) . @nil)
- ^(,(car jinsns) ,(cadr jinsns) ,*rest))
- (@else insns))))
+ (let* ((jinsns (cdr [bb.hash jlabel].insns))
+ (oinsns (match-case jinsns
+ (((jend @nil) . @nil)
+ ^(,(car jinsns) ,*rest))
+ ((@nil (jend @nil) . @nil)
+ ^(,(car jinsns) ,(cadr jinsns) ,*rest))
+ (@else insns))))
+ (when (neq insns oinsns)
+ (pushnew bl bb.rescan)
+ (set bb.recalc t
+ bl.next nil
+ bl.links nil))
+ oinsns))
(@else insns))))
(defmeth basic-blocks peephole (bb)