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

« back to all changes in this revision

Viewing changes to gmp3/mpn/cray/add_n.c

  • 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
/* Cray PVP mpn_add_n -- add two limb vectors and store their sum in a third
 
2
   limb vector.
 
3
 
 
4
Copyright 1996, 2000, 2001 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
/* This code runs at 4 cycles/limb.  It may be possible to bring it down
 
24
   to 3 cycles/limb.  */
 
25
 
 
26
#include "gmp.h"
 
27
#include "gmp-impl.h"
 
28
 
 
29
mp_limb_t
 
30
mpn_add_n (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n)
 
31
{
 
32
  mp_limb_t cy[n];
 
33
  mp_limb_t a, b, r, s0, c0, c1;
 
34
  mp_size_t i;
 
35
  int more_carries;
 
36
 
 
37
  /* Main add loop.  Generate a raw output sum in rp[] and a carry vector
 
38
     in cy[].  */
 
39
#pragma _CRI ivdep
 
40
  for (i = 0; i < n; i++)
 
41
    {
 
42
      a = up[i];
 
43
      b = vp[i];
 
44
      s0 = a + b;
 
45
      rp[i] = s0;
 
46
      c0 = ((a & b) | ((a | b) & ~s0)) >> 63;
 
47
      cy[i] = c0;
 
48
    }
 
49
  /* Carry add loop.  Add the carry vector cy[] to the raw sum rp[] and
 
50
     store the new sum back to rp[0].  If this generates further carry, set
 
51
     more_carries.  */
 
52
  more_carries = 0;
 
53
#pragma _CRI ivdep
 
54
  for (i = 1; i < n; i++)
 
55
    {
 
56
      r = rp[i];
 
57
      c0 = cy[i - 1];
 
58
      s0 = r + c0;
 
59
      rp[i] = s0;
 
60
      c0 = (r & ~s0) >> 63;
 
61
      more_carries += c0;
 
62
    }
 
63
  /* If that second loop generated carry, handle that in scalar loop.  */
 
64
  if (more_carries)
 
65
    {
 
66
      mp_limb_t cyrec = 0;
 
67
      /* Look for places where rp[k] is zero and cy[k-1] is non-zero.
 
68
         These are where we got a recurrency carry.  */
 
69
      for (i = 1; i < n; i++)
 
70
        {
 
71
          r = rp[i];
 
72
          c0 = (r == 0 && cy[i - 1] != 0);
 
73
          s0 = r + cyrec;
 
74
          rp[i] = s0;
 
75
          c1 = (r & ~s0) >> 63;
 
76
          cyrec = c0 | c1;
 
77
        }
 
78
      return cyrec | cy[n - 1];
 
79
    }
 
80
 
 
81
  return cy[n - 1];
 
82
}