mpir/mpn
2013-04-09 03:20:58 +01:00
..
alpha Removed old FFT tuning params from gmp-mparam.h files. 2012-09-25 15:43:18 +00:00
arm ARM and AMD Bobcat tuning values courtesty of Julien Puydt and Leif Lionhardy 2012-10-25 22:14:23 +00:00
generic Tried a new kind of basecase division. 2013-04-09 03:20:58 +01:00
ia64 Lots of tuning values. 2012-10-24 01:58:08 +00:00
mips32 Removed old FFT tuning params from gmp-mparam.h files. 2012-09-25 15:43:18 +00:00
mips64 Removed old FFT tuning params from gmp-mparam.h files. 2012-09-25 15:43:18 +00:00
powerpc32 Removed old FFT tuning params from gmp-mparam.h files. 2012-09-25 15:43:18 +00:00
powerpc64 Removed old FFT tuning params from gmp-mparam.h files. 2012-09-25 15:43:18 +00:00
sparc32 Lots of tuning values. 2012-10-24 01:58:08 +00:00
sparc64 Lots of tuning values. 2012-10-24 01:58:08 +00:00
x86 Line endings 2012-11-25 22:33:07 +00:00
x86_64 Actually, we call it mullow_n_basecase, so move the file yet again, and 2013-04-06 01:21:39 +01:00
x86_64w Line endings 2012-11-25 22:33:07 +00:00
x86w Line endings 2012-11-25 22:33:07 +00:00
asm-defs.m4 correct pop order for karasub , add redc_2 , add generic addadd addsub subadd sumdiff 2012-03-10 08:27:37 +00:00
cpp-ccas Basic GMP files with a new core2 directory and amd_64 directory with Martin's and Gaudry's patches. 2008-04-17 21:03:07 +00:00
m4-ccas Added execute privileges to m4-ccas. 2008-05-27 03:10:10 +00:00
Makeasm.am disable yasm for *.asm and use gas as some functions are slightly faster 2011-09-11 13:38:18 +00:00
Makefile.am removed some alpha specific stuff 2011-08-10 15:54:48 +00:00
Makefile.in removed all use HAVE_HOST , except for timing on the powerpc 2011-09-12 01:23:43 +00:00
README Added a blank line to the README file to test SVN 2008-11-07 01:21:21 +00:00

Copyright 1996, 1999 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.





This directory contains all code for the mpn layer of GMP.

Most subdirectories contain machine-dependent code, written in assembly or C.
The `generic' subdirectory contains default code, used when there is no
machine-dependent replacement for a particular machine.

There is one subdirectory for each ISA family.  Note that e.g., 32-bit SPARC
and 64-bit SPARC are very different ISA's, and thus cannot share any code.

A particular compile will only use code from one subdirectory, and the
`generic' subdirectory.  The ISA-specific subdirectories contain hierachies of
directories for various architecture variants and implementations; the
top-most level contains code that runs correctly on all variants.