[llvm] [AMDGPU] Ensure divergence for v_alignbit (PR #129159)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 20:45:06 PST 2025
================
@@ -2500,11 +2500,11 @@ def : AMDGPUPat <
def : ROTRPattern <V_ALIGNBIT_B32_e64>;
-def : GCNPat<(i32 (trunc (srl i64:$src0, (and i32:$src1, (i32 31))))),
+def : GCNPat<(i32 (DivergentUnaryFrag<trunc> (srl i64:$src0, (and i32:$src1, (i32 31))))),
(V_ALIGNBIT_B32_e64 (i32 (EXTRACT_SUBREG (i64 $src0), sub1)),
----------------
arsenm wrote:
Why do we handle these as patterns? Can we do this as a combine to produce fshr?
https://github.com/llvm/llvm-project/pull/129159
More information about the llvm-commits
mailing list