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

« back to all changes in this revision

Viewing changes to mpi/powerpc32/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
/* PowerPC-32 submul_1 -- Multiply a limb vector with a limb and subtract
 
2
 *                        the result from a second limb vector.
 
3
 *
 
4
 *      Copyright (C) 1995, 1998 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
 
 
23
#include "sysdep.h"
 
24
#include "asm-syntax.h"
 
25
 
 
26
 
 
27
#ifndef USE_PPC_PATCHES
 
28
 
 
29
/*******************
 
30
 * mpi_limb_t
 
31
 * mpihelp_submul_1( mpi_ptr_t res_ptr,      (r3)
 
32
 *                   mpi_ptr_t s1_ptr,       (r4)
 
33
 *                   mpi_size_t s1_size,     (r5)
 
34
 *                   mpi_limb_t s2_limb)     (r6)
 
35
 *
 
36
 * This is a fairly straightforward implementation.  The timing of the PC601
 
37
 * is hard to understand, so I will wait to optimize this until I have some
 
38
 * hardware to play with.
 
39
 *
 
40
 * The code trivially generalizes to 64 bit limbs for the PC620.
 
41
 */
 
42
 
 
43
        .toc
 
44
        .csect .mpihelp_submul_1[PR]
 
45
        .align 2
 
46
        .globl mpihelp_submul_1
 
47
        .globl .mpihelp_submul_1
 
48
        .csect mpihelp_submul_1[DS]
 
49
mpihelp_submul_1:
 
50
        .long .mpihelp_submul_1[PR], TOC[tc0], 0
 
51
        .csect .mpihelp_submul_1[PR]
 
52
.mpihelp_submul_1:
 
53
        mtctr   5
 
54
 
 
55
        lwz     0,0(4)
 
56
        mullw   7,0,6
 
57
        mulhwu  10,0,6
 
58
        lwz     9,0(3)
 
59
        subfc   8,7,9
 
60
        addc    7,7,8           # invert cy (r7 is junk)
 
61
        addi    3,3,-4
 
62
        bdz     Lend
 
63
 
 
64
Loop:   lwzu    0,4(4)
 
65
        stwu    8,4(3)
 
66
        mullw   8,0,6
 
67
        adde    7,8,10
 
68
        mulhwu  10,0,6
 
69
        lwz     9,4(3)
 
70
        addze   10,10
 
71
        subfc   8,7,9
 
72
        addc    7,7,8           # invert cy (r7 is junk)
 
73
        bdnz    Loop
 
74
 
 
75
Lend:   stw     8,4(3)
 
76
        addze   3,10
 
77
        blr
 
78
 
 
79
#else
 
80
/* Multiply a limb vector by a single limb, for PowerPC.
 
81
   Copyright (C) 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 
82
   This file is part of the GNU C Library.
 
83
 
 
84
   The GNU C Library is free software; you can redistribute it and/or
 
85
   modify it under the terms of the GNU Library General Public License as
 
86
   published by the Free Software Foundation; either version 2 of the
 
87
   License, or (at your option) any later version.
 
88
 
 
89
   The GNU C Library is distributed in the hope that it will be useful,
 
90
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
91
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
92
   Library General Public License for more details.
 
93
 
 
94
   You should have received a copy of the GNU Library General Public
 
95
   License along with the GNU C Library; see the file COPYING.LIB.  If not,
 
96
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
97
   Boston, MA 02111-1307, USA.  */
 
98
 
 
99
/* mp_limb_t mpn_submul_1 (mp_ptr res_ptr, mp_srcptr s1_ptr,
 
100
                           mp_size_t s1_size, mp_limb_t s2_limb)
 
101
   Calculate res-s1*s2 and put result back in res; return carry.  */
 
102
 
 
103
ENTRY(mpihelp_submul_1)
 
104
       mtctr   %r5
 
105
 
 
106
       lwz     %r0,0(%r4)
 
107
       mullw   %r7,%r0,%r6
 
108
       mulhwu  %r10,%r0,%r6
 
109
       lwz     %r9,0(%r3)
 
110
       subf    %r8,%r7,%r9
 
111
       addc    %r7,%r7,%r8             # invert cy (r7 is junk)
 
112
       addi    %r3,%r3,-4              # adjust res_ptr
 
113
       bdz     1f
 
114
 
 
115
0:     lwzu    %r0,4(%r4)
 
116
       stwu    %r8,4(%r3)
 
117
       mullw   %r8,%r0,%r6
 
118
       adde    %r7,%r8,%r10
 
119
       mulhwu  %r10,%r0,%r6
 
120
       lwz     %r9,4(%r3)
 
121
       addze   %r10,%r10
 
122
       subf    %r8,%r7,%r9
 
123
       addc    %r7,%r7,%r8             # invert cy (r7 is junk)
 
124
       bdnz    0b
 
125
 
 
126
1:     stw     %r8,4(%r3)
 
127
       addze   %r3,%r10
 
128
       blr
 
129
END(mpihelp_submul_1)
 
130
#endif