Withdrawn: 8342676: Unsigned Vector Min / Max transforms

duke duke at openjdk.org
Tue Feb 11 13:28:18 UTC 2025


On Mon, 21 Oct 2024 11:01:04 GMT, Jatin Bhateja <jbhateja at openjdk.org> wrote:

> 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

This pull request has been closed without being integrated.

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

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


More information about the hotspot-compiler-dev mailing list