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

« back to all changes in this revision

Viewing changes to mpi/i386/mpih-mul3.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 submul_1 -- Multiply a limb vector with a limb and add
 
2
 *                    the result to a second limb vector.
 
3
 *
 
4
 *      Copyright (C) 1992, 1994, 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_submul_1( mpi_ptr_t res_ptr,      (sp + 4)
 
40
 *                   mpi_ptr_t s1_ptr,       (sp + 8)
 
41
 *                   mpi_size_t s1_size,     (sp + 12)
 
42
 *                   mpi_limb_t s2_limb)     (sp + 16)
 
43
 */
 
44
 
 
45
#define res_ptr edi
 
46
#define s1_ptr  esi
 
47
#define size    ecx
 
48
#define s2_limb ebp
 
49
 
 
50
        TEXT
 
51
        ALIGN (3)
 
52
        GLOBL   C_SYMBOL_NAME(mpihelp_submul_1)
 
53
C_SYMBOL_NAME(mpihelp_submul_1:)
 
54
 
 
55
        INSN1(push,l    ,R(edi))
 
56
        INSN1(push,l    ,R(esi))
 
57
        INSN1(push,l    ,R(ebx))
 
58
        INSN1(push,l    ,R(ebp))
 
59
 
 
60
        INSN2(mov,l     ,R(res_ptr),MEM_DISP(esp,20))
 
61
        INSN2(mov,l     ,R(s1_ptr),MEM_DISP(esp,24))
 
62
        INSN2(mov,l     ,R(size),MEM_DISP(esp,28))
 
63
        INSN2(mov,l     ,R(s2_limb),MEM_DISP(esp,32))
 
64
 
 
65
        INSN2(lea,l     ,R(res_ptr),MEM_INDEX(res_ptr,size,4))
 
66
        INSN2(lea,l     ,R(s1_ptr),MEM_INDEX(s1_ptr,size,4))
 
67
        INSN1(neg,l     ,R(size))
 
68
        INSN2(xor,l     ,R(ebx),R(ebx))
 
69
        ALIGN (3)
 
70
Loop:
 
71
        INSN2(mov,l     ,R(eax),MEM_INDEX(s1_ptr,size,4))
 
72
        INSN1(mul,l     ,R(s2_limb))
 
73
        INSN2(add,l     ,R(eax),R(ebx))
 
74
        INSN2(adc,l     ,R(edx),$0)
 
75
        INSN2(sub,l     ,MEM_INDEX(res_ptr,size,4),R(eax))
 
76
        INSN2(adc,l     ,R(edx),$0)
 
77
        INSN2(mov,l     ,R(ebx),R(edx))
 
78
 
 
79
        INSN1(inc,l     ,R(size))
 
80
        INSN1(jnz,      ,Loop)
 
81
        INSN2(mov,l     ,R(eax),R(ebx))
 
82
 
 
83
        INSN1(pop,l     ,R(ebp))
 
84
        INSN1(pop,l     ,R(ebx))
 
85
        INSN1(pop,l     ,R(esi))
 
86
        INSN1(pop,l     ,R(edi))
 
87
        ret
 
88