~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to mpi/i386/mpih-add1.S

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* i80386 add_n -- Add two limb vectors of the same length > 0 and store
 
2
 *                 sum in a third limb vector.
 
3
 *
 
4
 *      Copyright (C) 1992, 1994, 1995, 1998, 
 
5
 *                    2001, 2002 Free Software Foundation, Inc.
 
6
 *
 
7
 * This file is part of GnuPG.
 
8
 *
 
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.
 
13
 *
 
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.
 
18
 *
 
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
22
 *
 
23
 * Note: This code is heavily based on the GNU MP Library.
 
24
 *       Actually it's the same code with only minor changes in the
 
25
 *       way the data is stored; this is to support the abstraction
 
26
 *       of an optional secure memory allocation which may be used
 
27
 *       to avoid revealing of sensitive data due to paging etc.
 
28
 *       The GNU MP Library itself is published under the LGPL;
 
29
 *       however I decided to publish this code under the plain GPL.
 
30
 */
 
31
 
 
32
 
 
33
#include "sysdep.h"
 
34
#include "asm-syntax.h"
 
35
 
 
36
 
 
37
/*******************
 
38
 *  mpi_limb_t
 
39
 *  mpihelp_add_n( mpi_ptr_t res_ptr,   (sp + 4)
 
40
 *                 mpi_ptr_t s1_ptr,    (sp + 8)
 
41
 *                 mpi_ptr_t s2_ptr,    (sp + 12)
 
42
 *                 mpi_size_t size)     (sp + 16)
 
43
 */
 
44
 
 
45
.text
 
46
        ALIGN (3)
 
47
        .globl C_SYMBOL_NAME(mpihelp_add_n)
 
48
C_SYMBOL_NAME(mpihelp_add_n:)
 
49
        pushl %edi
 
50
        pushl %esi
 
51
 
 
52
        movl 12(%esp),%edi              /* res_ptr */
 
53
        movl 16(%esp),%esi              /* s1_ptr */
 
54
        movl 20(%esp),%edx              /* s2_ptr */
 
55
        movl 24(%esp),%ecx              /* size */
 
56
 
 
57
        movl    %ecx,%eax
 
58
        shrl    $3,%ecx                 /* compute count for unrolled loop */
 
59
        negl    %eax
 
60
        andl    $7,%eax                 /* get index where to start loop */
 
61
        jz      Loop                    /* necessary special case for 0 */
 
62
        incl    %ecx                    /* adjust loop count */
 
63
        shll    $2,%eax                 /* adjustment for pointers... */
 
64
        subl    %eax,%edi               /* ... since they are offset ... */
 
65
        subl    %eax,%esi               /* ... by a constant when we ... */
 
66
        subl    %eax,%edx               /* ... enter the loop */
 
67
        shrl    $2,%eax                 /* restore previous value */
 
68
#ifdef PIC
 
69
/* Calculate start address in loop for PIC.  Due to limitations in some
 
70
   assemblers, Loop-L0-3 cannot be put into the leal */
 
71
        call    L0
 
72
L0:     leal    (%eax,%eax,8),%eax
 
73
        addl    (%esp),%eax
 
74
        addl    $(Loop-L0-3),%eax
 
75
        addl    $4,%esp
 
76
#else
 
77
/* Calculate start address in loop for non-PIC.  */
 
78
        leal    Loop-3(%eax,%eax,8),%eax
 
79
#endif
 
80
        jmp     *%eax                   /* jump into loop */
 
81
        ALIGN (3)
 
82
Loop:   movl    (%esi),%eax
 
83
        adcl    (%edx),%eax
 
84
        movl    %eax,(%edi)
 
85
        movl    4(%esi),%eax
 
86
        adcl    4(%edx),%eax
 
87
        movl    %eax,4(%edi)
 
88
        movl    8(%esi),%eax
 
89
        adcl    8(%edx),%eax
 
90
        movl    %eax,8(%edi)
 
91
        movl    12(%esi),%eax
 
92
        adcl    12(%edx),%eax
 
93
        movl    %eax,12(%edi)
 
94
        movl    16(%esi),%eax
 
95
        adcl    16(%edx),%eax
 
96
        movl    %eax,16(%edi)
 
97
        movl    20(%esi),%eax
 
98
        adcl    20(%edx),%eax
 
99
        movl    %eax,20(%edi)
 
100
        movl    24(%esi),%eax
 
101
        adcl    24(%edx),%eax
 
102
        movl    %eax,24(%edi)
 
103
        movl    28(%esi),%eax
 
104
        adcl    28(%edx),%eax
 
105
        movl    %eax,28(%edi)
 
106
        leal    32(%edi),%edi
 
107
        leal    32(%esi),%esi
 
108
        leal    32(%edx),%edx
 
109
        decl    %ecx
 
110
        jnz     Loop
 
111
 
 
112
        sbbl    %eax,%eax
 
113
        negl    %eax
 
114
 
 
115
        popl %esi
 
116
        popl %edi
 
117
        ret
 
118