• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..14-Nov-2020-

alpha/H14-Nov-2020-9,1097,701

arm/H14-Nov-2020-9,9918,493

arm64/H14-Nov-2020-4,4123,615

cray/H14-Nov-2020-2,0461,272

generic/H14-Nov-2020-36,25920,738

ia64/H14-Nov-2020-10,87610,003

lisp/H14-Nov-2020-386204

m68k/H14-Nov-2020-1,281968

m88k/H14-Nov-2020-1,065904

minithres/H14-Nov-2020-11464

mips32/H14-Nov-2020-1,021832

mips64/H14-Nov-2020-1,022831

pa32/H14-Nov-2020-2,7362,271

pa64/H14-Nov-2020-3,3723,019

power/H14-Nov-2020-819701

powerpc32/H14-Nov-2020-6,0424,969

powerpc64/H14-Nov-2020-13,23611,497

riscv/64/H14-Nov-2020-225196

s390_32/H14-Nov-2020-2,5062,107

s390_64/H14-Nov-2020-2,9052,429

sh/H14-Nov-2020-315265

sparc32/H14-Nov-2020-5,2164,512

sparc64/H14-Nov-2020-9,5327,931

thumb/H14-Nov-2020-128112

vax/H14-Nov-2020-733598

x86/H14-Nov-2020-42,75832,680

x86_64/H14-Nov-2020-51,90844,885

Makeasm.amH A D14-Nov-20204.6 KiB119104

Makefile.amH A D14-Nov-20201.9 KiB6018

Makefile.inH A D14-Nov-202023.4 KiB773575

READMEH A D14-Nov-20201.7 KiB4529

asm-defs.m4H A D14-Nov-202054.5 KiB1,7671,498

cpp-ccasH A D14-Nov-20202.9 KiB11952

m4-ccasH A D14-Nov-20202.6 KiB10849

README

1Copyright 1996, 1999 Free Software Foundation, Inc.
2
3This file is part of the GNU MP Library.
4
5The GNU MP Library is free software; you can redistribute it and/or modify
6it under the terms of either:
7
8  * the GNU Lesser General Public License as published by the Free
9    Software Foundation; either version 3 of the License, or (at your
10    option) any later version.
11
12or
13
14  * the GNU General Public License as published by the Free Software
15    Foundation; either version 2 of the License, or (at your option) any
16    later version.
17
18or both in parallel, as here.
19
20The GNU MP Library is distributed in the hope that it will be useful, but
21WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
22or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
23for more details.
24
25You should have received copies of the GNU General Public License and the
26GNU Lesser General Public License along with the GNU MP Library.  If not,
27see https://www.gnu.org/licenses/.
28
29
30
31
32This directory contains all code for the mpn layer of GMP.
33
34Most subdirectories contain machine-dependent code, written in assembly or C.
35The `generic' subdirectory contains default code, used when there is no
36machine-dependent replacement for a particular machine.
37
38There is one subdirectory for each ISA family.  Note that e.g., 32-bit SPARC
39and 64-bit SPARC are very different ISA's, and thus cannot share any code.
40
41A particular compile will only use code from one subdirectory, and the
42`generic' subdirectory.  The ISA-specific subdirectories contain hierachies of
43directories for various architecture variants and implementations; the
44top-most level contains code that runs correctly on all variants.
45