~ubuntu-branches/ubuntu/karmic/gnupg2/karmic-updates

« back to all changes in this revision

Viewing changes to mpi/i386-openbsd/mpih-sub1.S

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-10-04 10:25:53 UTC
  • mfrom: (5.1.15 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081004102553-fv62pp8dsitxli47
Tags: 2.0.9-3.1
* Non-maintainer upload.
* agent/gpg-agent.c: Deinit the threading library before exec'ing
  the command to run in --daemon mode. And because that still doesn't
  restore the sigprocmask, do that manually. Closes: #499569

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* i80386 sub_n -- Sub 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 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_sub_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
 
 
46
 
.text
47
 
        ALIGN (3)
48
 
        .globl C_SYMBOL_NAME(mpihelp_sub_n)
49
 
C_SYMBOL_NAME(mpihelp_sub_n:)
50
 
        pushl %edi
51
 
        pushl %esi
52
 
 
53
 
        movl 12(%esp),%edi              /* res_ptr */
54
 
        movl 16(%esp),%esi              /* s1_ptr */
55
 
        movl 20(%esp),%edx              /* s2_ptr */
56
 
        movl 24(%esp),%ecx              /* size */
57
 
 
58
 
        movl    %ecx,%eax
59
 
        shrl    $3,%ecx                 /* compute count for unrolled loop */
60
 
        negl    %eax
61
 
        andl    $7,%eax                 /* get index where to start loop */
62
 
        jz      Loop                    /* necessary special case for 0 */
63
 
        incl    %ecx                    /* adjust loop count */
64
 
        shll    $2,%eax                 /* adjustment for pointers... */
65
 
        subl    %eax,%edi               /* ... since they are offset ... */
66
 
        subl    %eax,%esi               /* ... by a constant when we ... */
67
 
        subl    %eax,%edx               /* ... enter the loop */
68
 
        shrl    $2,%eax                 /* restore previous value */
69
 
#ifdef PIC
70
 
/* Calculate start address in loop for PIC.  Due to limitations in some
71
 
   assemblers, Loop-L0-3 cannot be put into the leal */
72
 
        call    L0
73
 
L0:     leal    (%eax,%eax,8),%eax
74
 
        addl    (%esp),%eax
75
 
        addl    $(Loop-L0-3),%eax
76
 
        addl    $4,%esp
77
 
#else
78
 
/* Calculate start address in loop for non-PIC.  */
79
 
        leal    (Loop - 3)(%eax,%eax,8),%eax
80
 
#endif
81
 
        jmp     *%eax                   /* jump into loop */
82
 
        ALIGN (3)
83
 
Loop:   movl    (%esi),%eax
84
 
        sbbl    (%edx),%eax
85
 
        movl    %eax,(%edi)
86
 
        movl    4(%esi),%eax
87
 
        sbbl    4(%edx),%eax
88
 
        movl    %eax,4(%edi)
89
 
        movl    8(%esi),%eax
90
 
        sbbl    8(%edx),%eax
91
 
        movl    %eax,8(%edi)
92
 
        movl    12(%esi),%eax
93
 
        sbbl    12(%edx),%eax
94
 
        movl    %eax,12(%edi)
95
 
        movl    16(%esi),%eax
96
 
        sbbl    16(%edx),%eax
97
 
        movl    %eax,16(%edi)
98
 
        movl    20(%esi),%eax
99
 
        sbbl    20(%edx),%eax
100
 
        movl    %eax,20(%edi)
101
 
        movl    24(%esi),%eax
102
 
        sbbl    24(%edx),%eax
103
 
        movl    %eax,24(%edi)
104
 
        movl    28(%esi),%eax
105
 
        sbbl    28(%edx),%eax
106
 
        movl    %eax,28(%edi)
107
 
        leal    32(%edi),%edi
108
 
        leal    32(%esi),%esi
109
 
        leal    32(%edx),%edx
110
 
        decl    %ecx
111
 
        jnz     Loop
112
 
 
113
 
        sbbl    %eax,%eax
114
 
        negl    %eax
115
 
 
116
 
        popl %esi
117
 
        popl %edi
118
 
        ret
119