]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/i386/addmul_1.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / i386 / addmul_1.S
CommitLineData
28f540f4
RM
1/* i80386 __mpn_addmul_1 -- Multiply a limb vector with a limb and add
2 the result to a second limb vector.
bfff8b1b 3 Copyright (C) 1992-2017 Free Software Foundation, Inc.
5929563f 4 This file is part of the GNU MP Library.
28f540f4 5
5929563f 6 The GNU MP Library is free software; you can redistribute it and/or modify
6d84f89a
AJ
7 it under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or (at your
5929563f 9 option) any later version.
28f540f4 10
5929563f
UD
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
6d84f89a 13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
5929563f 14 License for more details.
28f540f4 15
6d84f89a 16 You should have received a copy of the GNU Lesser General Public License
59ba27a6
PE
17 along with the GNU MP Library; see the file COPYING.LIB. If not,
18 see <http://www.gnu.org/licenses/>. */
28f540f4 19
28f540f4
RM
20#include "sysdep.h"
21#include "asm-syntax.h"
3f02f778 22
2366713d 23#define PARMS 4+16 /* space for 4 saved regs */
3f02f778 24#define RES PARMS
2366713d
JM
25#define S1 RES+4
26#define SIZE S1+4
3f02f778 27#define S2LIMB SIZE+4
28f540f4
RM
28
29#define res_ptr edi
30#define s1_ptr esi
ce37fa88 31#define sizeP ecx
f9e7bbce 32#define s2_limb ebx
28f540f4 33
ae828bc6 34 .text
2366713d 35ENTRY (__mpn_addmul_1)
28f540f4 36
fee732e5 37 pushl %res_ptr
1ad9da69 38 cfi_adjust_cfa_offset (4)
fee732e5 39 pushl %s1_ptr
1ad9da69 40 cfi_adjust_cfa_offset (4)
43c81906 41 pushl %ebp
1ad9da69 42 cfi_adjust_cfa_offset (4)
fee732e5 43 pushl %s2_limb
1ad9da69 44 cfi_adjust_cfa_offset (4)
28f540f4 45
43c81906 46 movl RES(%esp), %res_ptr
1ad9da69 47 cfi_rel_offset (res_ptr, 12)
43c81906 48 movl S1(%esp), %s1_ptr
1ad9da69 49 cfi_rel_offset (s1_ptr, 8)
43c81906
GM
50 movl SIZE(%esp), %sizeP
51 movl S2LIMB(%esp), %s2_limb
1ad9da69 52 cfi_rel_offset (s2_limb, 0)
43c81906
GM
53 leal (%res_ptr,%sizeP,4), %res_ptr
54 leal (%s1_ptr,%sizeP,4), %s1_ptr
55 negl %sizeP
f9e7bbce 56 xorl %ebp, %ebp
1ad9da69 57 cfi_rel_offset (ebp, 4)
28f540f4 58 ALIGN (3)
5929563f 59L(oop):
43c81906
GM
60 movl (%s1_ptr,%sizeP,4), %eax
61 mull %s2_limb
f9e7bbce 62 addl %ebp, %eax
43c81906
GM
63 adcl $0, %edx
64 addl %eax, (%res_ptr,%sizeP,4)
65 adcl $0, %edx
f9e7bbce 66 movl %edx, %ebp
28f540f4 67
43c81906
GM
68 incl %sizeP
69 jnz L(oop)
f9e7bbce 70 movl %ebp, %eax
28f540f4 71
fee732e5 72 popl %s2_limb
1ad9da69 73 cfi_adjust_cfa_offset (-4)
fee732e5 74 cfi_restore (s2_limb)
f9e7bbce 75 popl %ebp
1ad9da69
UD
76 cfi_adjust_cfa_offset (-4)
77 cfi_restore (ebp)
fee732e5 78 popl %s1_ptr
1ad9da69 79 cfi_adjust_cfa_offset (-4)
fee732e5
UD
80 cfi_restore (s1_ptr)
81 popl %res_ptr
1ad9da69 82 cfi_adjust_cfa_offset (-4)
fee732e5 83 cfi_restore (res_ptr)
43c81906 84
28f540f4 85 ret
2366713d 86END (__mpn_addmul_1)