[llvm] [WebAssembly] Fold extended vector shifts by constant to extmul (PR #184007)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 6 23:08:58 PST 2026
================
@@ -195,3 +195,47 @@ define <8 x i32> @zext_sext_mul_v8i16(<8 x i16> %a, <8 x i16> %b) {
%mul = mul <8 x i32> %wide.a, %wide.b
ret <8 x i32> %mul
}
+
+define <4 x i32> @sext_mul_v8i16_with_symmetric_constant_vector(<8 x i16> %v) {
----------------
ParkHanbum wrote:
Thanks for the clear guidance. I was too fixated on just converting the SHL to a generic MUL and relying on the pipeline, which caused me to miss the more direct target-specific lowering.
https://github.com/llvm/llvm-project/pull/184007
More information about the llvm-commits
mailing list