1 /* i80586 sub_n -- Sub two limb vectors of the same length > 0 and store
2 * sum in a third limb vector.
4 * Copyright (C) 1992, 1994, 1995, 1998,
5 * 2001 Free Software Foundation, Inc.
7 * This file is part of GnuPG.
9 * GnuPG is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * GnuPG is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
24 * Note: This code is heavily based on the GNU MP Library.
25 * Actually it's the same code with only minor changes in the
26 * way the data is stored; this is to support the abstraction
27 * of an optional secure memory allocation which may be used
28 * to avoid revealing of sensitive data due to paging etc.
29 * The GNU MP Library itself is published under the LGPL;
30 * however I decided to publish this code under the plain GPL.
35 #include "asm-syntax.h"
40 * mpihelp_sub_n( mpi_ptr_t res_ptr, (sp + 4)
41 * mpi_ptr_t s1_ptr, (sp + 8)
42 * mpi_ptr_t s2_ptr, (sp + 12)
43 * mpi_size_t size) (sp + 16)
49 .globl C_SYMBOL_NAME(mpihelp_sub_n)
50 C_SYMBOL_NAME(mpihelp_sub_n:)
57 movl 20(%esp),%edi /* res_ptr */
58 movl 24(%esp),%esi /* s1_ptr */
59 movl 28(%esp),%ebp /* s2_ptr */
60 movl 32(%esp),%ecx /* size */
68 testl %ecx,%ecx /* zero carry flag */
73 Loop: movl 28(%edi),%eax /* fetch destination cache line */
94 L3: movl 16(%esi),%eax
103 L4: movl 24(%esi),%eax
119 decl %edx /* test %edx w/o clobbering carry */