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

« back to all changes in this revision

Viewing changes to mpi/hppa/mpih-sub1.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
 
/* hppa   sub_n -- Sub two limb vectors of the same length > 0 and store
2
 
 *                 sum in a third 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_sub_n( mpi_ptr_t res_ptr,   (gr26)
40
 
 *                 mpi_ptr_t s1_ptr,    (gr25)
41
 
 *                 mpi_ptr_t s2_ptr,    (gr24)
42
 
 *                 mpi_size_t size)     (gr23)
43
 
 *
44
 
 * One might want to unroll this as for other processors, but it turns
45
 
 * out that the data cache contention after a store makes such
46
 
 * unrolling useless.  We can't come under 5 cycles/limb anyway.
47
 
 */
48
 
 
49
 
 
50
 
        .code
51
 
        .export         mpihelp_sub_n
52
 
        .label          mpihelp_sub_n
53
 
        .proc
54
 
        .callinfo       frame=0,no_calls
55
 
        .entry
56
 
 
57
 
        ldws,ma         4(0,%r25),%r20
58
 
        ldws,ma         4(0,%r24),%r19
59
 
 
60
 
        addib,=         -1,%r23,L$end   ; check for (SIZE == 1)
61
 
         sub            %r20,%r19,%r28  ; subtract first limbs ignoring cy
62
 
 
63
 
        .label  L$loop
64
 
        ldws,ma         4(0,%r25),%r20
65
 
        ldws,ma         4(0,%r24),%r19
66
 
        stws,ma         %r28,4(0,%r26)
67
 
        addib,<>        -1,%r23,L$loop
68
 
         subb           %r20,%r19,%r28
69
 
 
70
 
        .label  L$end
71
 
        stws            %r28,0(0,%r26)
72
 
        addc            %r0,%r0,%r28
73
 
        bv              0(%r2)
74
 
         subi           1,%r28,%r28
75
 
 
76
 
        .exit
77
 
        .procend
78
 
 
79
 
 
80