* stdlib/Makefile (mpn-stuff): New target.
[glibc.git] / sysdeps / i386 / i586 / submul_1.S
blob440f64f35837b8aa4965fc6bd4f9c691cbf77d1e
1 /* Pentium __mpn_submul_1 -- Multiply a limb vector with a limb and subtract
2    the result from a second limb vector.
4 Copyright (C) 1992, 1994, 1996 Free Software Foundation, Inc.
6 This file is part of the GNU MP Library.
8 The GNU MP Library is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Library General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or (at your
11 option) any later version.
13 The GNU MP Library is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
16 License for more details.
18 You should have received a copy of the GNU Library General Public License
19 along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
20 the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23    INPUT PARAMETERS
24    res_ptr      (sp + 4)
25    s1_ptr       (sp + 8)
26    size         (sp + 12)
27    s2_limb      (sp + 16)
30 #include "sysdep.h"
31 #include "asm-syntax.h"
33 #define res_ptr edi
34 #define s1_ptr esi
35 #define size ecx
36 #define s2_limb ebp
38         TEXT
39         ALIGN (3)
40         GLOBL   C_SYMBOL_NAME(__mpn_submul_1)
41 C_SYMBOL_NAME(__mpn_submul_1:)
43         INSN1(push,l    ,R(edi))
44         INSN1(push,l    ,R(esi))
45         INSN1(push,l    ,R(ebx))
46         INSN1(push,l    ,R(ebp))
48         INSN2(mov,l     ,R(res_ptr),MEM_DISP(esp,20))
49         INSN2(mov,l     ,R(s1_ptr),MEM_DISP(esp,24))
50         INSN2(mov,l     ,R(size),MEM_DISP(esp,28))
51         INSN2(mov,l     ,R(s2_limb),MEM_DISP(esp,32))
53         INSN2(lea,l     ,R(res_ptr),MEM_INDEX(res_ptr,size,4))
54         INSN2(lea,l     ,R(s1_ptr),MEM_INDEX(s1_ptr,size,4))
55         INSN1(neg,l     ,R(size))
56         INSN2(xor,l     ,R(ebx),R(ebx))
57         ALIGN (3)
59 Loop:   INSN2(adc,l     ,R(ebx),$0)
60         INSN2(mov,l     ,R(eax),MEM_INDEX(s1_ptr,size,4))
62         INSN1(mul,l     ,R(s2_limb))
64         INSN2(add,l     ,R(eax),R(ebx))
65         INSN2(mov,l     ,R(ebx),MEM_INDEX(res_ptr,size,4))
67         INSN2(adc,l     ,R(edx),$0)
68         INSN2(sub,l     ,R(ebx),R(eax))
70         INSN2(mov,l     ,MEM_INDEX(res_ptr,size,4),R(ebx))
71         INSN1(inc,l     ,R(size))
73         INSN2(mov,l     ,R(ebx),R(edx))
74         INSN1(jnz,      ,Loop)
76         INSN2(adc,l     ,R(ebx),$0)
77         INSN2(mov,l     ,R(eax),R(ebx))
78         INSN1(pop,l     ,R(ebp))
79         INSN1(pop,l     ,R(ebx))
80         INSN1(pop,l     ,R(esi))
81         INSN1(pop,l     ,R(edi))
82         ret