1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
// file kernel/n/ppc32/numerix.S: assembly code for mode = SLONG
/*-----------------------------------------------------------------------+
| Copyright 2005-2006, Michel Quercia (michel.quercia@prepas.org) |
| |
| This file is part of Numerix. Numerix 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 Numerix 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. If not, |
| write to the Free Software Foundation, Inc., 59 Temple Place - |
| Suite 330, Boston, MA 02111-1307, USA. |
+-----------------------------------------------------------------------+
| |
| Fonctions assembleur pour le mode SLONG |
| |
+-----------------------------------------------------------------------*/
/* fichier de configuration spcifique la machine cible */
#include "../../config.h"
/* dboguage */
#include "dumpreg.S"
#define TRACE(msg) \
stmw r0, -128(r1) @\
mfxer r31 @\
mflr r30 @\
mfctr r29 @\
mfcr r28 @\
stmw r28, -144(r1) @\
stwu r1, -200(r1) @\
bcl 20,31,9f @\
.asciz msg @\
.align 2 @\
9: @\
mflr r3 @\
bl _printf$LDBLStub @\
lwz r1, 0(r1) @\
lmw r28, -144(r1) @\
mtxer r31 @\
mtlr r30 @\
mtctr r29 @\
mtcr r28 @\
lwz r0, -128(r1) @\
lmw r2, -120(r1)
/* remplacement d une fonction dsactive */
#define REPLACE(nom) \
L##nom: @\
mflr r0 @\
stwu r1, -48(r1) @\
stw r0, 44(r1) @\
bl _##nom @\
lwz r0, 44(r1) @\
mtlr r0 @\
addi r1, r1, 48 @\
blr
/* addition/soustraction */
#include "add.S"
/* multiplication/carr */
#include "mul_n2.S"
#include "karatsuba.S"
#include "toom.S"
/* division/racine carre */
#include "div_n2.S"
#include "sqrt_n2.S"
#include "burnikel.S"
/* oprations modulo BASE^n +/- 1 */
#include "mmod.S"
#include "smod.S"
/* exponentiation modulaire */
#include "montgomery.S"
/* pgcd */
#include "gcd_n2.S"
/* divers */
#include "cmp.S"
#include "shift.S"
|