mpir/mpn
2014-03-26 03:16:22 +00:00
..
alpha Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +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 Removed some incorrect asserts from mulmod_2expp1_basecase.c. 2014-03-25 23:11:26 +00:00
ia64 Update final cutoff for ia64. 2014-03-21 18:37:23 +00:00
mips32 Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +00:00
mips64 Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +00:00
powerpc32 Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +00:00
powerpc64 Added tuning for powerpc64 and tried to fix at least one problem with tuning on 2014-03-24 23:11:11 +00:00
sparc32 Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +00:00
sparc64 Whether is it nobler to do sparc64 tuning with an old gcc on a new machine or a 2014-03-24 21:07:07 +00:00
x86 Remove gcd_finda.asm and references to it. 2014-03-25 20:14:46 +00:00
x86_64 Added bobcat tuning values. Thanks Frithjof Schulze. 2014-03-25 18:31:58 +00:00
x86_64w Merge remote-tracking branch 'brian/master' 2014-03-26 03:16:22 +00:00
x86w adjust Intel macros in dedicated windows assembler 2013-08-06 13:25:11 +01:00
asm-defs.m4 Remove gcd_finda.asm and references to it. 2014-03-25 20:14:46 +00:00
cpp-ccas
m4-ccas
Makeasm.am Fix for MPIR_AS. 2013-08-02 21:01:04 +02:00
Makefile.am removed some alpha specific stuff 2011-08-10 15:54:48 +00:00
Makefile.in Ran autoreconf -i to change autotools versions to those of development machine. 2014-02-04 13:40:51 +00:00
README

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.