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

« back to all changes in this revision

Viewing changes to mpi/sparc32v8/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
/* SPARC v8 __mpn_submul_1 -- Multiply a limb vector with a limb and
 
2
 *                            subtract the result from a second limb vector.
 
3
 *
 
4
 *      Copyright (C) 1992, 1993, 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
! INPUT PARAMETERS
 
34
! res_ptr       o0
 
35
! s1_ptr        o1
 
36
! size          o2
 
37
! s2_limb       o3
 
38
 
 
39
#include "sysdep.h"
 
40
 
 
41
.text
 
42
        .align 4
 
43
        .global C_SYMBOL_NAME(mpihelp_submul_1)
 
44
C_SYMBOL_NAME(mpihelp_submul_1):
 
45
        sub     %g0,%o2,%o2             ! negate ...
 
46
        sll     %o2,2,%o2               ! ... and scale size
 
47
        sub     %o1,%o2,%o1             ! o1 is offset s1_ptr
 
48
        sub     %o0,%o2,%g1             ! g1 is offset res_ptr
 
49
 
 
50
        mov     0,%o0                   ! clear cy_limb
 
51
 
 
52
Loop:   ld      [%o1+%o2],%o4
 
53
        ld      [%g1+%o2],%g2
 
54
        umul    %o4,%o3,%o5
 
55
        rd      %y,%g3
 
56
        addcc   %o5,%o0,%o5
 
57
        addx    %g3,0,%o0
 
58
        subcc   %g2,%o5,%g2
 
59
        addx    %o0,0,%o0
 
60
        st      %g2,[%g1+%o2]
 
61
 
 
62
        addcc   %o2,4,%o2
 
63
        bne     Loop
 
64
         nop
 
65
 
 
66
        retl
 
67
         nop
 
68
 
 
69