[llvm] [AMDGPU] (x or y) xor -1 -> x nor y (PR #130264)
Ana Mihajlovic via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 07:50:00 PDT 2025
================
@@ -0,0 +1,115 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 3
+; RUN: llc -mtriple=amdgcn-amd-amdpal -mcpu=gfx1200 -mattr="+wavefrontsize32,-wavefrontsize64" -o - < %s | FileCheck -check-prefix=GFX12W32 %s
+; RUN: llc -mtriple=amdgcn-amd-amdpal -mcpu=gfx1100 -mattr="+wavefrontsize32,-wavefrontsize64" -o - < %s | FileCheck -check-prefixes=GFX11W32 %s
+
+define amdgpu_ps i32 @test_w32(i32 %x, i32 %y) {
+; GFX12W32-LABEL: test_w32:
+; GFX12W32: ; %bb.0:
+; GFX12W32-NEXT: v_readfirstlane_b32 s0, v0
+; GFX12W32-NEXT: v_readfirstlane_b32 s1, v1
+; GFX12W32-NEXT: s_delay_alu instid0(VALU_DEP_1) | instskip(NEXT) | instid1(SALU_CYCLE_1)
+; GFX12W32-NEXT: s_nor_b32 s0, s0, s1
+; GFX12W32-NEXT: v_cndmask_b32_e64 v0, 0, 1, s0
+; GFX12W32-NEXT: s_delay_alu instid0(VALU_DEP_1)
+; GFX12W32-NEXT: v_cmp_ne_u32_e64 s0, 0, v0
+; GFX12W32-NEXT: s_wait_alu 0xf1ff
+; GFX12W32-NEXT: ; return to shader part epilog
+;
+; GFX11W32-LABEL: test_w32:
+; GFX11W32: ; %bb.0:
+; GFX11W32-NEXT: v_readfirstlane_b32 s0, v0
+; GFX11W32-NEXT: v_readfirstlane_b32 s1, v1
+; GFX11W32-NEXT: s_delay_alu instid0(VALU_DEP_1) | instskip(NEXT) | instid1(SALU_CYCLE_1)
+; GFX11W32-NEXT: s_nor_b32 s0, s0, s1
+; GFX11W32-NEXT: v_cndmask_b32_e64 v0, 0, 1, s0
+; GFX11W32-NEXT: s_delay_alu instid0(VALU_DEP_1)
+; GFX11W32-NEXT: v_cmp_ne_u32_e64 s0, 0, v0
+; GFX11W32-NEXT: ; return to shader part epilog
+ %x.b = call i1 @llvm.amdgcn.inverse.ballot.i32(i32 %x)
+ %y.b = call i1 @llvm.amdgcn.inverse.ballot.i32(i32 %y)
+ %t = or i1 %x.b, %y.b
+ %t.1 = xor i1 %t, -1
+ %z = call i32 @llvm.amdgcn.ballot.i32(i1 %t.1)
+ ret i32 %z
+}
+
+define amdgpu_ps i32 @negative_test_w32(i32 %x, i32 %y) {
----------------
mihajlovicana wrote:
((x or y) xor -1 -> x nor y) not needed in this case
https://github.com/llvm/llvm-project/pull/130264
More information about the llvm-commits
mailing list