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

« back to all changes in this revision

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