[llvm] [AArch64][CostModel] Increase the cost of illegal SVE int-to-fp converts (PR #130756)
Sander de Smalen via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 04:54:52 PDT 2025
================
@@ -3144,6 +3144,21 @@ InstructionCost AArch64TTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst,
{ISD::SIGN_EXTEND, MVT::nxv8i32, MVT::nxv8i16, 2},
{ISD::SIGN_EXTEND, MVT::nxv8i64, MVT::nxv8i16, 6},
{ISD::SIGN_EXTEND, MVT::nxv4i64, MVT::nxv4i32, 2},
+
+ // Add cost for extending and converting to illegal -too wide- scalable
+ // Extending one size (e.g. i32 -> f64) takes 2 unpacks and 2 fcvts, while
----------------
sdesmalen-arm wrote:
I know that the cost-model is a bit of a guessing game, but is there any rationale behind picking a factor of 3? (i.e. why the cost is 12 instead of 4)
https://github.com/llvm/llvm-project/pull/130756
More information about the llvm-commits
mailing list