[llvm] [AArch64] Update costs for scalarizing i64->f32 int_to_fp. (PR #132366)
Pranav Kant via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 14:12:03 PDT 2025
================
@@ -3199,6 +3197,20 @@ InstructionCost AArch64TTIImpl::getCastInstrCost(unsigned Opcode, Type *Dst,
FP16Tbl, ISD, DstTy.getSimpleVT(), SrcTy.getSimpleVT()))
return AdjustCost(Entry->Cost);
+ // INT_TO_FP of i64->f32 will scalarize, which is required to avoid
+ // double-rounding issues.
+ if ((ISD == ISD::SINT_TO_FP || ISD == ISD::UINT_TO_FP) &&
+ DstTy.getScalarType() == MVT::f32 && SrcTy.getScalarSizeInBits() > 32 &&
----------------
pranavk wrote:
Do you want `== 64` here instead?
https://github.com/llvm/llvm-project/pull/132366
More information about the llvm-commits
mailing list