Import upstream 5.1.3.
[platform/upstream/gmp.git] / mpn / generic / addcnd_n.c
1 /* mpn_addcnd_n -- Compute R = U + V if CND != 0 or R = U if CND == 0.
2    Both cases should take the same time and perform the exact same memory
3    accesses, since this function is intended to be used where side-channel
4    attack resilience is relevant.
5
6    THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS ONLY
7    SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.
8
9 Copyright 1992, 1993, 1994, 1996, 2000, 2002, 2008, 2009, 2011 Free Software
10 Foundation, Inc.
11
12 This file is part of the GNU MP Library.
13
14 The GNU MP Library is free software; you can redistribute it and/or modify
15 it under the terms of the GNU Lesser General Public License as published by
16 the Free Software Foundation; either version 3 of the License, or (at your
17 option) any later version.
18
19 The GNU MP Library is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
22 License for more details.
23
24 You should have received a copy of the GNU Lesser General Public License
25 along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
26
27 #include "gmp.h"
28 #include "gmp-impl.h"
29
30 mp_limb_t
31 mpn_addcnd_n (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n, mp_limb_t cnd)
32 {
33   mp_limb_t ul, vl, sl, rl, cy, cy1, cy2, mask;
34
35   ASSERT (n >= 1);
36   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
37   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, vp, n));
38
39   mask = -(mp_limb_t) (cnd != 0);
40   cy = 0;
41   do
42     {
43       ul = *up++;
44       vl = *vp++ & mask;
45 #if GMP_NAIL_BITS == 0
46       sl = ul + vl;
47       cy1 = sl < ul;
48       rl = sl + cy;
49       cy2 = rl < sl;
50       cy = cy1 | cy2;
51       *rp++ = rl;
52 #else
53       rl = ul + vl;
54       rl += cy;
55       cy = rl >> GMP_NUMB_BITS;
56       *rp++ = rl & GMP_NUMB_MASK;
57 #endif
58     }
59   while (--n != 0);
60
61   return cy;
62 }