~ubuntu-branches/ubuntu/jaunty/gnupg2/jaunty-security

« back to all changes in this revision

Viewing changes to mpi/m68k/mc68020/mpih-mul3.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
 
/* mc68020 __mpn_submul_1 -- Multiply a limb vector with a limb and subtract
2
 
 *                           the result from a second limb vector.
3
 
 *
4
 
 *      Copyright (C) 1992, 1994, 1996, 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
 
 
34
 
 
35
 
#include "sysdep.h"
36
 
#include "asm-syntax.h"
37
 
 
38
 
/*******************
39
 
 * mpi_limb_t
40
 
 * mpihelp_submul_1( mpi_ptr_t res_ptr,      (sp + 4)
41
 
 *                   mpi_ptr_t s1_ptr,       (sp + 8)
42
 
 *                   mpi_size_t s1_size,     (sp + 12)
43
 
 *                   mpi_limb_t s2_limb)     (sp + 16)
44
 
 */
45
 
 
46
 
 
47
 
        TEXT
48
 
        ALIGN
49
 
        GLOBL   C_SYMBOL_NAME(mpihelp_submul_1)
50
 
 
51
 
C_SYMBOL_NAME(mpihelp_submul_1:)
52
 
PROLOG(mpihelp_submul_1)
53
 
 
54
 
#define res_ptr a0
55
 
#define s1_ptr a1
56
 
#define s1_size d2
57
 
#define s2_limb d4
58
 
 
59
 
/* Save used registers on the stack.  */
60
 
        moveml  R(d2)-R(d5),MEM_PREDEC(sp)
61
 
 
62
 
/* Copy the arguments to registers.  Better use movem?  */
63
 
        movel   MEM_DISP(sp,20),R(res_ptr)
64
 
        movel   MEM_DISP(sp,24),R(s1_ptr)
65
 
        movel   MEM_DISP(sp,28),R(s1_size)
66
 
        movel   MEM_DISP(sp,32),R(s2_limb)
67
 
 
68
 
        eorw    #1,R(s1_size)
69
 
        clrl    R(d1)
70
 
        clrl    R(d5)
71
 
        lsrl    #1,R(s1_size)
72
 
        bcc     L(L1)
73
 
        subql   #1,R(s1_size)
74
 
        subl    R(d0),R(d0)     /* (d0,cy) <= (0,0) */
75
 
 
76
 
L(Loop:)
77
 
        movel   MEM_POSTINC(s1_ptr),R(d3)
78
 
        mulul   R(s2_limb),R(d1):R(d3)
79
 
        addxl   R(d0),R(d3)
80
 
        addxl   R(d5),R(d1)
81
 
        subl    R(d3),MEM_POSTINC(res_ptr)
82
 
L(L1:)  movel   MEM_POSTINC(s1_ptr),R(d3)
83
 
        mulul   R(s2_limb),R(d0):R(d3)
84
 
        addxl   R(d1),R(d3)
85
 
        addxl   R(d5),R(d0)
86
 
        subl    R(d3),MEM_POSTINC(res_ptr)
87
 
 
88
 
        dbf     R(s1_size),L(Loop)
89
 
        addxl   R(d5),R(d0)
90
 
        subl    #0x10000,R(s1_size)
91
 
        bcc     L(Loop)
92
 
 
93
 
/* Restore used registers from stack frame.  */
94
 
        moveml  MEM_POSTINC(sp),R(d2)-R(d5)
95
 
 
96
 
        rts
97
 
EPILOG(mpihelp_submul_1)
98
 
 
99