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

« back to all changes in this revision

Viewing changes to mpi/i386/mpih-rshift.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   rshift
 
2
 *
 
3
 *      Copyright (C) 1992, 1994, 1998, 
 
4
 *                    2001, 2002 Free Software Foundation, Inc.
 
5
 *
 
6
 * This file is part of GnuPG.
 
7
 *
 
8
 * GnuPG is free software; you can redistribute it and/or modify
 
9
 * it under the terms of the GNU General Public License as published by
 
10
 * the Free Software Foundation; either version 2 of the License, or
 
11
 * (at your option) any later version.
 
12
 *
 
13
 * GnuPG is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software
 
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
21
 *
 
22
 * Note: This code is heavily based on the GNU MP Library.
 
23
 *       Actually it's the same code with only minor changes in the
 
24
 *       way the data is stored; this is to support the abstraction
 
25
 *       of an optional secure memory allocation which may be used
 
26
 *       to avoid revealing of sensitive data due to paging etc.
 
27
 *       The GNU MP Library itself is published under the LGPL;
 
28
 *       however I decided to publish this code under the plain GPL.
 
29
 */
 
30
 
 
31
 
 
32
#include "sysdep.h"
 
33
#include "asm-syntax.h"
 
34
 
 
35
 
 
36
/*******************
 
37
 * mpi_limb_t
 
38
 * mpihelp_rshift( mpi_ptr_t wp,        (sp + 4)
 
39
 *                 mpi_ptr_t up,        (sp + 8)
 
40
 *                 mpi_size_t usize,    (sp + 12)
 
41
 *                 unsigned cnt)        (sp + 16)
 
42
 */
 
43
 
 
44
.text
 
45
        ALIGN (3)
 
46
        .globl C_SYMBOL_NAME(mpihelp_rshift)
 
47
C_SYMBOL_NAME(mpihelp_rshift:)
 
48
        pushl   %edi
 
49
        pushl   %esi
 
50
        pushl   %ebx
 
51
 
 
52
        movl    16(%esp),%edi           /* wp */
 
53
        movl    20(%esp),%esi           /* up */
 
54
        movl    24(%esp),%edx           /* usize */
 
55
        movl    28(%esp),%ecx           /* cnt */
 
56
 
 
57
        leal    -4(%edi,%edx,4),%edi
 
58
        leal    (%esi,%edx,4),%esi
 
59
        negl    %edx
 
60
 
 
61
        movl    (%esi,%edx,4),%ebx      /* read least significant limb */
 
62
        xorl    %eax,%eax
 
63
        shrdl   %ebx,%eax               /* compute carry limb */
 
64
        incl    %edx
 
65
        jz      Lend2
 
66
        pushl   %eax                    /* push carry limb onto stack */
 
67
        testb   $1,%dl
 
68
        jnz     L2                      /* enter loop in the middle */
 
69
        movl    %ebx,%eax
 
70
 
 
71
        ALIGN (3)
 
72
Loop2:  movl     (%esi,%edx,4),%ebx      /* load next higher limb */
 
73
        shrdl   %ebx,%eax               /* compute result limb */
 
74
        movl    %eax,(%edi,%edx,4)      /* store it */
 
75
        incl    %edx
 
76
L2:     movl    (%esi,%edx,4),%eax
 
77
        shrdl   %eax,%ebx
 
78
        movl    %ebx,(%edi,%edx,4)
 
79
        incl    %edx
 
80
        jnz     Loop2
 
81
 
 
82
        shrl    %cl,%eax                /* compute most significant limb */
 
83
        movl    %eax,(%edi)             /* store it */
 
84
 
 
85
        popl    %eax                    /* pop carry limb */
 
86
 
 
87
        popl    %ebx
 
88
        popl    %esi
 
89
        popl    %edi
 
90
        ret
 
91
 
 
92
Lend2:  shrl    %cl,%ebx                /* compute most significant limb */
 
93
        movl    %ebx,(%edi)             /* store it */
 
94
 
 
95
        popl    %ebx
 
96
        popl    %esi
 
97
        popl    %edi
 
98
        ret
 
99