[Gmp-commit] /var/hg/gmp: Add fastsse grabber files for tabselect.
mercurial at gmplib.org
mercurial at gmplib.org
Sat Apr 13 23:40:23 CEST 2013
details: /var/hg/gmp/rev/37082d27ed59
changeset: 15714:37082d27ed59
user: Torbjorn Granlund <tege at gmplib.org>
date: Sat Apr 13 23:40:21 2013 +0200
description:
Add fastsse grabber files for tabselect.
diffstat:
ChangeLog | 7 +++++++
mpn/x86_64/bd1/tabselect.asm | 26 ++++++++++++++++++++++++++
mpn/x86_64/core2/tabselect.asm | 26 ++++++++++++++++++++++++++
mpn/x86_64/coreinhm/tabselect.asm | 26 ++++++++++++++++++++++++++
mpn/x86_64/coreisbr/tabselect.asm | 26 ++++++++++++++++++++++++++
mpn/x86_64/k10/tabselect.asm | 26 ++++++++++++++++++++++++++
mpn/x86_64/pentium4/tabselect.asm | 26 ++++++++++++++++++++++++++
7 files changed, 163 insertions(+), 0 deletions(-)
diffs (196 lines):
diff -r 7b281907ba4f -r 37082d27ed59 ChangeLog
--- a/ChangeLog Sat Apr 13 21:34:47 2013 +0200
+++ b/ChangeLog Sat Apr 13 23:40:21 2013 +0200
@@ -1,5 +1,12 @@
2013-04-13 Torbjorn Granlund <tege at gmplib.org>
+ * mpn/x86_64/bd1/tabselect.asm: New file.
+ * mpn/x86_64/coreisbr/tabselect.asm: New file.
+ * mpn/x86_64/k10/tabselect.asm: New file.
+ * mpn/x86_64/coreinhm/tabselect.asm: New file.
+ * mpn/x86_64/core2/tabselect.asm: New file.
+ * mpn/x86_64/pentium4/tabselect.asm: New file.
+
* mpn/x86_64/fastsse/tabselect.asm: New file.
* mpn/arm/neon/tabselect.asm: Rewrite.
* mpn/arm/tabselect.asm: Rewrite.
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/bd1/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/bd1/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/core2/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/core2/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/coreinhm/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/coreinhm/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/coreisbr/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/coreisbr/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/k10/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/k10/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
diff -r 7b281907ba4f -r 37082d27ed59 mpn/x86_64/pentium4/tabselect.asm
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mpn/x86_64/pentium4/tabselect.asm Sat Apr 13 23:40:21 2013 +0200
@@ -0,0 +1,26 @@
+dnl X86-64 mpn_tabselect.
+
+dnl Copyright 2012, 2013 Free Software Foundation, Inc.
+
+dnl This file is part of the GNU MP Library.
+
+dnl The GNU MP Library is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU Lesser General Public License as published
+dnl by the Free Software Foundation; either version 3 of the License, or (at
+dnl your option) any later version.
+
+dnl The GNU MP Library is distributed in the hope that it will be useful, but
+dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+dnl License for more details.
+
+dnl You should have received a copy of the GNU Lesser General Public License
+dnl along with the GNU MP Library. If not, see http://www.gnu.org/licenses/.
+
+include(`../config.m4')
+
+ABI_SUPPORT(DOS64)
+ABI_SUPPORT(STD64)
+
+MULFUNC_PROLOGUE(mpn_tabselect)
+include_mpn(`x86_64/fastsse/tabselect.asm')
More information about the gmp-commit
mailing list