[llvm] [AArch64][ISel] Add lowering for i8 clmul intrinsics (PR #177323)
Matthew Devereau via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 22 06:44:14 PST 2026
================
@@ -1323,6 +1323,11 @@ def fminnum_nnan : PatFrag<(ops node:$Rn, node:$Rm),
return N->getFlags().hasNoNaNs();
}]>;
+def pmul_or_clmul : PatFrags<(ops node:$Rn, node:$Rm),
+ [(int_aarch64_neon_pmul node:$Rn, node:$Rm),
----------------
MDevereau wrote:
Is it better to do this at a higher level in `AArch64TTIImpl::instCombineIntrinsic`?
https://github.com/llvm/llvm-project/pull/177323
More information about the llvm-commits
mailing list