~ubuntu-branches/ubuntu/oneiric/gnupg2/oneiric-updates

« back to all changes in this revision

Viewing changes to mpi/i586/mpih-mul2.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
 
/* i80586 addmul_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_addmul_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_addmul_1)
53
 
C_SYMBOL_NAME(mpihelp_addmul_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
 
 
71
 
Loop:   INSN2(adc,l     ,R(ebx),$0)
72
 
        INSN2(mov,l     ,R(eax),MEM_INDEX(s1_ptr,size,4))
73
 
 
74
 
        INSN1(mul,l     ,R(s2_limb))
75
 
 
76
 
        INSN2(add,l     ,R(eax),R(ebx))
77
 
        INSN2(mov,l     ,R(ebx),MEM_INDEX(res_ptr,size,4))
78
 
 
79
 
        INSN2(adc,l     ,R(edx),$0)
80
 
        INSN2(add,l     ,R(ebx),R(eax))
81
 
 
82
 
        INSN2(mov,l     ,MEM_INDEX(res_ptr,size,4),R(ebx))
83
 
        INSN1(inc,l     ,R(size))
84
 
 
85
 
        INSN2(mov,l     ,R(ebx),R(edx))
86
 
        INSN1(jnz,      ,Loop)
87
 
 
88
 
        INSN2(adc,l     ,R(ebx),$0)
89
 
        INSN2(mov,l     ,R(eax),R(ebx))
90
 
        INSN1(pop,l     ,R(ebp))
91
 
        INSN1(pop,l     ,R(ebx))
92
 
        INSN1(pop,l     ,R(esi))
93
 
        INSN1(pop,l     ,R(edi))
94
 
        ret
95