[llvm] [AArch64] Don't try to vectorize fixed point to fp narrowing conversion (PR #130665)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 03:09:50 PDT 2025
================
@@ -5106,6 +5106,30 @@ SDValue AArch64TargetLowering::LowerVectorINT_TO_FP(SDValue Op,
uint64_t VTSize = VT.getFixedSizeInBits();
uint64_t InVTSize = InVT.getFixedSizeInBits();
if (VTSize < InVTSize) {
+ // AArch64 doesn't have a direct vector instruction to convert
+ // fixed point to floating point AND narrow it at the same time.
+ // Additional rounding when the target is f32/f64 causes subtle
+ // differences across different platforms (that do have such
----------------
davemgreen wrote:
Perhaps "causes subtle differences across different platforms(that do have such instructions)" -> "causes double-rounding issues".
https://github.com/llvm/llvm-project/pull/130665
More information about the llvm-commits
mailing list