~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to gmp3/mpn/i960/addmul_1.s

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# I960 __gmpn_addmul_1 -- Multiply a limb vector with a limb and add
 
2
# the result to a second limb vector.
 
3
 
 
4
# Copyright 1995, 2000 Free Software Foundation, Inc.
 
5
 
 
6
# This file is part of the GNU MP Library.
 
7
 
 
8
# The GNU MP Library is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU Lesser General Public License as published by
 
10
# the Free Software Foundation; either version 2.1 of the License, or (at your
 
11
# option) any later version.
 
12
 
 
13
# The GNU MP Library is distributed in the hope that it will be useful, but
 
14
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
15
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
 
16
# License for more details.
 
17
 
 
18
# You should have received a copy of the GNU Lesser General Public License
 
19
# along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
 
20
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
 
21
# MA 02111-1307, USA.
 
22
 
 
23
.text
 
24
        .align  4
 
25
        .globl  ___gmpn_mul_1
 
26
___gmpn_mul_1:
 
27
        subo    g2,0,g2
 
28
        shlo    2,g2,g4
 
29
        subo    g4,g1,g1
 
30
        subo    g4,g0,g13
 
31
        mov     0,g0
 
32
 
 
33
        cmpo    1,0             # clear C bit on AC.cc
 
34
 
 
35
Loop:   ld      (g1)[g2*4],g5
 
36
        emul    g3,g5,g6
 
37
        ld      (g13)[g2*4],g5
 
38
 
 
39
        addc    g0,g6,g6        # relies on that C bit is clear
 
40
        addc    0,g7,g7
 
41
        addc    g5,g6,g6        # relies on that C bit is clear
 
42
        st      g6,(g13)[g2*4]
 
43
        addc    0,g7,g0
 
44
 
 
45
        addo    g2,1,g2
 
46
        cmpobne 0,g2,Loop       # when branch is taken, clears C bit
 
47
 
 
48
        ret