summaryrefslogtreecommitdiff
path: root/mpn
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2002-04-23 00:06:11 +0200
committerKevin Ryde <user42@zip.com.au>2002-04-23 00:06:11 +0200
commit6029fd09b01a215b81eadedc6f10b3e43e434349 (patch)
treef16e311ce1eae87347308508d78bf6b9feb9bbad /mpn
parentf05ac897a218252c418d288f2ca5742cdd44f220 (diff)
downloadgmp-6029fd09b01a215b81eadedc6f10b3e43e434349.tar.gz
Revert this:
* mpn/x86/udiv.asm, mpn/x86/umul.asm, mpn/x86/k6/mmx/popham.asm, mpn/x86/p6/mmx/popham.asm, mpn/x86/p6/p3mmx/popham.asm, mpn/x86/pentium/com_n.asm, mpn/x86/pentium/mmx/popham.asm, mpn/x86/pentium/logops_n.asm, mpn/x86/pentium/popcount.asm, mpn/x86/pentium/hamdist.asm, mpn/x86/k7/mmx/popham.asm, mpn/x86/pentium4/mmx/popham.asm: Add NAILS_SUPPORT indicators.
Diffstat (limited to 'mpn')
-rw-r--r--mpn/x86/k6/mmx/popham.asm2
-rw-r--r--mpn/x86/k7/mmx/popham.asm2
-rw-r--r--mpn/x86/p6/mmx/popham.asm2
-rw-r--r--mpn/x86/p6/p3mmx/popham.asm2
-rw-r--r--mpn/x86/pentium/hamdist.asm3
-rw-r--r--mpn/x86/pentium/mmx/popham.asm2
-rw-r--r--mpn/x86/pentium/popcount.asm2
-rw-r--r--mpn/x86/pentium4/mmx/popham.asm2
8 files changed, 0 insertions, 17 deletions
diff --git a/mpn/x86/k6/mmx/popham.asm b/mpn/x86/k6/mmx/popham.asm
index facf994d9..13e41110a 100644
--- a/mpn/x86/k6/mmx/popham.asm
+++ b/mpn/x86/k6/mmx/popham.asm
@@ -27,8 +27,6 @@ C popcount hamdist
C K6-2: 9.0 11.5 cycles/limb
C K6: 12.5 13.0
-NAILS_SUPPORT(0-31)
-
C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
C unsigned long mpn_hamdist (mp_srcptr src, mp_srcptr src2, mp_size_t size);
diff --git a/mpn/x86/k7/mmx/popham.asm b/mpn/x86/k7/mmx/popham.asm
index 7cf9646fc..f7f2daeef 100644
--- a/mpn/x86/k7/mmx/popham.asm
+++ b/mpn/x86/k7/mmx/popham.asm
@@ -25,8 +25,6 @@ include(`../config.m4')
C K7: popcount 5.0 cycles/limb, hamdist 6.0 cycles/limb
-NAILS_SUPPORT(0-31)
-
C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
C unsigned long mpn_hamdist (mp_srcptr src, mp_srcptr src2, mp_size_t size);
diff --git a/mpn/x86/p6/mmx/popham.asm b/mpn/x86/p6/mmx/popham.asm
index a2a563d7b..9188af743 100644
--- a/mpn/x86/p6/mmx/popham.asm
+++ b/mpn/x86/p6/mmx/popham.asm
@@ -25,8 +25,6 @@ include(`../config.m4')
C P6MMX: popcount 11 cycles/limb (approx), hamdist 11.5 cycles/limb (approx)
-NAILS_SUPPORT(0-31)
-
MULFUNC_PROLOGUE(mpn_popcount mpn_hamdist)
include_mpn(`x86/k6/mmx/popham.asm')
diff --git a/mpn/x86/p6/p3mmx/popham.asm b/mpn/x86/p6/p3mmx/popham.asm
index e378e5cf4..a1bf7957f 100644
--- a/mpn/x86/p6/p3mmx/popham.asm
+++ b/mpn/x86/p6/p3mmx/popham.asm
@@ -26,7 +26,5 @@ dnl good on P-III.
include(`../config.m4')
-NAILS_SUPPORT(0-31)
-
MULFUNC_PROLOGUE(mpn_popcount mpn_hamdist)
include_mpn(`x86/k7/mmx/popham.asm')
diff --git a/mpn/x86/pentium/hamdist.asm b/mpn/x86/pentium/hamdist.asm
index bf01b9cc5..cc5abc6fc 100644
--- a/mpn/x86/pentium/hamdist.asm
+++ b/mpn/x86/pentium/hamdist.asm
@@ -25,9 +25,6 @@ include(`../config.m4')
C P5: 14.0 cycles/limb
-NAILS_SUPPORT(0-31)
-
-
C unsigned long mpn_hamdist (mp_srcptr src1, mp_srcptr src2, mp_size_t size);
C
C It might be possible to shave 1 cycle from the loop, and hence 2
diff --git a/mpn/x86/pentium/mmx/popham.asm b/mpn/x86/pentium/mmx/popham.asm
index a4b11cdda..3552a9331 100644
--- a/mpn/x86/pentium/mmx/popham.asm
+++ b/mpn/x86/pentium/mmx/popham.asm
@@ -25,8 +25,6 @@ include(`../config.m4')
C P55: popcount 11.5 cycles/limb, hamdist 12.0 cycles/limb
-NAILS_SUPPORT(0-31)
-
MULFUNC_PROLOGUE(mpn_popcount mpn_hamdist)
include_mpn(`x86/k6/mmx/popham.asm')
diff --git a/mpn/x86/pentium/popcount.asm b/mpn/x86/pentium/popcount.asm
index 244dd01b4..deb078175 100644
--- a/mpn/x86/pentium/popcount.asm
+++ b/mpn/x86/pentium/popcount.asm
@@ -24,8 +24,6 @@ include(`../config.m4')
C P5: 8.0 cycles/limb
-NAILS_SUPPORT(0-31)
-
C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
C
diff --git a/mpn/x86/pentium4/mmx/popham.asm b/mpn/x86/pentium4/mmx/popham.asm
index 6c0617d92..516de5bd0 100644
--- a/mpn/x86/pentium4/mmx/popham.asm
+++ b/mpn/x86/pentium4/mmx/popham.asm
@@ -26,8 +26,6 @@ include(`../config.m4')
C P4: popcount 8.5 cycles/limb
C hamdist 9.5 cycles/limb
-NAILS_SUPPORT(0-31)
-
C unsigned long mpn_popcount (mp_srcptr src, mp_size_t size);
C unsigned long mpn_hamdist (mp_srcptr src, mp_srcptr src2, mp_size_t size);