diff --git a/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp b/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
--- a/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
+++ b/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
@@ -466,6 +466,11 @@
     { ISD::FP_TO_UINT, MVT::v2i32, MVT::v2f64, 2 },
     { ISD::FP_TO_UINT, MVT::v2i16, MVT::v2f64, 2 },
     { ISD::FP_TO_UINT, MVT::v2i8,  MVT::v2f64, 2 },
+
+    // From nxvmf32 to nxmf64
+    { ISD::FP_ROUND, MVT::nxv2f32, MVT::nxv2f64, 1 },
+    { ISD::FP_ROUND, MVT::nxv4f32, MVT::nxv4f64, 1 },
+    { ISD::FP_ROUND, MVT::nxv8f32, MVT::nxv8f64, 1 },
   };
 
   if (const auto *Entry = ConvertCostTableLookup(ConversionTbl, ISD,
diff --git a/llvm/test/Analysis/CostModel/AArch64/sve-fptrunc.ll b/llvm/test/Analysis/CostModel/AArch64/sve-fptrunc.ll
new file mode 100644
--- /dev/null
+++ b/llvm/test/Analysis/CostModel/AArch64/sve-fptrunc.ll
@@ -0,0 +1,15 @@
+; RUN: opt -cost-model -analyze -mtriple aarch64-linux-gnu -mattr=+sve -S -o - < %s  2>&1| FileCheck %s
+
+target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
+target triple = "aarch64-unknown-linux-gnu"
+
+define void @sve_fptruncs() {
+  ; CHECK-LABEL: 'sve_fptruncs'
+  ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %fptrunc_nxv2f64 = fptrunc <vscale x 2 x double> undef to <vscale x 2 x float>
+  ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %fptrunc_nxv4f64 = fptrunc <vscale x 4 x double> undef to <vscale x 4 x float>
+  ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %fptrunc_nxv8f64 = fptrunc <vscale x 8 x double> undef to <vscale x 8 x float>
+  %fptrunc_nxv2f64 = fptrunc <vscale x 2 x double> undef to <vscale x 2 x float>
+  %fptrunc_nxv4f64 = fptrunc <vscale x 4 x double> undef to <vscale x 4 x float>
+  %fptrunc_nxv8f64 = fptrunc <vscale x 8 x double> undef to <vscale x 8 x float>
+  ret void
+}