RFR: 8342676: Unsigned Vector Min / Max transforms [v6]

Jatin Bhateja jbhateja at openjdk.org
Mon Apr 14 13:50:17 UTC 2025


> Adding following IR transforms for unsigned vector Min / Max nodes.
> 
> => UMinV (UMinV(a, b), UMaxV(a, b)) => UMinV(a, b)
> => UMinV (UMinV(a, b), UMaxV(b, a)) => UMinV(a, b)
> => UMaxV (UMinV(a, b), UMaxV(a, b)) => UMaxV(a, b)
> => UMaxV (UMinV(a, b), UMaxV(b, a)) => UMaxV(a, b)
> => UMaxV (a, a) => a
> => UMinV (a, a) => a
> 
> New IR validation test accompanies the patch.
> 
> This is a follow-up PR for https://github.com/openjdk/jdk/pull/20507
> 
> Best Regards,
> Jatin

Jatin Bhateja has updated the pull request incrementally with one additional commit since the last revision:

  Comment refinement

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

Changes:
  - all: https://git.openjdk.org/jdk/pull/21604/files
  - new: https://git.openjdk.org/jdk/pull/21604/files/eabebc74..6a2cb635

Webrevs:
 - full: https://webrevs.openjdk.org/?repo=jdk&pr=21604&range=05
 - incr: https://webrevs.openjdk.org/?repo=jdk&pr=21604&range=04-05

  Stats: 2 lines in 1 file changed: 0 ins; 0 del; 2 mod
  Patch: https://git.openjdk.org/jdk/pull/21604.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/21604/head:pull/21604

PR: https://git.openjdk.org/jdk/pull/21604


More information about the hotspot-compiler-dev mailing list