[llvm] [ARM]Adjust cost of muls in SMLAL patterns (PR #122713)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 10:26:49 PDT 2025
================
@@ -1458,16 +1458,76 @@ InstructionCost ARMTTIImpl::getArithmeticInstrCost(
if (LooksLikeAFreeShift())
return 0;
+ // When targets have both DSP and MVE we find that the
+ // the compiler will attempt to vectorize as well as using
+ // scalar (S/U)MLAL operations. This is in cases where we have
+ // the pattern ext(mul(ext(i16), ext(i16))) we find
+ // that generated codegen performs better when only using (S/U)MLAL scalar
+ // ops instead of trying to mix vector ops with (S/U)MLAL ops. We therefore
+ // check if a mul instruction is used in a SMLAL pattern.
+ auto MulInDSPMLALPattern = [&](const Instruction *I, unsigned Opcode,
+ Type *Ty) -> bool {
+ if (!ST->hasDSP())
+ return false;
+
+ if (!I)
+ return false;
+
+ if (Opcode != Instruction::Mul)
+ return false;
+
+ if (Ty->isVectorTy())
+ return false;
+
+ auto IsSExtInst = [](const Value *V) -> bool { return isa<SExtInst>(V); };
+ auto IsZExtInst = [](const Value *V) -> bool { return isa<ZExtInst>(V); };
----------------
davemgreen wrote:
It might be simpler to drop these and test isa<..> directly instead.
https://github.com/llvm/llvm-project/pull/122713
More information about the llvm-commits
mailing list