1 /* Add two limb vectors of the same length > 0 and store sum in a third
3 Copyright (C) 1992-2016 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,
18 see <http://www.gnu.org/licenses/>. */
21 #include "asm-syntax.h"
23 #define PARMS 4+8 /* space for 2 saved regs */
33 cfi_adjust_cfa_offset (4)
35 cfi_adjust_cfa_offset (4)
38 cfi_rel_offset (edi, 4)
40 cfi_rel_offset (esi, 0)
44 shrl $3,%ecx /* compute count for unrolled loop */
46 andl $7,%eax /* get index where to start loop */
47 jz L(oop) /* necessary special case for 0 */
48 incl %ecx /* adjust loop count */
49 shll $2,%eax /* adjustment for pointers... */
50 subl %eax,%edi /* ... since they are offset ... */
51 subl %eax,%esi /* ... by a constant when we ... */
52 subl %eax,%edx /* ... enter the loop */
53 shrl $2,%eax /* restore previous value */
55 /* Calculate start address in loop for PIC. Due to limitations in some
56 assemblers, Loop-L0-3 cannot be put into the leal */
58 cfi_adjust_cfa_offset (4)
59 L(0): leal (%eax,%eax,8),%eax
61 addl $(L(oop)-L(0)-3),%eax
63 cfi_adjust_cfa_offset (-4)
65 /* Calculate start address in loop for non-PIC. */
66 leal (L(oop) - 3)(%eax,%eax,8),%eax
68 jmp *%eax /* jump into loop */
70 L(oop): movl (%esi),%eax
104 cfi_adjust_cfa_offset (-4)
107 cfi_adjust_cfa_offset (-4)