Integrated: 8342676: Unsigned Vector Min / Max transforms
Jatin Bhateja
jbhateja at openjdk.org
Sat Apr 26 03:33:56 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 now been integrated.
Changeset: 3b3a055d
Author: Jatin Bhateja <jbhateja at openjdk.org>
URL: https://git.openjdk.org/jdk/commit/3b3a055d7605338e93814ccfe2a4a18a7786f43f
Stats: 633 lines in 5 files changed: 633 ins; 0 del; 0 mod
8342676: Unsigned Vector Min / Max transforms
Reviewed-by: sviswanathan, epeter
-------------
PR: https://git.openjdk.org/jdk/pull/21604
More information about the hotspot-compiler-dev
mailing list