mpir/mpn
2014-04-01 01:13:01 +01:00
..
alpha Remove unused tuning values, insert provisional FFT tuning values. See #92. 2014-03-25 14:33:43 +00:00
arm ARM tuning values (thanks Volker Braun). 2014-03-26 14:54:46 +00:00
generic Update Visual Studio 2012 builds and simply tune builds for VS2012 and VS2013 2014-03-27 21:13:19 +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 Put netburst tuning back. 2014-04-01 01:13:01 +01:00
x86_64w copy GCC tuning values over to Windows 2014-04-01 00:35:49 +01:00
x86w Adjust Windows builds for filename changes; correct error in sqr_basecase.asm; fix Windows build errors in DEBUG mode 2014-03-26 20:19:54 +00: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.