]> git.eshelyaron.com Git - emacs.git/commit
LAP peephole optimisation improvements
authorMattias Engdegård <mattiase@acm.org>
Wed, 18 Jan 2023 17:36:29 +0000 (18:36 +0100)
committerMattias Engdegård <mattiase@acm.org>
Thu, 2 Feb 2023 13:46:53 +0000 (14:46 +0100)
commitbfd338aad9d1e6bf898fc19d23e1a5ca4e696316
tree47d30f360c777d747574e48b888ec417a912576a
parentf6955482c2933706229044c04d88b807b63a7095
LAP peephole optimisation improvements

- Since discardN-preserve-tos(1) and stack-set(1) have the same
  effect, treat them as equivalent in all transformations.

- Move the rule

        discardN-preserve-tos(X) discardN-preserve-tos(Y)
    --> discardN-preserve-tos(X+Y)

  from the final pass to the main iteration since it may enable
  further optimisations.

- Don't apply the rule

    goto(X) ... X: DISCARD --> DISCARD goto(Y) ... X: DISCARD Y:

  when DISCARD could be merged or deleted instead, which is even better.

- Add the rule

    OP const return -> <deleted> const return

  where OP is effect-free.

- Generalise the push-pop annihilation rule to

    PUSH(K) discard(N) -> discard(N-K), N>K
    PUSH(K) discard(N) -> <deleted>,    N=K

  to any N, not just N=1.

- Add the rule

    OP goto(X) Y: OP X: -> <deleted> Y: OP X:

  for any operation OP.

* lisp/emacs-lisp/byte-opt.el (byte-optimize-lapcode):
Make the changes described above.
lisp/emacs-lisp/byte-opt.el