summaryrefslogtreecommitdiff
path: root/src/util/bigmath.h
blob: 6339bb6f6ca3328307639fe6917bf01d7c00920b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
 * Copyright © 2018 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 * IN THE SOFTWARE.
 */

#ifndef UTIL_BIGMATH_H
#define UTIL_BIGMATH_H

#include "macros.h"

#include <assert.h>
#include <stdint.h>
#include <string.h>

static inline bool
_ubm_add_u32arr(uint32_t *dst, unsigned dst_len,
                uint32_t *a, unsigned a_len,
                uint32_t *b, unsigned b_len)
{
   uint32_t carry = 0;
   for (unsigned i = 0; i < dst_len; i++) {
      uint64_t sum = carry;
      if (i < a_len)
         sum += a[i];
      if (i < b_len)
         sum += b[i];
      dst[i] = sum;
      carry = sum >> 32;
   }

   /* Now compute overflow */

   for (unsigned i = dst_len; i < a_len; i++) {
      if (a[i])
         return true;
   }

   for (unsigned i = dst_len; i < b_len; i++) {
      if (b[i])
         return true;
   }

   return carry;
}
#define ubm_add_u32arr(dst, a, b) \
   _ubm_add_u32arr(dst, ARRAY_SIZE(dst), a, ARRAY_SIZE(a), b, ARRAY_SIZE(b))

static inline bool
_ubm_mul_u32arr(uint32_t *dst, unsigned dst_len,
                uint32_t *a, unsigned a_len,
                uint32_t *b, unsigned b_len)
{
   memset(dst, 0, dst_len * sizeof(*dst));

   bool overflow = false;

   for (unsigned i = 0; i < a_len; i++) {
      uint32_t carry = 0;
      for (unsigned j = 0; j < b_len; j++) {
         /* The maximum values of a[i] and b[i] are UINT32_MAX so the maximum
          * value of tmp is UINT32_MAX * UINT32_MAX.  The maximum value that
          * will fit in tmp is
          *
          *    UINT64_MAX = UINT32_MAX << 32 + UINT32_MAX
          *               = UINT32_MAX * (UINT32_MAX + 1) + UINT32_MAX
          *               = UINT32_MAX * UINT32_MAX + 2 * UINT32_MAX
          *
          * so we're guaranteed that we can add in two more 32-bit values
          * without overflowing tmp.
          */
         uint64_t tmp = (uint64_t)a[i] * (uint64_t)b[j];
         tmp += carry;
         if (i + j < dst_len) {
            tmp += dst[i + j];
            dst[i + j] = tmp;
            carry = tmp >> 32;
         } else {
            /* We're trying to write a value that doesn't fit */
            overflow = overflow || tmp > 0;
            break;
         }
      }
      if (i + b_len < dst_len)
         dst[i + b_len] = carry;
      else
         overflow = overflow || carry > 0;
   }

   return overflow;
}
#define ubm_mul_u32arr(dst, a, b) \
   _ubm_mul_u32arr(dst, ARRAY_SIZE(dst), a, ARRAY_SIZE(a), b, ARRAY_SIZE(b))

#endif /* UTIL_BIGMATH_H */