diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2011-02-04 17:13:54 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2011-02-04 17:13:54 +0100 |
commit | 07c0d3ee4a39d2f11c7141d91eee1bda6eba813f (patch) | |
tree | 42988732924ba01a933830a2c4f77dc3b8d0b59e /mpn | |
parent | 70d1b55383538af432454c0a57caca052ce90d5b (diff) | |
download | gmp-07c0d3ee4a39d2f11c7141d91eee1bda6eba813f.tar.gz |
Add MULFUNC_PROLOGUE.
Diffstat (limited to 'mpn')
-rw-r--r-- | mpn/x86_64/atom/dive_1.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/atom/popcount.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/core2/popcount.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/coreinhm/hamdist.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/coreinhm/popcount.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/nano/popcount.asm | 1 | ||||
-rw-r--r-- | mpn/x86_64/pentium4/popcount.asm | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/mpn/x86_64/atom/dive_1.asm b/mpn/x86_64/atom/dive_1.asm index 53b6a7c48..b5775fb12 100644 --- a/mpn/x86_64/atom/dive_1.asm +++ b/mpn/x86_64/atom/dive_1.asm @@ -19,4 +19,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_divexact_1) include_mpn(`x86_64/nano/dive_1.asm') diff --git a/mpn/x86_64/atom/popcount.asm b/mpn/x86_64/atom/popcount.asm index 8d73aa35c..3b59c0260 100644 --- a/mpn/x86_64/atom/popcount.asm +++ b/mpn/x86_64/atom/popcount.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_popcount) include_mpn(`x86/pentium4/sse2/popcount.asm') diff --git a/mpn/x86_64/core2/popcount.asm b/mpn/x86_64/core2/popcount.asm index 6c22999ff..d2fe8cfee 100644 --- a/mpn/x86_64/core2/popcount.asm +++ b/mpn/x86_64/core2/popcount.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_popcount) include_mpn(`x86/pentium4/sse2/popcount.asm') diff --git a/mpn/x86_64/coreinhm/hamdist.asm b/mpn/x86_64/coreinhm/hamdist.asm index 795276982..28cac2eb8 100644 --- a/mpn/x86_64/coreinhm/hamdist.asm +++ b/mpn/x86_64/coreinhm/hamdist.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_hamdist) include_mpn(`x86_64/k10/hamdist.asm') diff --git a/mpn/x86_64/coreinhm/popcount.asm b/mpn/x86_64/coreinhm/popcount.asm index e4a334849..0120b881c 100644 --- a/mpn/x86_64/coreinhm/popcount.asm +++ b/mpn/x86_64/coreinhm/popcount.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_popcount) include_mpn(`x86_64/k10/popcount.asm') diff --git a/mpn/x86_64/nano/popcount.asm b/mpn/x86_64/nano/popcount.asm index 8d73aa35c..3b59c0260 100644 --- a/mpn/x86_64/nano/popcount.asm +++ b/mpn/x86_64/nano/popcount.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_popcount) include_mpn(`x86/pentium4/sse2/popcount.asm') diff --git a/mpn/x86_64/pentium4/popcount.asm b/mpn/x86_64/pentium4/popcount.asm index b1a866bf5..67c9618e2 100644 --- a/mpn/x86_64/pentium4/popcount.asm +++ b/mpn/x86_64/pentium4/popcount.asm @@ -20,4 +20,5 @@ dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. include(`../config.m4') +MULFUNC_PROLOGUE (mpn_popcount) include_mpn(`x86/pentium4/sse2/popcount.asm') |