1 /* Add two limb vectors of the same length > 0 and store sum in a third
3 Copyright (C) 1992,94,95,97,98,2000,2005 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 Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 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 Lesser General Public
14 License for more details.
16 You should have received a copy of the GNU Lesser 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. */
22 #include "asm-syntax.h"
26 #define PARMS LINKAGE+8 /* space for 2 saved regs */
28 #define S1 RES+PTR_SIZE
29 #define S2 S1+PTR_SIZE
30 #define SIZE S2+PTR_SIZE
33 ENTRY (BP_SYM (__mpn_add_n))
37 cfi_adjust_cfa_offset (4)
39 cfi_adjust_cfa_offset (4)
42 cfi_rel_offset (edi, 4)
44 cfi_rel_offset (esi, 0)
47 #if __BOUNDED_POINTERS__
48 shll $2, %ecx /* convert limbs to bytes */
49 CHECK_BOUNDS_BOTH_WIDE (%edi, RES(%esp), %ecx)
50 CHECK_BOUNDS_BOTH_WIDE (%esi, S1(%esp), %ecx)
51 CHECK_BOUNDS_BOTH_WIDE (%edx, S2(%esp), %ecx)
55 shrl $3,%ecx /* compute count for unrolled loop */
57 andl $7,%eax /* get index where to start loop */
58 jz L(oop) /* necessary special case for 0 */
59 incl %ecx /* adjust loop count */
60 shll $2,%eax /* adjustment for pointers... */
61 subl %eax,%edi /* ... since they are offset ... */
62 subl %eax,%esi /* ... by a constant when we ... */
63 subl %eax,%edx /* ... enter the loop */
64 shrl $2,%eax /* restore previous value */
66 /* Calculate start address in loop for PIC. Due to limitations in some
67 assemblers, Loop-L0-3 cannot be put into the leal */
69 cfi_adjust_cfa_offset (4)
70 L(0): leal (%eax,%eax,8),%eax
72 addl $(L(oop)-L(0)-3),%eax
74 cfi_adjust_cfa_offset (-4)
76 /* Calculate start address in loop for non-PIC. */
77 leal (L(oop) - 3)(%eax,%eax,8),%eax
79 jmp *%eax /* jump into loop */
81 L(oop): movl (%esi),%eax
115 cfi_adjust_cfa_offset (-4)
118 cfi_adjust_cfa_offset (-4)
123 END (BP_SYM (__mpn_add_n))