[llvm] [AMDGPU] Add ISel patterns for `v_lshl_add_u64` (PR #124763)
Alan Li via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 28 11:03:17 PST 2025
================
@@ -737,6 +737,24 @@ def : ThreeOp_i32_Pats<and, or, V_AND_OR_B32_e64>;
def : ThreeOp_i32_Pats<or, or, V_OR3_B32_e64>;
def : ThreeOp_i32_Pats<xor, add, V_XAD_U32_e64>;
+let SubtargetPredicate = isGFX940Plus in {
+// TODO: Canonicalize these in the target specific CombinerHelper?
+def : GCNPat<
+ (ptradd (shl i64:$src0, i32:$shift), i64:$src1),
+ (V_LSHL_ADD_U64_e64 VSrc_b64:$src0, VSrc_b32:$shift, VSrc_b64:$src1)
+>;
+
+def : GCNPat<
+ (ptradd i64:$src0, (shl i64:$src1, i32:$shift)),
+ (V_LSHL_ADD_U64_e64 VSrc_b64:$src1, VSrc_b32:$shift, VSrc_b64:$src0)
+>;
+
+def : GCNPat<
+ (ptradd i64:$src0, i64:$src1),
----------------
lialan wrote:
So I removed this pattern for now.
https://github.com/llvm/llvm-project/pull/124763
More information about the llvm-commits
mailing list