RFR: 8283094: Add Ideal transformation: x + (con - y) -> (x - y) + con [v4]

Zhiqiang Zang duke at openjdk.java.net
Wed Mar 23 16:41:09 UTC 2022


> Hello,
> 
> `x + (con - y)  -> (x - y) + con` is a widely seen pattern; however it is missing in current implementation, which prevents some obvious constant folding from happening, such as `x + (1 - y) + 2` will be not optimized at all, rather than into `x - y + 3`.
> 
> This pull request adds this transformation.

Zhiqiang Zang has updated the pull request incrementally with one additional commit since the last revision:

  rename test cases.

-------------

Changes:
  - all: https://git.openjdk.java.net/jdk/pull/7795/files
  - new: https://git.openjdk.java.net/jdk/pull/7795/files/83c2ce8c..639913f3

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jdk&pr=7795&range=03
 - incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=7795&range=02-03

  Stats: 21 lines in 2 files changed: 0 ins; 1 del; 20 mod
  Patch: https://git.openjdk.java.net/jdk/pull/7795.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/7795/head:pull/7795

PR: https://git.openjdk.java.net/jdk/pull/7795


More information about the hotspot-compiler-dev mailing list