mpir/mpn
2011-07-23 14:32:28 +00:00
..
alpha remove old code 2011-05-01 12:30:23 +00:00
arm
generic Use new half and double code 2011-07-20 23:32:23 +00:00
ia64 move asm code in gmp-impl into the arch specific dirs 2011-04-30 07:05:19 +00:00
mips32
mips64
powerpc32 move asm code in gmp-impl into the arch specific dirs 2011-04-30 07:05:19 +00:00
powerpc64
sparc32
sparc64 move asm code in gmp-impl into the arch specific dirs 2011-04-30 07:05:19 +00:00
x86 move asm code in gmp-impl into the arch specific dirs 2011-04-30 07:05:19 +00:00
x86_64 New asm fn mpn_sumdiff_n for penryn 2011-07-23 14:32:28 +00:00
x86_64w add mpn_sumdiff_n for nehalem on Windows 2011-07-22 23:03:59 +00:00
x86w 1. rename umul.asm and umul.asm to align with the symbols they export 2011-07-13 06:37:51 +00:00
asm-defs.m4 add half/double test code and correct return values 2011-07-13 12:54:47 +00:00
cpp-ccas
m4-ccas
Makeasm.am switch all x86_64 asm code from gas/yasm to just yasm 2011-06-30 13:48:51 +00:00
Makefile.am remove s390 pa32 pa64 explicit code 2011-04-30 07:16:39 +00:00
Makefile.in switch all x86_64 asm code from gas/yasm to just yasm 2011-06-30 13:48: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.