Update.
[glibc.git] / sysdeps / i386 / addmul_1.S
blob50151ea07d6b153fbfec1e6c31bca3bf97593051
1 /* i80386 __mpn_addmul_1 -- Multiply a limb vector with a limb and add
2    the result to a second limb vector.
3    Copyright (C) 1992, 1994, 1997, 1998, 2000 Free Software Foundation, Inc.
4    This file is part of the GNU MP Library.
6    The GNU MP Library is free software; you can redistribute it and/or modify
7    it under the terms of the GNU Library General Public License as published by
8    the Free Software Foundation; either version 2 of the License, or (at your
9    option) any later version.
11    The GNU MP Library is distributed in the hope that it will be useful, but
12    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
14    License for more details.
16    You should have received a copy of the GNU Library General Public License
17    along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
18    the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
19    MA 02111-1307, USA. */
21 #include "sysdep.h"
22 #include "asm-syntax.h"
23 #include "bp-asm.h"
25 #define PARMS   LINKAGE+16      /* space for 4 saved regs */
26 #define RES     PARMS
27 #define S1      RES+PTR_SIZE
28 #define SIZE    S1+PTR_SIZE
29 #define S2LIMB  SIZE+4
31 #define res_ptr edi
32 #define s1_ptr esi
33 #define sizeP ecx
34 #define s2_limb ebp
36         .text
37 ENTRY(__mpn_addmul_1)
39         INSN1(push,l    ,R(edi))
40         INSN1(push,l    ,R(esi))
41         INSN1(push,l    ,R(ebx))
42         INSN1(push,l    ,R(ebp))
44         INSN2(mov,l     ,R(res_ptr),MEM_DISP(esp,RES))
45         INSN2(mov,l     ,R(s1_ptr),MEM_DISP(esp,S1))
46         INSN2(mov,l     ,R(sizeP),MEM_DISP(esp,SIZE))
47         INSN2(mov,l     ,R(s2_limb),MEM_DISP(esp,S2LIMB))
49         INSN2(lea,l     ,R(res_ptr),MEM_INDEX(res_ptr,sizeP,4))
50         INSN2(lea,l     ,R(s1_ptr),MEM_INDEX(s1_ptr,sizeP,4))
51         INSN1(neg,l     ,R(sizeP))
52         INSN2(xor,l     ,R(ebx),R(ebx))
53         ALIGN (3)
54 L(oop):
55         INSN2(mov,l     ,R(eax),MEM_INDEX(s1_ptr,sizeP,4))
56         INSN1(mul,l     ,R(s2_limb))
57         INSN2(add,l     ,R(eax),R(ebx))
58         INSN2(adc,l     ,R(edx),$0)
59         INSN2(add,l     ,MEM_INDEX(res_ptr,sizeP,4),R(eax))
60         INSN2(adc,l     ,R(edx),$0)
61         INSN2(mov,l     ,R(ebx),R(edx))
63         INSN1(inc,l     ,R(sizeP))
64         INSN1(jnz,      ,L(oop))
65         INSN2(mov,l     ,R(eax),R(ebx))
67         INSN1(pop,l     ,R(ebp))
68         INSN1(pop,l     ,R(ebx))
69         INSN1(pop,l     ,R(esi))
70         INSN1(pop,l     ,R(edi))
71         ret
72 END(__mpn_addmul_1)