SPARCv9 assembly pack: fine-tune run-time switch.
authorAndy Polyakov <appro@openssl.org>
Mon, 25 Apr 2016 21:17:57 +0000 (23:17 +0200)
committerAndy Polyakov <appro@openssl.org>
Tue, 26 Apr 2016 19:35:05 +0000 (21:35 +0200)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/poly1305/asm/poly1305-sparcv9.pl
crypto/sparcv9cap.c

index 497e27097dbd56862e6739a7e331e350b3b2911f..3be2b5cb37db82ee436a94837f0bbaa8f4377422 100755 (executable)
@@ -74,8 +74,8 @@ poly1305_init:
        SPARC_LOAD_ADDRESS(OPENSSL_sparcv9cap_P,%g1)
        ld      [%g1],%g1
 
        SPARC_LOAD_ADDRESS(OPENSSL_sparcv9cap_P,%g1)
        ld      [%g1],%g1
 
-       and     %g1,SPARCV9_FMADD|SPARCV9_PREFER_FPU|SPARCV9_VIS3,%g1
-       cmp     %g1,SPARCV9_FMADD|SPARCV9_PREFER_FPU
+       and     %g1,SPARCV9_FMADD|SPARCV9_VIS3,%g1
+       cmp     %g1,SPARCV9_FMADD
        be      .Lpoly1305_init_fma
        nop
 
        be      .Lpoly1305_init_fma
        nop
 
index 30c384b04df667a7353dd54c721aa605befd00fe..bcb3592a8ba1ab76a6b5bd90527a7bb613fbb7e4 100644 (file)
@@ -60,9 +60,18 @@ int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
         if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3))
             return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
         else if (num >= 8 &&
         if ((OPENSSL_sparcv9cap_P[0] & SPARCV9_VIS3))
             return bn_mul_mont_vis3(rp, ap, bp, np, n0, num);
         else if (num >= 8 &&
-                 (OPENSSL_sparcv9cap_P[0] &
-                  (SPARCV9_PREFER_FPU | SPARCV9_VIS1)) ==
-                 (SPARCV9_PREFER_FPU | SPARCV9_VIS1))
+                 /*
+                  * bn_mul_mont_fpu doesn't use FMADD, we just use the
+                  * flag to detect when FPU path is preferable in cases
+                  * when current heuristics is unreliable. [it works
+                  * out because FMADD-capable processors where FPU
+                  * code path is undesirable are also VIS3-capable and
+                  * VIS3 code path takes precedence.]
+                  */
+                 ( (OPENSSL_sparcv9cap_P[0] & SPARCV9_FMADD) ||
+                   (OPENSSL_sparcv9cap_P[0] &
+                    (SPARCV9_PREFER_FPU | SPARCV9_VIS1)) ==
+                   (SPARCV9_PREFER_FPU | SPARCV9_VIS1) ))
             return bn_mul_mont_fpu(rp, ap, bp, np, n0, num);
     }
     return bn_mul_mont_int(rp, ap, bp, np, n0, num);
             return bn_mul_mont_fpu(rp, ap, bp, np, n0, num);
     }
     return bn_mul_mont_int(rp, ap, bp, np, n0, num);