[Libreoffice-commits] core.git: Branch 'libreoffice-5-1' - sc/source

Tor Lillqvist tml at collabora.com
Mon Feb 8 10:13:58 UTC 2016


 sc/source/core/inc/arraysumfunctor.hxx |   22 ++++++++++++++++++++++
 sc/source/core/tool/interpr6.cxx       |   10 ++++++++++
 2 files changed, 32 insertions(+)

New commits:
commit aa064e8209e57ac91f16305d38e657d12a42093f
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Feb 5 14:58:11 2016 +0200

    tdf#97587: Treat plain NaNs as zero in the software interpreter for SUM
    
    The NaNs that have been stored in the arrays by
    ScColumn::FetchVectorRefArray() and other code correspond to empty
    cells. For the purpose of SUM they should be treated as zero.
    
    Change-Id: I8ac0c8afdf71da415ed120f9f8f6d51a8b5edb15
    Reviewed-on: https://gerrit.libreoffice.org/22199
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Michael Meeks <michael.meeks at collabora.com>
    Tested-by: Michael Meeks <michael.meeks at collabora.com>

diff --git a/sc/source/core/inc/arraysumfunctor.hxx b/sc/source/core/inc/arraysumfunctor.hxx
index 200fdc6..3955fd9 100644
--- a/sc/source/core/inc/arraysumfunctor.hxx
+++ b/sc/source/core/inc/arraysumfunctor.hxx
@@ -12,6 +12,7 @@
 #define INCLUDED_SC_SOURCE_CORE_INC_ARRAYSUMFUNCTOR_HXX
 
 #include <cstdint>
+#include <rtl/math.hxx>
 #include <tools/cpuid.hxx>
 
 #if defined(LO_SSE2_AVAILABLE)
@@ -65,6 +66,27 @@ public:
         for (; i < mnSize; ++i)
             fSum += mpArray[i];
 
+        // If the sum is a NaN, some of the terms were empty cells, probably.
+        // Re-calculate, carefully
+        if (!rtl::math::isFinite(fSum))
+        {
+            sal_uInt32 nErr = reinterpret_cast< sal_math_Double * >(&fSum)->nan_parts.fraction_lo;
+            if (nErr & 0xffff0000)
+            {
+                fSum = 0;
+                for (i = 0; i < mnSize; i++)
+                {
+                    if (!rtl::math::isFinite(mpArray[i]))
+                    {
+                        nErr = reinterpret_cast< const sal_math_Double * >(&mpArray[i])->nan_parts.fraction_lo;
+                        if (!(nErr & 0xffff0000))
+                            fSum += mpArray[i]; // Let errors encoded as NaNs propagate ???
+                    }
+                    else
+                        fSum += mpArray[i];
+                }
+            }
+        }
         return fSum;
     }
 
diff --git a/sc/source/core/tool/interpr6.cxx b/sc/source/core/tool/interpr6.cxx
index 5bf4533..e7e321b 100644
--- a/sc/source/core/tool/interpr6.cxx
+++ b/sc/source/core/tool/interpr6.cxx
@@ -412,6 +412,16 @@ void IterateMatrix(
         case ifSUM:
         {
             ScMatrix::IterateResult aRes = pMat->Sum(bTextAsZero);
+            // If the first value is a NaN, it probably means it was an empty cell,
+            // and should be treated as zero.
+            if ( !rtl::math::isFinite(aRes.mfFirst) )
+            {
+                sal_uInt32 nErr = reinterpret_cast< sal_math_Double * >(&aRes.mfFirst)->nan_parts.fraction_lo;
+                if (nErr & 0xffff0000)
+                {
+                    aRes.mfFirst = 0;
+                }
+            }
             if ( fMem )
                 fRes += aRes.mfFirst + aRes.mfRest;
             else


More information about the Libreoffice-commits mailing list