Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 1 | /* |
Gavin Howard | b5904bf | 2018-02-20 13:28:18 -0700 | [diff] [blame] | 2 | * ***************************************************************************** |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 3 | * |
Gavin Howard | 7345cb9 | 2019-04-08 14:13:43 -0600 | [diff] [blame] | 4 | * Copyright (c) 2018-2019 Gavin D. Howard and contributors. |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 5 | * |
Gavin Howard | 7345cb9 | 2019-04-08 14:13:43 -0600 | [diff] [blame] | 6 | * All rights reserved. |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 7 | * |
Gavin Howard | 7345cb9 | 2019-04-08 14:13:43 -0600 | [diff] [blame] | 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions are met: |
| 10 | * |
| 11 | * * Redistributions of source code must retain the above copyright notice, this |
| 12 | * list of conditions and the following disclaimer. |
| 13 | * |
| 14 | * * Redistributions in binary form must reproduce the above copyright notice, |
| 15 | * this list of conditions and the following disclaimer in the documentation |
| 16 | * and/or other materials provided with the distribution. |
| 17 | * |
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | * POSSIBILITY OF SUCH DAMAGE. |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 29 | * |
Gavin Howard | b5904bf | 2018-02-20 13:28:18 -0700 | [diff] [blame] | 30 | * ***************************************************************************** |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 31 | * |
| 32 | * Code for the number type. |
| 33 | * |
| 34 | */ |
| 35 | |
| 36 | #include <assert.h> |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 37 | #include <ctype.h> |
Gavin Howard | 411f732 | 2018-09-26 17:21:19 -0600 | [diff] [blame] | 38 | #include <stdbool.h> |
| 39 | #include <stdlib.h> |
| 40 | #include <string.h> |
Gavin Howard | 8e2cc69 | 2018-02-15 17:39:14 -0700 | [diff] [blame] | 41 | |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 42 | #include <limits.h> |
| 43 | |
Gavin Howard | 2949306 | 2018-03-20 19:57:37 -0600 | [diff] [blame] | 44 | #include <status.h> |
Gavin Howard | 3ba6c8d | 2018-02-15 12:23:35 -0700 | [diff] [blame] | 45 | #include <num.h> |
Gavin Howard | d555167 | 2018-09-22 19:52:42 -0600 | [diff] [blame] | 46 | #include <vm.h> |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 47 | |
Gavin Howard | 49ea7b6 | 2019-04-23 14:46:26 -0600 | [diff] [blame] | 48 | static BcStatus bc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale); |
| 49 | |
Gavin Howard | 56ebcf7 | 2019-02-21 16:59:48 -0700 | [diff] [blame] | 50 | static ssize_t bc_num_neg(size_t n, bool neg) { |
| 51 | return (((ssize_t) n) ^ -((ssize_t) neg)) + neg; |
| 52 | } |
| 53 | |
Gavin Howard | d2cf06a | 2019-02-21 17:03:24 -0700 | [diff] [blame] | 54 | ssize_t bc_num_cmpZero(const BcNum *n) { |
Gavin Howard | 56ebcf7 | 2019-02-21 16:59:48 -0700 | [diff] [blame] | 55 | return bc_num_neg((n)->len != 0, (n)->neg); |
Gavin Howard | 9d91b2c | 2019-02-21 16:55:32 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Gavin Howard | 7b7d2f3 | 2019-02-21 16:46:47 -0700 | [diff] [blame] | 58 | static size_t bc_num_int(const BcNum *n) { |
| 59 | return n->len ? n->len - n->rdx : 0; |
| 60 | } |
| 61 | |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 62 | static bool bc_num_isOne(const BcNum *n) { |
| 63 | return n->len == 1 && n->rdx == 0 && n->num[0] == 1; |
| 64 | } |
| 65 | |
Gavin Howard | 798508b | 2019-02-21 16:45:32 -0700 | [diff] [blame] | 66 | static void bc_num_expand(BcNum *restrict n, size_t req) { |
| 67 | assert(n); |
| 68 | req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE; |
| 69 | if (req > n->cap) { |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 70 | n->num = bc_vm_realloc(n->num, BC_NUM_SIZE(req)); |
Gavin Howard | 798508b | 2019-02-21 16:45:32 -0700 | [diff] [blame] | 71 | n->cap = req; |
| 72 | } |
| 73 | } |
| 74 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 75 | static void bc_num_setToZero(BcNum *restrict n, size_t scale) { |
Gavin Howard | a2514a0 | 2018-10-18 14:20:09 -0600 | [diff] [blame] | 76 | assert(n); |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 77 | n->scale = scale; |
| 78 | n->len = n->rdx = 0; |
Gavin Howard | 97102b1 | 2018-11-01 23:37:31 -0600 | [diff] [blame] | 79 | n->neg = false; |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 80 | } |
| 81 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 82 | static void bc_num_zero(BcNum *restrict n) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 83 | bc_num_setToZero(n, 0); |
Gavin Howard | 0be26ed | 2018-08-31 20:21:56 -0600 | [diff] [blame] | 84 | } |
| 85 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 86 | void bc_num_one(BcNum *restrict n) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 87 | bc_num_setToZero(n, 0); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 88 | n->len = 1; |
| 89 | n->num[0] = 1; |
Gavin Howard | 0be26ed | 2018-08-31 20:21:56 -0600 | [diff] [blame] | 90 | } |
| 91 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 92 | void bc_num_ten(BcNum *restrict n) { |
Gavin Howard | a2514a0 | 2018-10-18 14:20:09 -0600 | [diff] [blame] | 93 | assert(n); |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 94 | bc_num_setToZero(n, 0); |
Gavin Howard | d7e4d6e | 2019-04-24 17:33:48 -0600 | [diff] [blame] | 95 | #if BC_BASE_DIG == 10 |
Gavin Howard | b53a994 | 2019-04-25 11:33:54 -0600 | [diff] [blame] | 96 | n->len = 2; |
Gavin Howard | d7e4d6e | 2019-04-24 17:33:48 -0600 | [diff] [blame] | 97 | n->num[0] = 0; |
| 98 | n->num[1] = 1; |
| 99 | #else // BC_BASE_DIG == 10 |
Gavin Howard | b53a994 | 2019-04-25 11:33:54 -0600 | [diff] [blame] | 100 | n->len = 1; |
Stefan Eßer | 4b111c2 | 2019-04-24 17:23:08 -0600 | [diff] [blame] | 101 | n->num[0] = BC_BASE; |
Gavin Howard | d7e4d6e | 2019-04-24 17:33:48 -0600 | [diff] [blame] | 102 | #endif // BC_BASE_DIG == 10 |
Gavin Howard | 0be26ed | 2018-08-31 20:21:56 -0600 | [diff] [blame] | 103 | } |
| 104 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 105 | static size_t bc_num_log10(size_t i) { |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 106 | size_t len; |
Gavin Howard | 530e307 | 2019-04-23 16:23:36 -0600 | [diff] [blame] | 107 | for (len = 1; i; i /= BC_BASE, ++len); |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 108 | return len - 1; |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 109 | } |
| 110 | |
Gavin Howard | 445c189 | 2019-04-29 13:50:24 -0600 | [diff] [blame] | 111 | static size_t bc_num_int_digits(const BcNum *n) { |
| 112 | |
| 113 | size_t digits; |
| 114 | |
| 115 | digits = bc_num_int(n) * BC_BASE_POWER; |
| 116 | |
| 117 | if (digits > 0) |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 118 | digits -= BC_BASE_POWER - bc_num_log10((size_t) n->num[n->len - 1]); |
Gavin Howard | 445c189 | 2019-04-29 13:50:24 -0600 | [diff] [blame] | 119 | |
| 120 | return digits; |
| 121 | } |
| 122 | |
Stefan Esser | 914a7f6 | 2019-05-05 22:00:21 +0200 | [diff] [blame] | 123 | #define POW10N 9 |
Stefan Esser | 72109f4 | 2019-04-28 21:32:13 +0200 | [diff] [blame] | 124 | |
| 125 | static unsigned long pow10[POW10N] = { |
Stefan Esser | 72109f4 | 2019-04-28 21:32:13 +0200 | [diff] [blame] | 126 | 10, |
| 127 | 100, |
| 128 | 1000, |
| 129 | 10000, |
| 130 | 100000, |
| 131 | 1000000, |
| 132 | 10000000, |
| 133 | 100000000, |
| 134 | 1000000000, |
| 135 | }; |
| 136 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 137 | static unsigned long bc_num_pow10(unsigned long i) { |
Stefan Esser | 33a1c68 | 2019-04-29 13:00:23 +0200 | [diff] [blame] | 138 | if (i == 0) return 1; |
Stefan Esser | 914a7f6 | 2019-05-05 22:00:21 +0200 | [diff] [blame] | 139 | i--; |
Stefan Esser | 72109f4 | 2019-04-28 21:32:13 +0200 | [diff] [blame] | 140 | if (i < POW10N) return pow10[i]; |
Stefan Esser | 33a1c68 | 2019-04-29 13:00:23 +0200 | [diff] [blame] | 141 | i -= POW10N; |
Stefan Esser | 914a7f6 | 2019-05-05 22:00:21 +0200 | [diff] [blame] | 142 | if (i < POW10N) return pow10[POW10N - 1] * pow10[i]; |
Stefan Esser | 72109f4 | 2019-04-28 21:32:13 +0200 | [diff] [blame] | 143 | return -1; |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 144 | } |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 145 | |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 146 | static size_t bc_num_nonzeroLen(const BcNum *restrict n) { |
Gavin Howard | 08f7856 | 2019-04-29 07:56:04 -0600 | [diff] [blame] | 147 | size_t i, len = n->len; |
| 148 | assert(len == n->rdx); |
| 149 | for (i = len - 1; i < n->len && !n->num[i]; --len, --i); |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 150 | assert(len > 0); |
Gavin Howard | 08f7856 | 2019-04-29 07:56:04 -0600 | [diff] [blame] | 151 | return len; |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 152 | } |
| 153 | |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 154 | static unsigned long bc_num_addDigit(BcDig *restrict num, unsigned long d, |
| 155 | unsigned long c) |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 156 | { |
| 157 | d += c; |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 158 | *num = (BcDig) (d % BC_BASE_DIG); |
| 159 | assert(*num >= 0 && *num < BC_BASE_DIG); |
| 160 | return d / BC_BASE_DIG; |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | static BcStatus bc_num_addArrays(BcDig *restrict a, const BcDig *restrict b, |
| 164 | size_t len) |
| 165 | { |
| 166 | size_t i; |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 167 | unsigned long carry = 0; |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 168 | |
| 169 | for (i = 0; BC_NO_SIG && i < len; ++i) { |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 170 | unsigned long in = ((unsigned long) a[i]) + ((unsigned long) b[i]); |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 171 | carry = bc_num_addDigit(a + i, in, carry); |
| 172 | } |
| 173 | |
| 174 | for (; BC_NO_SIG && carry; ++i) |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 175 | carry = bc_num_addDigit(a + i, (unsigned long) a[i], carry); |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 176 | |
| 177 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
| 178 | } |
| 179 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 180 | static BcStatus bc_num_subArrays(BcDig *restrict a, const BcDig *restrict b, |
| 181 | size_t len) |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 182 | { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 183 | size_t i, j; |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 184 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 185 | for (i = 0; BC_NO_SIG && i < len; ++i) { |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 186 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 187 | for (a[i] -= b[i], j = 0; BC_NO_SIG && a[i + j] < 0;) { |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 188 | assert(a[i + j] >= -BC_BASE_DIG); |
| 189 | a[i + j++] += BC_BASE_DIG; |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 190 | a[i + j] -= 1; |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 191 | assert(a[i + j - 1] >= 0 && a[i + j - 1] < BC_BASE_DIG); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 192 | } |
| 193 | } |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 194 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 195 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
Gavin Howard | e1e7494 | 2018-03-20 15:51:52 -0600 | [diff] [blame] | 196 | } |
| 197 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 198 | static ssize_t bc_num_compare(const BcDig *restrict a, const BcDig *restrict b, |
| 199 | size_t len) |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 200 | { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 201 | size_t i; |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 202 | long c = 0; |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 203 | for (i = len - 1; BC_NO_SIG && i < len && !(c = a[i] - b[i]); --i); |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 204 | return BC_SIG ? BC_NUM_SSIZE_MIN : bc_num_neg(i + 1, c < 0); |
Gavin Howard | 08bf529 | 2018-03-20 14:59:33 -0600 | [diff] [blame] | 205 | } |
| 206 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 207 | ssize_t bc_num_cmp(const BcNum *a, const BcNum *b) { |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 208 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 209 | size_t i, min, a_int, b_int, diff; |
Gavin Howard | 8a921bd | 2018-10-11 14:15:32 -0600 | [diff] [blame] | 210 | BcDig *max_num, *min_num; |
Gavin Howard | 7fbb4e2 | 2018-10-18 11:43:17 -0600 | [diff] [blame] | 211 | bool a_max, neg = false; |
| 212 | ssize_t cmp; |
| 213 | |
| 214 | assert(a && b); |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 215 | |
Gavin Howard | 8a921bd | 2018-10-11 14:15:32 -0600 | [diff] [blame] | 216 | if (a == b) return 0; |
Gavin Howard | 56ebcf7 | 2019-02-21 16:59:48 -0700 | [diff] [blame] | 217 | if (BC_NUM_ZERO(a)) return bc_num_neg(b->len != 0, !b->neg); |
Gavin Howard | d2cf06a | 2019-02-21 17:03:24 -0700 | [diff] [blame] | 218 | if (BC_NUM_ZERO(b)) return bc_num_cmpZero(a); |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 219 | if (a->neg) { |
Gavin Howard | 7fbb4e2 | 2018-10-18 11:43:17 -0600 | [diff] [blame] | 220 | if (b->neg) neg = true; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 221 | else return -1; |
| 222 | } |
| 223 | else if (b->neg) return 1; |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 224 | |
Gavin Howard | 7b7d2f3 | 2019-02-21 16:46:47 -0700 | [diff] [blame] | 225 | a_int = bc_num_int(a); |
| 226 | b_int = bc_num_int(b); |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 227 | a_int -= b_int; |
| 228 | a_max = (a->rdx > b->rdx); |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 229 | |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 230 | if (a_int) return (ssize_t) a_int; |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 231 | |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 232 | if (a_max) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 233 | min = b->rdx; |
| 234 | diff = a->rdx - b->rdx; |
| 235 | max_num = a->num + diff; |
| 236 | min_num = b->num; |
| 237 | } |
| 238 | else { |
| 239 | min = a->rdx; |
| 240 | diff = b->rdx - a->rdx; |
| 241 | max_num = b->num + diff; |
| 242 | min_num = a->num; |
| 243 | } |
Gavin Howard | 4681d1b | 2018-03-05 19:49:33 -0700 | [diff] [blame] | 244 | |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 245 | cmp = bc_num_compare(max_num, min_num, b_int + min); |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 246 | if (cmp == BC_NUM_SSIZE_MIN) return cmp; |
Gavin Howard | 5eba0e8 | 2019-02-21 18:08:33 -0700 | [diff] [blame] | 247 | if (cmp) return bc_num_neg((size_t) cmp, !a_max == !neg); |
Gavin Howard | 021150b | 2018-03-10 15:40:42 -0700 | [diff] [blame] | 248 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 249 | for (max_num -= diff, i = diff - 1; BC_NO_SIG && i < diff; --i) { |
Gavin Howard | 5eba0e8 | 2019-02-21 18:08:33 -0700 | [diff] [blame] | 250 | if (max_num[i]) return bc_num_neg(1, !a_max == !neg); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 251 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 252 | |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 253 | return BC_SIG ? BC_NUM_SSIZE_MIN : 0; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 254 | } |
| 255 | |
Gavin Howard | 2a36692 | 2019-01-16 10:50:20 -0700 | [diff] [blame] | 256 | static void bc_num_clean(BcNum *restrict n) { |
| 257 | while (BC_NUM_NONZERO(n) && !n->num[n->len - 1]) --n->len; |
| 258 | if (BC_NUM_ZERO(n)) n->neg = false; |
| 259 | else if (n->len < n->rdx) n->len = n->rdx; |
| 260 | } |
| 261 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 262 | void bc_num_truncate(BcNum *restrict n, size_t places) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 263 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 264 | size_t places_rdx; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 265 | |
Stefan Esser | 70f1185 | 2019-04-27 10:39:00 +0200 | [diff] [blame] | 266 | if (!places) return; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 267 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 268 | places_rdx = n->rdx - BC_NUM_RDX(n->scale - places); |
| 269 | assert(places <= n->scale && (BC_NUM_ZERO(n) || places_rdx <= n->len)); |
| 270 | |
| 271 | n->scale -= places; |
| 272 | n->rdx -= places_rdx; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 273 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 274 | if (BC_NUM_NONZERO(n)) { |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 275 | |
Gavin Howard | c9bef2d | 2019-04-26 14:46:52 -0600 | [diff] [blame] | 276 | size_t pow; |
| 277 | |
| 278 | pow = n->scale % BC_BASE_POWER; |
| 279 | pow = pow ? BC_BASE_POWER - pow : 0; |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 280 | pow = bc_num_pow10(pow); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 281 | |
| 282 | n->len -= places_rdx; |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 283 | memmove(n->num, n->num + places_rdx, BC_NUM_SIZE(n->len)); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 284 | |
| 285 | // Clear the lower part of the last digit. |
Gavin Howard | da6b543 | 2019-04-26 14:33:43 -0600 | [diff] [blame] | 286 | if (BC_NUM_NONZERO(n)) n->num[0] -= n->num[0] % (BcDig) pow; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 287 | |
Gavin Howard | 2a36692 | 2019-01-16 10:50:20 -0700 | [diff] [blame] | 288 | bc_num_clean(n); |
Gavin Howard | 955da85 | 2018-10-23 11:08:20 -0600 | [diff] [blame] | 289 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Stefan Esser | 70f1185 | 2019-04-27 10:39:00 +0200 | [diff] [blame] | 292 | static void bc_num_extend(BcNum *restrict n, size_t places) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 293 | |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 294 | size_t places_rdx; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 295 | |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 296 | if (!places) return; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 297 | |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 298 | places_rdx = BC_NUM_RDX(places + n->scale) - n->rdx; |
| 299 | |
Gavin Howard | 8721e33 | 2019-05-06 08:02:49 -0600 | [diff] [blame] | 300 | if (places_rdx) { |
| 301 | bc_num_expand(n, bc_vm_growSize(n->len, places_rdx)); |
| 302 | memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); |
| 303 | memset(n->num, 0, BC_NUM_SIZE(places_rdx)); |
| 304 | } |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 305 | |
Gavin Howard | e6f326e | 2019-04-26 10:13:45 -0600 | [diff] [blame] | 306 | n->rdx += places_rdx; |
| 307 | n->scale += places; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 308 | n->len += places_rdx; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 309 | |
Gavin Howard | e6f326e | 2019-04-26 10:13:45 -0600 | [diff] [blame] | 310 | assert(n->rdx == BC_NUM_RDX(n->scale)); |
Stefan Esser | 193f852 | 2019-04-27 01:29:01 +0200 | [diff] [blame] | 311 | } |
| 312 | |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 313 | static void bc_num_roundPlaces(BcNum *restrict n, size_t places) { |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 314 | |
| 315 | size_t rdx, place, i; |
| 316 | BcDig p10, sum; |
| 317 | |
Stefan Eßer | 9ef891f | 2019-04-29 13:18:09 -0600 | [diff] [blame] | 318 | if (places >= n->scale || places >= n->rdx * BC_BASE_POWER) { |
Gavin Howard | 8721e33 | 2019-05-06 08:02:49 -0600 | [diff] [blame] | 319 | bc_num_extend(n, places - n->scale); |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 320 | return; |
Stefan Eßer | 9ef891f | 2019-04-29 13:18:09 -0600 | [diff] [blame] | 321 | } |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 322 | |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 323 | rdx = n->rdx - BC_NUM_RDX(places + 1); |
| 324 | place = BC_BASE_POWER - (places % BC_BASE_POWER + 1); |
| 325 | |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 326 | for (i = 0; i < rdx; i++) n->num[i] = 0; |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 327 | |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 328 | p10 = (BcDig) bc_num_pow10(place); |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 329 | sum = n->num[rdx] + (BC_BASE / 2) * p10; |
| 330 | sum = sum - sum % (BC_BASE * p10); |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 331 | |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 332 | if (sum < BC_BASE_DIG) n->num[rdx] = sum; |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 333 | else { |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 334 | |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 335 | sum -= BC_BASE_DIG; |
| 336 | n->num[rdx] = sum; |
| 337 | |
| 338 | do { |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 339 | rdx += 1; |
| 340 | |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 341 | if (n->len <= rdx) { |
Gavin Howard | e396dff | 2019-05-01 07:28:36 -0600 | [diff] [blame] | 342 | bc_num_expand(n, bc_vm_growSize(rdx, 1)); |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 343 | n->num[rdx] = 0; |
| 344 | n->len = rdx +1; |
| 345 | } |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 346 | |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 347 | sum = n->num[rdx] + 1; |
| 348 | n->num[rdx] = sum < BC_BASE_DIG ? sum : sum - BC_BASE_DIG; |
| 349 | } while (sum >= BC_BASE_DIG); |
| 350 | } |
Gavin Howard | b2d733b | 2019-04-29 13:20:45 -0600 | [diff] [blame] | 351 | |
| 352 | bc_num_truncate(n, n->scale - places); |
Stefan Esser | db97063 | 2019-04-28 14:58:58 +0200 | [diff] [blame] | 353 | } |
| 354 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 355 | static void bc_num_retireMul(BcNum *restrict n, size_t scale, |
| 356 | bool neg1, bool neg2) |
| 357 | { |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 358 | if (n->scale < scale) bc_num_extend(n, scale - n->scale); |
| 359 | else bc_num_truncate(n, n->scale - scale); |
Gavin Howard | 337fe60 | 2018-09-01 15:10:59 -0600 | [diff] [blame] | 360 | |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 361 | bc_num_clean(n); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 362 | if (BC_NUM_NONZERO(n)) n->neg = (!neg1 != !neg2); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 363 | } |
| 364 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 365 | static void bc_num_split(const BcNum *restrict n, size_t idx, |
| 366 | BcNum *restrict a, BcNum *restrict b) |
| 367 | { |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 368 | if (idx < n->len) { |
| 369 | |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 370 | b->len = n->len - idx; |
| 371 | a->len = idx; |
Gavin Howard | a3f260c | 2019-04-26 15:47:25 -0600 | [diff] [blame] | 372 | a->scale = a->rdx = b->scale = b->rdx = 0; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 373 | |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 374 | memcpy(b->num, n->num + idx, BC_NUM_SIZE(b->len)); |
| 375 | memcpy(a->num, n->num, BC_NUM_SIZE(idx)); |
Gavin Howard | 50c8002 | 2019-01-03 15:14:33 -0700 | [diff] [blame] | 376 | |
| 377 | bc_num_clean(b); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 378 | } |
Gavin Howard | 50c8002 | 2019-01-03 15:14:33 -0700 | [diff] [blame] | 379 | else bc_num_copy(a, n); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 380 | |
| 381 | bc_num_clean(a); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 382 | } |
| 383 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 384 | static size_t bc_num_shiftZero(BcNum *restrict n) { |
| 385 | |
| 386 | size_t i; |
| 387 | |
| 388 | assert(!n->rdx || BC_NUM_ZERO(n)); |
| 389 | |
| 390 | for (i = 0; i < n->len && !n->num[i]; ++i); |
| 391 | |
| 392 | n->len -= i; |
| 393 | n->num += i; |
| 394 | |
| 395 | return i; |
| 396 | } |
| 397 | |
Gavin Howard | 2e736de | 2019-04-27 06:41:58 -0600 | [diff] [blame] | 398 | static void bc_num_unshiftZero(BcNum *restrict n, size_t places_rdx) { |
| 399 | n->len += places_rdx; |
| 400 | n->num -= places_rdx; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 401 | } |
| 402 | |
Gavin Howard | be88459 | 2019-04-29 15:07:49 -0600 | [diff] [blame] | 403 | static BcStatus bc_num_shift(BcNum *restrict n, unsigned long dig) { |
| 404 | |
| 405 | size_t i, len = n->len; |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 406 | unsigned long carry = 0, pow; |
Gavin Howard | be88459 | 2019-04-29 15:07:49 -0600 | [diff] [blame] | 407 | BcDig *ptr = n->num; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 408 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 409 | assert(dig < BC_BASE_POWER); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 410 | |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 411 | pow = bc_num_pow10(dig); |
| 412 | dig = bc_num_pow10(BC_BASE_POWER - dig); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 413 | |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 414 | for (i = len - 1; BC_NO_SIG && i < len; --i) { |
| 415 | unsigned long in, temp; |
| 416 | in = ((unsigned long) ptr[i]); |
| 417 | temp = carry * dig; |
| 418 | carry = in % pow; |
| 419 | ptr[i] = ((BcDig) (in / pow)) + (BcDig) temp; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 420 | } |
| 421 | |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 422 | assert(!carry); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 423 | |
| 424 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
Gavin Howard | 337fe60 | 2018-09-01 15:10:59 -0600 | [diff] [blame] | 425 | } |
| 426 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 427 | static BcStatus bc_num_shiftLeft(BcNum *restrict n, size_t places) { |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 428 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 429 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 430 | unsigned long dig; |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 431 | size_t places_rdx; |
Gavin Howard | be88459 | 2019-04-29 15:07:49 -0600 | [diff] [blame] | 432 | bool shift; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 433 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 434 | if (!places) return s; |
Gavin Howard | abe4fdf | 2019-05-06 08:39:53 -0600 | [diff] [blame] | 435 | if (places > n->scale) { |
| 436 | size_t size = bc_vm_growSize(BC_NUM_RDX(places - n->scale), n->len); |
| 437 | if (size > SIZE_MAX - 1) return bc_vm_err(BC_ERROR_MATH_OVERFLOW); |
| 438 | } |
Gavin Howard | 4631f3a | 2019-04-30 10:48:40 -0600 | [diff] [blame] | 439 | if (BC_NUM_ZERO(n)) { |
| 440 | if (n->scale >= places) n->scale -= places; |
| 441 | else n->scale = 0; |
| 442 | return s; |
| 443 | } |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 444 | |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 445 | dig = (unsigned long) (places % BC_BASE_POWER); |
| 446 | shift = (dig != 0); |
Gavin Howard | 22253c7 | 2019-05-06 08:03:57 -0600 | [diff] [blame] | 447 | places_rdx = BC_NUM_RDX(places); |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 448 | |
Gavin Howard | 22253c7 | 2019-05-06 08:03:57 -0600 | [diff] [blame] | 449 | if (n->scale) { |
Gavin Howard | a187919 | 2019-04-30 18:55:08 -0600 | [diff] [blame] | 450 | |
| 451 | if (n->rdx >= places_rdx) { |
| 452 | |
| 453 | size_t mod = n->scale % BC_BASE_POWER, revdig; |
| 454 | |
| 455 | mod = mod ? mod : BC_BASE_POWER; |
| 456 | revdig = dig ? BC_BASE_POWER - dig : 0; |
| 457 | |
| 458 | if (mod + revdig > BC_BASE_POWER) places_rdx = 1; |
| 459 | else places_rdx = 0; |
| 460 | } |
| 461 | else places_rdx -= n->rdx; |
| 462 | } |
Gavin Howard | 4631f3a | 2019-04-30 10:48:40 -0600 | [diff] [blame] | 463 | |
| 464 | if (places_rdx) { |
Gavin Howard | e396dff | 2019-05-01 07:28:36 -0600 | [diff] [blame] | 465 | bc_num_expand(n, bc_vm_growSize(n->len, places_rdx)); |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 466 | memmove(n->num + places_rdx, n->num, BC_NUM_SIZE(n->len)); |
| 467 | memset(n->num, 0, BC_NUM_SIZE(places_rdx)); |
| 468 | n->len += places_rdx; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 469 | } |
Gavin Howard | 4631f3a | 2019-04-30 10:48:40 -0600 | [diff] [blame] | 470 | |
| 471 | if (places > n->scale) n->scale = n->rdx = 0; |
| 472 | else { |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 473 | n->scale -= places; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 474 | n->rdx = BC_NUM_RDX(n->scale); |
| 475 | } |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 476 | |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 477 | if (shift) s = bc_num_shift(n, BC_BASE_POWER - dig); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 478 | |
| 479 | bc_num_clean(n); |
| 480 | |
| 481 | return BC_SIG && !s ? BC_STATUS_SIGNAL : s; |
| 482 | } |
| 483 | |
| 484 | static BcStatus bc_num_shiftRight(BcNum *restrict n, size_t places) { |
| 485 | |
| 486 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 487 | unsigned long dig; |
| 488 | size_t places_rdx, scale, scale_mod, int_len, expand; |
| 489 | bool shift; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 490 | |
| 491 | if (!places) return s; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 492 | if (BC_NUM_ZERO(n)) { |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 493 | n->scale += places; |
| 494 | bc_num_expand(n, BC_NUM_RDX(n->scale)); |
| 495 | return s; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 496 | } |
| 497 | |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 498 | dig = (unsigned long) (places % BC_BASE_POWER); |
| 499 | shift = (dig != 0); |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 500 | scale = n->scale; |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 501 | scale_mod = scale % BC_BASE_POWER; |
| 502 | scale_mod = scale_mod ? scale_mod : BC_BASE_POWER; |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 503 | int_len = bc_num_int(n); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 504 | places_rdx = BC_NUM_RDX(places); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 505 | |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 506 | if (scale_mod + dig > BC_BASE_POWER) { |
| 507 | expand = places_rdx - 1; |
| 508 | places_rdx = 1; |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 509 | } |
| 510 | else { |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 511 | expand = places_rdx; |
| 512 | places_rdx = 0; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 515 | if (expand > int_len) expand -= int_len; |
| 516 | else expand = 0; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 517 | |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 518 | bc_num_extend(n, places_rdx * BC_BASE_POWER); |
Gavin Howard | e396dff | 2019-05-01 07:28:36 -0600 | [diff] [blame] | 519 | bc_num_expand(n, bc_vm_growSize(expand, n->len)); |
Gavin Howard | b5e6da9 | 2019-04-30 19:58:04 -0600 | [diff] [blame] | 520 | memset(n->num + n->len, 0, BC_NUM_SIZE(expand)); |
| 521 | n->len += expand; |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 522 | n->scale = n->rdx = 0; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 523 | |
Gavin Howard | 834fde1 | 2019-04-30 08:00:05 -0600 | [diff] [blame] | 524 | if (shift) s = bc_num_shift(n, dig); |
| 525 | |
| 526 | n->scale = scale + places; |
| 527 | n->rdx = BC_NUM_RDX(n->scale); |
| 528 | |
| 529 | bc_num_clean(n); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 530 | |
| 531 | assert(n->rdx <= n->len && n->len <= n->cap); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 532 | assert(n->rdx == BC_NUM_RDX(n->scale)); |
| 533 | |
| 534 | return BC_SIG && !s ? BC_STATUS_SIGNAL : s; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 535 | } |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 536 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 537 | static BcStatus bc_num_inv(BcNum *a, BcNum *b, size_t scale) { |
Gavin Howard | 9c4358c | 2018-03-22 20:11:28 -0600 | [diff] [blame] | 538 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 539 | BcNum one; |
Gavin Howard | d32d7df | 2018-10-15 08:42:25 -0600 | [diff] [blame] | 540 | BcDig num[2]; |
Gavin Howard | 9c4358c | 2018-03-22 20:11:28 -0600 | [diff] [blame] | 541 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 542 | assert(BC_NUM_NONZERO(a)); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 543 | |
Gavin Howard | d32d7df | 2018-10-15 08:42:25 -0600 | [diff] [blame] | 544 | one.cap = 2; |
| 545 | one.num = num; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 546 | bc_num_one(&one); |
Gavin Howard | 9c4358c | 2018-03-22 20:11:28 -0600 | [diff] [blame] | 547 | |
Gavin Howard | d32d7df | 2018-10-15 08:42:25 -0600 | [diff] [blame] | 548 | return bc_num_div(&one, a, b, scale); |
Gavin Howard | 9c4358c | 2018-03-22 20:11:28 -0600 | [diff] [blame] | 549 | } |
| 550 | |
Gavin Howard | 7bda478 | 2018-12-28 09:53:22 -0700 | [diff] [blame] | 551 | #if BC_ENABLE_EXTRA_MATH |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 552 | static BcStatus bc_num_intop(const BcNum *a, const BcNum *b, BcNum *restrict c, |
| 553 | unsigned long *v) |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 554 | { |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 555 | if (BC_ERR(b->rdx)) return bc_vm_err(BC_ERROR_MATH_NON_INTEGER); |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 556 | bc_num_copy(c, a); |
Gavin Howard | 7bda478 | 2018-12-28 09:53:22 -0700 | [diff] [blame] | 557 | return bc_num_ulong(b, v); |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 558 | } |
Gavin Howard | 7bda478 | 2018-12-28 09:53:22 -0700 | [diff] [blame] | 559 | #endif // BC_ENABLE_EXTRA_MATH |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 560 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 561 | static BcStatus bc_num_a(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 562 | |
Gavin Howard | 8a921bd | 2018-10-11 14:15:32 -0600 | [diff] [blame] | 563 | BcDig *ptr, *ptr_a, *ptr_b, *ptr_c; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 564 | size_t i, max, min_rdx, min_int, diff, a_int, b_int; |
Gavin Howard | 6fccd22 | 2019-04-26 10:17:02 -0600 | [diff] [blame] | 565 | unsigned long carry; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 566 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 567 | // Because this function doesn't need to use scale (per the bc spec), |
| 568 | // I am hijacking it to say whether it's doing an add or a subtract. |
Gavin Howard | 73cce1a | 2018-09-06 15:16:09 -0600 | [diff] [blame] | 569 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 570 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 571 | bc_num_copy(c, b); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 572 | if (sub && BC_NUM_NONZERO(c)) c->neg = !c->neg; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 573 | return BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 574 | } |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 575 | if (BC_NUM_ZERO(b)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 576 | bc_num_copy(c, a); |
| 577 | return BC_STATUS_SUCCESS; |
| 578 | } |
Gavin Howard | f6964a1 | 2018-03-14 10:52:31 -0600 | [diff] [blame] | 579 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 580 | c->neg = a->neg; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 581 | c->rdx = BC_MAX(a->rdx, b->rdx); |
Gavin Howard | fba50a2 | 2019-04-26 10:07:21 -0600 | [diff] [blame] | 582 | c->scale = BC_MAX(a->scale, b->scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 583 | min_rdx = BC_MIN(a->rdx, b->rdx); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 584 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 585 | if (a->rdx > b->rdx) { |
| 586 | diff = a->rdx - b->rdx; |
| 587 | ptr = a->num; |
| 588 | ptr_a = a->num + diff; |
| 589 | ptr_b = b->num; |
| 590 | } |
| 591 | else { |
| 592 | diff = b->rdx - a->rdx; |
| 593 | ptr = b->num; |
| 594 | ptr_a = a->num; |
| 595 | ptr_b = b->num + diff; |
| 596 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 597 | |
Gavin Howard | cafcd3e | 2019-01-22 09:54:24 -0700 | [diff] [blame] | 598 | for (ptr_c = c->num, i = 0; i < diff; ++i) ptr_c[i] = ptr[i]; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 599 | |
Gavin Howard | cafcd3e | 2019-01-22 09:54:24 -0700 | [diff] [blame] | 600 | c->len = diff; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 601 | ptr_c += diff; |
Gavin Howard | 7b7d2f3 | 2019-02-21 16:46:47 -0700 | [diff] [blame] | 602 | a_int = bc_num_int(a); |
| 603 | b_int = bc_num_int(b); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 604 | |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 605 | if (a_int > b_int) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 606 | min_int = b_int; |
| 607 | max = a_int; |
| 608 | ptr = ptr_a; |
| 609 | } |
| 610 | else { |
| 611 | min_int = a_int; |
| 612 | max = b_int; |
| 613 | ptr = ptr_b; |
| 614 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 615 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 616 | for (carry = 0, i = 0; BC_NO_SIG && i < min_rdx + min_int; ++i) { |
Gavin Howard | 6fccd22 | 2019-04-26 10:17:02 -0600 | [diff] [blame] | 617 | unsigned long in; |
| 618 | in = ((unsigned long) ptr_a[i]) + ((unsigned long) ptr_b[i]); |
Gavin Howard | dd7a0fd | 2019-01-22 09:56:46 -0700 | [diff] [blame] | 619 | carry = bc_num_addDigit(ptr_c + i, in, carry); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 620 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 621 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 622 | for (; BC_NO_SIG && i < max + min_rdx; ++i) |
Gavin Howard | 6fccd22 | 2019-04-26 10:17:02 -0600 | [diff] [blame] | 623 | carry = bc_num_addDigit(ptr_c + i, (unsigned long) ptr[i], carry); |
Gavin Howard | cafcd3e | 2019-01-22 09:54:24 -0700 | [diff] [blame] | 624 | |
| 625 | c->len += i; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 626 | |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 627 | if (carry) c->num[c->len++] = (BcDig) carry; |
Gavin Howard | 2ea7dc4 | 2018-05-22 14:02:02 -0600 | [diff] [blame] | 628 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 629 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 630 | } |
| 631 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 632 | static BcStatus bc_num_s(BcNum *a, BcNum *b, BcNum *restrict c, size_t sub) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 633 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 634 | BcStatus s; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 635 | ssize_t cmp; |
| 636 | BcNum *minuend, *subtrahend; |
| 637 | size_t start; |
| 638 | bool aneg, bneg, neg; |
Gavin Howard | a1c090a | 2018-03-05 14:20:33 -0700 | [diff] [blame] | 639 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 640 | // Because this function doesn't need to use scale (per the bc spec), |
| 641 | // I am hijacking it to say whether it's doing an add or a subtract. |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 642 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 643 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 644 | bc_num_copy(c, b); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 645 | if (sub && BC_NUM_NONZERO(c)) c->neg = !c->neg; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 646 | return BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 647 | } |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 648 | if (BC_NUM_ZERO(b)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 649 | bc_num_copy(c, a); |
| 650 | return BC_STATUS_SUCCESS; |
| 651 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 652 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 653 | aneg = a->neg; |
| 654 | bneg = b->neg; |
| 655 | a->neg = b->neg = false; |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 656 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 657 | cmp = bc_num_cmp(a, b); |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 658 | if (cmp == BC_NUM_SSIZE_MIN) return BC_STATUS_SIGNAL; |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 659 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 660 | a->neg = aneg; |
| 661 | b->neg = bneg; |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 662 | |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 663 | if (!cmp) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 664 | bc_num_setToZero(c, BC_MAX(a->rdx, b->rdx)); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 665 | return BC_STATUS_SUCCESS; |
| 666 | } |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 667 | |
| 668 | if (cmp > 0) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 669 | neg = a->neg; |
| 670 | minuend = a; |
| 671 | subtrahend = b; |
| 672 | } |
| 673 | else { |
| 674 | neg = b->neg; |
| 675 | if (sub) neg = !neg; |
| 676 | minuend = b; |
| 677 | subtrahend = a; |
| 678 | } |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 679 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 680 | bc_num_copy(c, minuend); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 681 | c->neg = neg; |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 682 | |
Gavin Howard | e6f326e | 2019-04-26 10:13:45 -0600 | [diff] [blame] | 683 | if (c->scale < subtrahend->scale) { |
| 684 | bc_num_extend(c, subtrahend->scale - c->scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 685 | start = 0; |
| 686 | } |
| 687 | else start = c->rdx - subtrahend->rdx; |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 688 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 689 | s = bc_num_subArrays(c->num + start, subtrahend->num, subtrahend->len); |
Gavin Howard | fa4983a | 2019-02-16 23:43:03 -0700 | [diff] [blame] | 690 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 691 | bc_num_clean(c); |
Gavin Howard | 9a6f7a4 | 2018-03-05 14:07:06 -0700 | [diff] [blame] | 692 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 693 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 694 | } |
| 695 | |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 696 | static BcStatus bc_num_m_simp(const BcNum *a, const BcNum *b, BcNum *restrict c) |
| 697 | { |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 698 | size_t i, alen = a->len, blen = b->len, clen; |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 699 | BcDig *ptr_a = a->num, *ptr_b = b->num, *ptr_c; |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 700 | unsigned long sum = 0, carry = 0; |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 701 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 702 | assert(sizeof(sum) >= sizeof(BcDig) * 2); |
Gavin Howard | b538d80 | 2019-04-23 16:50:55 -0600 | [diff] [blame] | 703 | assert(!a->rdx && !b->rdx); |
| 704 | |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 705 | clen = bc_vm_growSize(alen, blen); |
Gavin Howard | e396dff | 2019-05-01 07:28:36 -0600 | [diff] [blame] | 706 | bc_num_expand(c, bc_vm_growSize(clen, 1)); |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 707 | |
| 708 | ptr_c = c->num; |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 709 | memset(ptr_c, 0, BC_NUM_SIZE(c->cap)); |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 710 | |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 711 | for (i = 0; BC_NO_SIG && i < clen; ++i) { |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 712 | |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 713 | ssize_t sidx = (ssize_t) (i - blen + 1); |
| 714 | size_t j = (size_t) BC_MAX(0, sidx), k = BC_MIN(i, blen - 1); |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 715 | |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 716 | for (; BC_NO_SIG && j < alen && k < blen; ++j, --k) { |
Stefan Eßer | 4b111c2 | 2019-04-24 17:23:08 -0600 | [diff] [blame] | 717 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 718 | sum += ((unsigned long) ptr_a[j]) * ((unsigned long) ptr_b[k]); |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 719 | |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 720 | if (sum >= BC_BASE_DIG) { |
| 721 | carry += sum / BC_BASE_DIG; |
| 722 | sum %= BC_BASE_DIG; |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 723 | } |
| 724 | } |
Stefan Eßer | 4b111c2 | 2019-04-24 17:23:08 -0600 | [diff] [blame] | 725 | |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 726 | ptr_c[i] = (BcDig) sum; |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 727 | assert(ptr_c[i] < BC_BASE_DIG); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 728 | sum = carry; |
| 729 | carry = 0; |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 730 | } |
| 731 | |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 732 | if (sum) { |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 733 | assert(sum < BC_BASE_DIG); |
Gavin Howard | 12a7cd2 | 2019-04-24 07:10:14 -0600 | [diff] [blame] | 734 | ptr_c[clen] = (BcDig) sum; |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 735 | clen += 1; |
| 736 | } |
| 737 | |
| 738 | c->len = clen; |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 739 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
| 740 | } |
| 741 | |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 742 | static BcStatus bc_num_shiftAddSub(BcNum *restrict n, const BcNum *restrict a, |
| 743 | size_t shift, BcNumShiftAddOp op) |
| 744 | { |
| 745 | assert(n->len >= shift + a->len); |
| 746 | assert(!n->rdx && !a->rdx); |
| 747 | return op(n->num + shift, a->num, a->len); |
| 748 | } |
| 749 | |
| 750 | static BcStatus bc_num_k(BcNum *a, BcNum *b, BcNum *restrict c) { |
Gavin Howard | 773c86b | 2018-11-02 14:07:19 -0600 | [diff] [blame] | 751 | |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 752 | BcStatus s; |
Stefan Esser | 14eff46 | 2019-04-25 07:42:03 +0200 | [diff] [blame] | 753 | size_t max, max2, total; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 754 | BcNum l1, h1, l2, h2, m2, m1, z0, z1, z2, temp; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 755 | BcDig *digs, *dig_ptr; |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 756 | BcNumShiftAddOp op; |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 757 | bool aone = bc_num_isOne(a); |
Gavin Howard | 337fe60 | 2018-09-01 15:10:59 -0600 | [diff] [blame] | 758 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 759 | assert(BC_NUM_ZERO(c)); |
| 760 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 761 | // This is here because the function is recursive. |
Gavin Howard | 5083aec | 2019-04-23 18:03:46 -0600 | [diff] [blame] | 762 | if (BC_SIG) return BC_STATUS_SIGNAL; |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 763 | if (BC_NUM_ZERO(a) || BC_NUM_ZERO(b)) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 764 | bc_num_zero(c); |
| 765 | return BC_STATUS_SUCCESS; |
| 766 | } |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 767 | if (aone || bc_num_isOne(b)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 768 | bc_num_copy(c, aone ? b : a); |
| 769 | return BC_STATUS_SUCCESS; |
| 770 | } |
Gavin Howard | b5093d7 | 2018-10-17 12:13:17 -0600 | [diff] [blame] | 771 | if (a->len + b->len < BC_NUM_KARATSUBA_LEN || |
| 772 | a->len < BC_NUM_KARATSUBA_LEN || b->len < BC_NUM_KARATSUBA_LEN) |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 773 | { |
Gavin Howard | dc4e371 | 2019-04-23 14:56:29 -0600 | [diff] [blame] | 774 | return bc_num_m_simp(a, b, c); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 775 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 776 | |
Gavin Howard | e043250 | 2019-02-26 16:23:45 -0700 | [diff] [blame] | 777 | max = BC_MAX(a->len, b->len); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 778 | max = BC_MAX(max, BC_NUM_DEF_SIZE); |
Gavin Howard | e043250 | 2019-02-26 16:23:45 -0700 | [diff] [blame] | 779 | max2 = (max + 1) / 2; |
| 780 | |
Stefan Esser | 5fd43a3 | 2019-04-25 07:05:24 +0200 | [diff] [blame] | 781 | total = bc_vm_arraySize(BC_NUM_KARATSUBA_ALLOCS, max); |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 782 | digs = dig_ptr = bc_vm_malloc(BC_NUM_SIZE(total)); |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 783 | |
| 784 | bc_num_setup(&l1, dig_ptr, max); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 785 | dig_ptr += max; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 786 | bc_num_setup(&h1, dig_ptr, max); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 787 | dig_ptr += max; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 788 | bc_num_setup(&l2, dig_ptr, max); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 789 | dig_ptr += max; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 790 | bc_num_setup(&h2, dig_ptr, max); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 791 | dig_ptr += max; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 792 | bc_num_setup(&m1, dig_ptr, max); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 793 | dig_ptr += max; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 794 | bc_num_setup(&m2, dig_ptr, max); |
Gavin Howard | 5722302 | 2019-04-24 08:37:14 -0600 | [diff] [blame] | 795 | max = bc_vm_growSize(max, 1); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 796 | bc_num_init(&z0, max); |
| 797 | bc_num_init(&z1, max); |
| 798 | bc_num_init(&z2, max); |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 799 | max = bc_vm_growSize(max, max) + 1; |
| 800 | bc_num_init(&temp, max); |
Gavin Howard | 0dfe292 | 2018-05-22 13:57:02 -0600 | [diff] [blame] | 801 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 802 | bc_num_split(a, max2, &l1, &h1); |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 803 | bc_num_clean(&l1); |
| 804 | bc_num_clean(&h1); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 805 | bc_num_split(b, max2, &l2, &h2); |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 806 | bc_num_clean(&l2); |
| 807 | bc_num_clean(&h2); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 808 | |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 809 | bc_num_expand(c, max); |
| 810 | c->len = max; |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 811 | memset(c->num, 0, BC_NUM_SIZE(c->len)); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 812 | |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 813 | s = bc_num_sub(&h1, &l1, &m1, 0); |
| 814 | if (BC_ERR(s)) goto err; |
| 815 | s = bc_num_sub(&l2, &h2, &m2, 0); |
| 816 | if (BC_ERR(s)) goto err; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 817 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 818 | if (BC_NUM_NONZERO(&h1) && BC_NUM_NONZERO(&h2)) { |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 819 | |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 820 | s = bc_num_m(&h1, &h2, &z2, 0); |
| 821 | if (BC_ERR(s)) goto err; |
| 822 | bc_num_clean(&z2); |
| 823 | |
| 824 | s = bc_num_shiftAddSub(c, &z2, max2 * 2, bc_num_addArrays); |
| 825 | if (BC_ERR(s)) goto err; |
| 826 | s = bc_num_shiftAddSub(c, &z2, max2, bc_num_addArrays); |
| 827 | if (BC_ERR(s)) goto err; |
| 828 | } |
| 829 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 830 | if (BC_NUM_NONZERO(&l1) && BC_NUM_NONZERO(&l2)) { |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 831 | |
| 832 | s = bc_num_m(&l1, &l2, &z0, 0); |
| 833 | if (BC_ERR(s)) goto err; |
| 834 | bc_num_clean(&z0); |
| 835 | |
| 836 | s = bc_num_shiftAddSub(c, &z0, max2, bc_num_addArrays); |
| 837 | if (BC_ERR(s)) goto err; |
| 838 | s = bc_num_shiftAddSub(c, &z0, 0, bc_num_addArrays); |
| 839 | if (BC_ERR(s)) goto err; |
| 840 | } |
| 841 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 842 | if (BC_NUM_NONZERO(&m1) && BC_NUM_NONZERO(&m2)) { |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 843 | |
| 844 | s = bc_num_m(&m1, &m2, &z1, 0); |
| 845 | if (BC_ERR(s)) goto err; |
| 846 | bc_num_clean(&z1); |
| 847 | |
| 848 | op = (m1.neg != m2.neg) ? bc_num_subArrays : bc_num_addArrays; |
| 849 | s = bc_num_shiftAddSub(c, &z1, max2, op); |
| 850 | if (BC_ERR(s)) goto err; |
| 851 | } |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 852 | |
| 853 | err: |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 854 | free(digs); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 855 | bc_num_free(&temp); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 856 | bc_num_free(&z2); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 857 | bc_num_free(&z1); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 858 | bc_num_free(&z0); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 859 | return s; |
| 860 | } |
| 861 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 862 | static BcStatus bc_num_m(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) { |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 863 | |
| 864 | BcStatus s; |
| 865 | BcNum cpa, cpb; |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 866 | size_t ascale, bscale, ardx, brdx, azero = 0, bzero = 0, zero, len, rscale; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 867 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 868 | bc_num_setToZero(c, 0); |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 869 | ascale = a->scale; |
| 870 | bscale = b->scale; |
Stefan Esser | d793fa5 | 2019-04-28 12:30:47 +0200 | [diff] [blame] | 871 | scale = BC_MAX(scale, ascale); |
| 872 | scale = BC_MAX(scale, bscale); |
Stefan Esser | 45a5612 | 2019-04-27 23:45:48 +0200 | [diff] [blame] | 873 | |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 874 | rscale = ascale + bscale; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 875 | scale = BC_MIN(rscale, scale); |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 876 | bc_num_createCopy(&cpa, a); |
| 877 | bc_num_createCopy(&cpb, b); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 878 | |
Gavin Howard | 23d8d25 | 2018-10-17 12:03:41 -0600 | [diff] [blame] | 879 | cpa.neg = cpb.neg = false; |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 880 | ardx = cpa.rdx * BC_BASE_POWER; |
| 881 | s = bc_num_shiftLeft(&cpa, ardx); |
| 882 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 883 | bc_num_clean(&cpa); |
| 884 | azero = bc_num_shiftZero(&cpa); |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 885 | |
| 886 | brdx = cpb.rdx * BC_BASE_POWER; |
| 887 | s = bc_num_shiftLeft(&cpb, brdx); |
| 888 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 889 | bzero = bc_num_shiftZero(&cpb); |
| 890 | bc_num_clean(&cpb); |
| 891 | |
Gavin Howard | 14c354a | 2019-04-24 14:28:24 -0600 | [diff] [blame] | 892 | s = bc_num_k(&cpa, &cpb, c); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 893 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 894 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 895 | zero = bc_vm_growSize(azero, bzero); |
| 896 | len = bc_vm_growSize(c->len, zero); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 897 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 898 | bc_num_expand(c, len); |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 899 | s = bc_num_shiftLeft(c, (len - c->len) * BC_BASE_POWER); |
| 900 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 901 | s = bc_num_shiftRight(c, ardx + brdx); |
| 902 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 903 | bc_num_retireMul(c, scale, a->neg, b->neg); |
Gavin Howard | cf9f246 | 2019-04-27 06:43:57 -0600 | [diff] [blame] | 904 | |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 905 | err: |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 906 | bc_num_unshiftZero(&cpb, bzero); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 907 | bc_num_free(&cpb); |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 908 | bc_num_unshiftZero(&cpa, azero); |
Gavin Howard | 305249a | 2018-10-15 20:24:47 -0600 | [diff] [blame] | 909 | bc_num_free(&cpa); |
| 910 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 911 | } |
| 912 | |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 913 | #ifdef USE_GOLDSCHMIDT |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 914 | // find reciprocal value for paramezter in range 0.5 < val <= 1.0 |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 915 | static BcStatus bc_num_invert(BcNum *val, size_t scale) { // --> num.h <se> |
| 916 | |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 917 | BcNum one, x, temp, sum; |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 918 | bool done = false; |
| 919 | BcStatus s = BC_STATUS_SUCCESS; |
| 920 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 921 | // we need one constant value 1 to start ... |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 922 | bc_num_createFromUlong(&one, 1); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 923 | // create temporary variable used in each iteration step |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 924 | bc_num_init(&temp, scale / BC_BASE_POWER + 1); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 925 | // create variable to be squared per iteration |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 926 | bc_num_init(&x, scale / BC_BASE_POWER + 1); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 927 | // create variable for the sum the series elements |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 928 | bc_num_init(&sum, scale / BC_BASE_POWER + 1); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 929 | s = bc_num_sub(&one, val, &x, scale); |
| 930 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 931 | // initialize series sum to 1.0 + error |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 932 | s = bc_num_add(&one, &x, &sum, scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 933 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 934 | |
| 935 | for (;;) { |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 936 | // calculate square of delta for next iteration |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 937 | s = bc_num_mul(&x, &x, &x, scale); |
| 938 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 939 | // nothing left to do, if the squared delta truncated to "scale" decimals is 0.0 |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 940 | if BC_NUM_ZERO(&x) break; |
| 941 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 942 | // multiply current series sum with the squared delta |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 943 | s = bc_num_mul(&sum, &x, &temp, scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 944 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 945 | // add series element to sum |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 946 | s = bc_num_add(&sum, &temp, &sum, scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 947 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 948 | } |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 949 | // apply correction for finite number of series elements considered |
| 950 | // could be further optimized ... |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 951 | bc_num_mul(val, &sum, &temp, scale); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 952 | // the correction is derived from 1.0 - sum * (1/sum) |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 953 | bc_num_sub(&one, &temp, &temp, scale); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 954 | // add delta twice, we could also use Newton-Raphson for the correction |
Stefan Esser | b9db23b | 2019-05-04 18:02:15 +0200 | [diff] [blame] | 955 | bc_num_add(&sum, &temp, &sum, scale); |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 956 | bc_num_add(&sum, &temp, val, scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 957 | err: |
Stefan Esser | 85f59a6 | 2019-05-04 16:19:12 +0200 | [diff] [blame] | 958 | bc_num_free(&sum); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 959 | bc_num_free(&one); |
| 960 | bc_num_free(&x); |
| 961 | bc_num_free(&temp); |
| 962 | |
| 963 | return s; |
| 964 | } |
| 965 | |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 966 | // normalize number to have rdx == len and return the number of BcDigs the value has been shifted to the right (negative for left) |
| 967 | static int bc_num_normalize(BcNum *n) { |
| 968 | |
| 969 | int i, shift = 0; |
| 970 | ssize_t len, rdx; |
| 971 | |
| 972 | if (BC_NUM_ZERO(n)) return 0; |
| 973 | |
| 974 | len = n->len; |
| 975 | rdx = n->rdx; |
| 976 | |
| 977 | while (len > 0 && n->num[len - 1] == 0) |
| 978 | len--; |
| 979 | |
| 980 | n->len = len; |
| 981 | n->rdx = len; |
| 982 | n->scale += (len - rdx) * BC_BASE_POWER; |
| 983 | |
| 984 | return len - rdx; |
| 985 | } |
| 986 | |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 987 | static BcStatus bc_num_d(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 988 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 989 | BcStatus s = BC_STATUS_SUCCESS; |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 990 | size_t rdx, rscale, req; |
Stefan Esser | 6e129fc | 2019-04-27 23:41:21 +0200 | [diff] [blame] | 991 | ssize_t cmp; |
Stefan Esser | 193f852 | 2019-04-27 01:29:01 +0200 | [diff] [blame] | 992 | BcNum b1, f; |
| 993 | size_t factor, dividend, divisor; |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 994 | size_t i, j, mindivisor, temp_scale; |
| 995 | int shift; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 996 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 997 | if (BC_NUM_ZERO(b)) return bc_vm_err(BC_ERROR_MATH_DIVIDE_BY_ZERO); |
| 998 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 999 | bc_num_setToZero(c, scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1000 | return BC_STATUS_SUCCESS; |
| 1001 | } |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 1002 | if (bc_num_isOne(b)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1003 | bc_num_copy(c, a); |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 1004 | goto exit; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1005 | } |
Gavin Howard | b651f1a | 2018-02-28 17:34:18 -0700 | [diff] [blame] | 1006 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1007 | // scale that allows to represent all possible multiplication results |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1008 | temp_scale = BC_MAX(scale, BC_BASE_POWER * (a->len + b->len + 1)); |
Gavin Howard | b651f1a | 2018-02-28 17:34:18 -0700 | [diff] [blame] | 1009 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1010 | // create normalized copy of first argument in result variable "c" |
Gavin Howard | d1bea96 | 2019-05-06 12:55:21 -0600 | [diff] [blame] | 1011 | bc_num_copy(c, a); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1012 | // the shift value records be how many BcDigs the decimal has been shifted to the left |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1013 | shift = bc_num_normalize(c); |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1014 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1015 | // create normalized copy of first argument as temporary variable b1 |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1016 | bc_num_createCopy(&b1, b); |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1017 | // the shift value now records by how many BcDigs the result will need to be shifted |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1018 | shift -= bc_num_normalize(&b1); |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1019 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1020 | // set sign of (copies of the) operands to positive |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1021 | c->neg = false; |
| 1022 | b1.neg = false; |
Stefan Esser | 7099715 | 2019-04-28 15:50:14 +0200 | [diff] [blame] | 1023 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1024 | // compare normalized operands to determine whether the result of dividing them will be < or > 1 |
Stefan Esser | 6e129fc | 2019-04-27 23:41:21 +0200 | [diff] [blame] | 1025 | cmp = bc_num_cmp(&b1, c); |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1026 | if (cmp == 0) { |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1027 | // if the normalized values are identical the result will be a power of (10^BC_BASE_POWER) |
Gavin Howard | a8ab3e6 | 2019-05-06 13:18:33 -0600 | [diff] [blame] | 1028 | bc_num_ulong2num(c, 1); |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 1029 | } |
| 1030 | else { |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1031 | if (cmp > 0) //==> b > a, result will be one exp higher |
| 1032 | shift--; |
| 1033 | |
| 1034 | dividend = 1; |
| 1035 | divisor = 0; |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1036 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1037 | // calculate the maximum power of BC_BASE_DIG that will fit into a size_t |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1038 | for (i = 0; i < 19 / BC_BASE_POWER; i++) { |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1039 | dividend *= BC_BASE_DIG; |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1040 | } |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1041 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1042 | // determine the minimum number acceptable for the initial divide operation |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1043 | mindivisor = bc_num_pow10((19 - BC_BASE_POWER)/2); |
| 1044 | if (BC_BASE_POWER % 2 != 0) |
| 1045 | mindivisor *= 3; |
| 1046 | |
| 1047 | j = 0; |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1048 | for (i = 0; i < b1.len; i++) { |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1049 | if (divisor < mindivisor) { |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1050 | // accumulate BcDigs until the minimum desired divisor has been formed |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1051 | divisor *= BC_BASE_DIG; |
| 1052 | divisor += b1.num[b1.len - 1 - i]; |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 1053 | } |
| 1054 | else { |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1055 | if (b1.num[b1.len - 1 - i] != 0) |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1056 | // there were further non-zero digits not included in the divisor |
| 1057 | // account for them by incrementing the divisor just to be sure |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1058 | j = 1; |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1059 | } |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1060 | } |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1061 | divisor += j; |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1062 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1063 | // the quotient is used as the initial estimate of the (scaled) reciprocal value of the divisor |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1064 | factor = dividend / divisor; |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1065 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1066 | // Multiply the estimate of 1/B ("factor") with the actual value of B giving a result <= 1.0 |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1067 | bc_num_createFromUlong(&f, factor); |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1068 | bc_num_mul(&b1, &f, &b1, temp_scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 1069 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1070 | |
Stefan Esser | 7e21b3c | 2019-05-04 16:24:40 +0200 | [diff] [blame] | 1071 | if (b1.num[b1.len - 1] != 1) { |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1072 | // a correction is required, we multiply with the inverse of the error since we cannot divide ... |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1073 | b1.rdx = b1.len; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1074 | // calculate the inverse of the error to twice the number of decimals |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1075 | b1.scale = b1.rdx * BC_BASE_POWER; |
Stefan Esser | 7e21b3c | 2019-05-04 16:24:40 +0200 | [diff] [blame] | 1076 | s = bc_num_invert(&b1, temp_scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 1077 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1078 | // multiply with the correction factor (== the reciprocal value of the error factor) |
Stefan Esser | 7e21b3c | 2019-05-04 16:24:40 +0200 | [diff] [blame] | 1079 | bc_num_mul(&b1, c, c, temp_scale + BC_BASE_POWER); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 1080 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1081 | } |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1082 | // multiply the corrected reciprocal value of B with A to get A/B |
Stefan Esser | 40b53d2 | 2019-04-29 12:56:32 +0200 | [diff] [blame] | 1083 | bc_num_mul(&f, c, c, temp_scale); |
Stefan Esser | 154b473 | 2019-04-28 17:21:34 +0200 | [diff] [blame] | 1084 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1085 | // adjust the decimal point in such a way that the result is 1 <= C <= BC_BASE_DIG -1 |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1086 | c->rdx = c->len - 1; |
Stefan Esser | 4c1e43a | 2019-04-29 00:59:32 +0200 | [diff] [blame] | 1087 | c->scale = c->rdx * BC_BASE_POWER; |
Stefan Esser | 10bca11 | 2019-05-04 09:14:02 +0200 | [diff] [blame] | 1088 | bc_num_free(&f); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1089 | } |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 1090 | |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1091 | // adjust the decimal point to account for the normalization of the arguments A and B |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 1092 | if (shift > 0) |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1093 | bc_num_shiftLeft(c, shift * BC_BASE_POWER); |
Stefan Esser | f76f036 | 2019-04-29 21:28:52 +0200 | [diff] [blame] | 1094 | else |
Stefan Esser | b5aeb44 | 2019-04-27 23:33:08 +0200 | [diff] [blame] | 1095 | bc_num_shiftRight(c, -shift * BC_BASE_POWER); |
Stefan Esser | 193f852 | 2019-04-27 01:29:01 +0200 | [diff] [blame] | 1096 | err: |
Stefan Esser | 10bca11 | 2019-05-04 09:14:02 +0200 | [diff] [blame] | 1097 | bc_num_free(&b1); |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 1098 | exit: |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 1099 | if (BC_SIG) s = BC_STATUS_SIGNAL; |
Stefan Esser | 28ffb91 | 2019-05-04 23:50:38 +0200 | [diff] [blame] | 1100 | // adjust sign of the result from the preserved input parameters |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 1101 | if (BC_NO_ERR(!s)) bc_num_retireMul(c, scale, a->neg, b->neg); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1102 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1103 | } |
| 1104 | |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 1105 | #else // USE_GOLDSCHMIDT |
| 1106 | |
Stefan Eßer | daaaaa7 | 2019-04-27 18:04:02 -0600 | [diff] [blame] | 1107 | static BcStatus bc_num_d(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1108 | |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1109 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 24e3ee9 | 2019-05-06 07:41:45 -0600 | [diff] [blame] | 1110 | size_t rdx, rdx2, rscale, scale2, req; |
Stefan Eßer | daaaaa7 | 2019-04-27 18:04:02 -0600 | [diff] [blame] | 1111 | ssize_t cmp; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1112 | BcNum cpa, cpb, two, factor, factor2, *fi, *fnext, *temp; |
| 1113 | BcDig two_digs[2]; |
Gavin Howard | c542d0a | 2019-04-29 10:28:51 -0600 | [diff] [blame] | 1114 | bool aneg, bneg; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1115 | |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1116 | aneg = a->neg; |
| 1117 | bneg = b->neg; |
| 1118 | |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1119 | if (BC_NUM_ZERO(b)) return bc_vm_err(BC_ERROR_MATH_DIVIDE_BY_ZERO); |
| 1120 | if (BC_NUM_ZERO(a)) { |
| 1121 | bc_num_setToZero(c, scale); |
| 1122 | return BC_STATUS_SUCCESS; |
| 1123 | } |
| 1124 | if (bc_num_isOne(b)) { |
| 1125 | bc_num_copy(c, a); |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1126 | goto exit; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1127 | } |
| 1128 | |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1129 | a->neg = b->neg = false; |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1130 | cmp = bc_num_cmp(a, b); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1131 | |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1132 | if (cmp == BC_NUM_SSIZE_MIN) return BC_STATUS_SIGNAL; |
| 1133 | if (!cmp) { |
| 1134 | bc_num_one(c); |
| 1135 | goto exit; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1136 | } |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1137 | |
| 1138 | bc_num_createCopy(&cpa, a); |
| 1139 | bc_num_createCopy(&cpb, b); |
| 1140 | |
Gavin Howard | 24e3ee9 | 2019-05-06 07:41:45 -0600 | [diff] [blame] | 1141 | // This is to calculate enough digits to make rounding only happen when |
| 1142 | // necessary. It rounds the scale up to the next BcDig boundary, then adds |
| 1143 | // on enough to create a whole extra BcDig which will then be tested to see |
| 1144 | // if it's equal to BC_BASE_DIG - 1. If it is, then, and only then, should |
| 1145 | // rounding be needed. |
| 1146 | scale2 = BC_NUM_RDX(scale + 1) * BC_BASE_POWER + BC_BASE_POWER + 1; |
| 1147 | rdx2 = BC_NUM_RDX(scale2); |
| 1148 | req = bc_num_int(a) + rdx2 + 1; |
| 1149 | scale2 = rdx2 * BC_BASE_POWER; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1150 | bc_num_init(&factor, req); |
| 1151 | bc_num_init(&factor2, req); |
| 1152 | |
| 1153 | bc_num_setup(&two, two_digs, sizeof(two_digs) / sizeof(BcDig)); |
| 1154 | bc_num_one(&two); |
| 1155 | two.num[0] = 2; |
| 1156 | |
Gavin Howard | c542d0a | 2019-04-29 10:28:51 -0600 | [diff] [blame] | 1157 | if (b->rdx == b->len) { |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1158 | rdx = cpb.len - bc_num_nonzeroLen(&cpb); |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1159 | rscale = rdx * BC_BASE_POWER; |
| 1160 | s = bc_num_shiftLeft(&cpa, rscale); |
| 1161 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 1162 | s = bc_num_shiftLeft(&cpb, rscale); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1163 | } |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1164 | else { |
| 1165 | rdx = b->len - b->rdx; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1166 | rscale = rdx * BC_BASE_POWER; |
| 1167 | s = bc_num_shiftRight(&cpa, rscale); |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1168 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1169 | s = bc_num_shiftRight(&cpb, rscale); |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1170 | } |
Gavin Howard | 034b5b9 | 2019-04-27 07:28:56 -0600 | [diff] [blame] | 1171 | |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1172 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 1173 | |
| 1174 | req = bc_num_int(&cpa); |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1175 | if (!req) req = cpa.len - bc_num_nonzeroLen(&cpa); |
Gavin Howard | cef0397 | 2019-04-29 10:28:33 -0600 | [diff] [blame] | 1176 | req = BC_BASE_POWER * (req + 1); |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1177 | req += b->scale % BC_BASE_POWER == 0 ? BC_BASE_POWER : 0; |
Gavin Howard | 24e3ee9 | 2019-05-06 07:41:45 -0600 | [diff] [blame] | 1178 | req += scale2; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1179 | |
Gavin Howard | cef0397 | 2019-04-29 10:28:33 -0600 | [diff] [blame] | 1180 | rscale += req; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1181 | bc_num_extend(&cpa, req); |
| 1182 | bc_num_extend(&cpb, req); |
| 1183 | |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1184 | fi = &factor; |
| 1185 | fnext = &factor2; |
| 1186 | cmp = 1; |
| 1187 | |
| 1188 | while (!bc_num_isOne(fi) && cmp) { |
| 1189 | |
| 1190 | s = bc_num_sub(&two, &cpb, fi, rscale); |
| 1191 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 1192 | s = bc_num_mul(&cpa, fi, &cpa, rscale); |
| 1193 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 1194 | s = bc_num_mul(&cpb, fi, &cpb, rscale); |
| 1195 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
| 1196 | |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1197 | temp = fi; |
| 1198 | fi = fnext; |
| 1199 | fnext = temp; |
| 1200 | |
| 1201 | cmp = bc_num_cmp(fi, fnext); |
Gavin Howard | 24e3ee9 | 2019-05-06 07:41:45 -0600 | [diff] [blame] | 1202 | if (cmp == BC_NUM_SSIZE_MIN) goto err; |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1203 | } |
| 1204 | |
Gavin Howard | 24e3ee9 | 2019-05-06 07:41:45 -0600 | [diff] [blame] | 1205 | // We only round here if an entire BcDig is equal to BC_BASE_DIG - 1. We |
| 1206 | // have to round because without rounding, the Goldschmidt algorithm can |
| 1207 | // produce numbers that are 1 digit off in the last place, because of the |
| 1208 | // nature of the algorithm. That throws off things like negative powers |
| 1209 | // (like 10 ^ -1, which Goldschmidt calculates as 0.099999999...). The bc |
| 1210 | // spec requires truncation, but without this rounding, *more* calculations |
| 1211 | // will be off. To fix this, I have the algorithm calculate the result to |
| 1212 | // the scale plus 1 place plus a whole extra BcDig (at least). Then, when |
| 1213 | // rounding, I only round if the extra BcDig is only 1 less than the max, |
| 1214 | // and then I only add 1 to the right place (see bc_num_roundPlaces() for |
| 1215 | // more info). What this means is that if there is a chain of 9's from the |
| 1216 | // *actual* scale position to the rounded position, then rounding will |
| 1217 | // happen, but if not, the actual scale will not be affected (i.e., it will |
| 1218 | // appear truncated). By extending the calculation by 1 extra digit, then a |
| 1219 | // whole extra BcDig, I create a separation between the two that only is |
| 1220 | // closed when Goldschmidt has failed to calculate the exact truncated |
| 1221 | // number (or at least, I hope it does). |
| 1222 | assert(cpa.rdx >= rdx2); |
| 1223 | if (cpa.num[cpa.rdx - rdx2] == BC_BASE_DIG - 1) |
| 1224 | bc_num_roundPlaces(&cpa, scale2 - 1); |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1225 | bc_num_copy(c, &cpa); |
| 1226 | |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1227 | err: |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1228 | bc_num_free(&factor2); |
| 1229 | bc_num_free(&factor); |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1230 | bc_num_free(&cpb); |
| 1231 | bc_num_free(&cpa); |
| 1232 | exit: |
Gavin Howard | 36ec987 | 2019-04-29 10:14:21 -0600 | [diff] [blame] | 1233 | a->neg = aneg; |
| 1234 | b->neg = bneg; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1235 | if (BC_SIG) s = BC_STATUS_SIGNAL; |
Gavin Howard | fdbcd06 | 2019-04-29 07:36:46 -0600 | [diff] [blame] | 1236 | if (BC_NO_ERR(!s)) bc_num_retireMul(c, scale, a->neg, b->neg); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1237 | return s; |
| 1238 | } |
Stefan Esser | 4534283 | 2019-05-02 10:43:02 +0200 | [diff] [blame] | 1239 | #endif // USE_GOLDSCHMIDT |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1240 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1241 | static BcStatus bc_num_r(BcNum *a, BcNum *b, BcNum *restrict c, |
| 1242 | BcNum *restrict d, size_t scale, size_t ts) |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1243 | { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1244 | BcStatus s; |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1245 | BcNum temp; |
| 1246 | bool neg; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1247 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1248 | if (BC_NUM_ZERO(b)) return bc_vm_err(BC_ERROR_MATH_DIVIDE_BY_ZERO); |
| 1249 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | 99ca499 | 2019-01-02 13:48:49 -0700 | [diff] [blame] | 1250 | bc_num_setToZero(c, ts); |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 1251 | bc_num_setToZero(d, ts); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1252 | return BC_STATUS_SUCCESS; |
| 1253 | } |
Gavin Howard | 8b25487 | 2018-03-14 01:13:35 -0600 | [diff] [blame] | 1254 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1255 | bc_num_init(&temp, d->cap); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1256 | s = bc_num_d(a, b, c, scale); |
| 1257 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1258 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1259 | |
Gavin Howard | 996fc22 | 2019-04-29 13:22:38 -0600 | [diff] [blame] | 1260 | if (scale) scale = ts + 1; |
Gavin Howard | 3115c01 | 2018-10-04 10:53:56 -0600 | [diff] [blame] | 1261 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1262 | s = bc_num_m(c, b, &temp, scale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1263 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1264 | s = bc_num_sub(a, &temp, d, scale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1265 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 5d149cf | 2018-09-06 13:46:23 -0600 | [diff] [blame] | 1266 | |
Gavin Howard | 7744543 | 2019-04-26 15:59:33 -0600 | [diff] [blame] | 1267 | if (ts > d->scale && BC_NUM_NONZERO(d)) bc_num_extend(d, ts - d->scale); |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1268 | |
| 1269 | neg = d->neg; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1270 | bc_num_retireMul(d, ts, a->neg, b->neg); |
Gavin Howard | 996fc22 | 2019-04-29 13:22:38 -0600 | [diff] [blame] | 1271 | d->neg = BC_NUM_NONZERO(d) ? neg : false; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1272 | |
| 1273 | err: |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1274 | bc_num_free(&temp); |
| 1275 | return s; |
| 1276 | } |
| 1277 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1278 | static BcStatus bc_num_rem(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) |
| 1279 | { |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1280 | BcStatus s; |
| 1281 | BcNum c1; |
Gavin Howard | 798508b | 2019-02-21 16:45:32 -0700 | [diff] [blame] | 1282 | size_t ts; |
Gavin Howard | 1844108 | 2018-10-22 10:03:30 -0600 | [diff] [blame] | 1283 | |
Gavin Howard | 7744543 | 2019-04-26 15:59:33 -0600 | [diff] [blame] | 1284 | ts = bc_vm_growSize(scale, b->scale); |
| 1285 | ts = BC_MAX(ts, a->scale); |
Gavin Howard | 798508b | 2019-02-21 16:45:32 -0700 | [diff] [blame] | 1286 | |
| 1287 | bc_num_init(&c1, bc_num_mulReq(a, b, ts)); |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 1288 | s = bc_num_r(a, b, &c1, c, scale, ts); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1289 | bc_num_free(&c1); |
Gavin Howard | d64ce7b | 2018-10-24 16:20:20 -0600 | [diff] [blame] | 1290 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1291 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1292 | } |
| 1293 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1294 | static BcStatus bc_num_p(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1295 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1296 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1297 | BcNum copy; |
Gavin Howard | 510859c | 2019-01-07 09:14:01 -0700 | [diff] [blame] | 1298 | unsigned long pow = 0; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1299 | size_t i, powrdx, resrdx; |
| 1300 | bool neg, zero; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1301 | |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 1302 | if (BC_ERR(b->rdx)) return bc_vm_err(BC_ERROR_MATH_NON_INTEGER); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1303 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1304 | if (BC_NUM_ZERO(b)) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1305 | bc_num_one(c); |
Gavin Howard | 61abdbe | 2018-10-22 13:05:38 -0600 | [diff] [blame] | 1306 | return BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1307 | } |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1308 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 1309 | bc_num_setToZero(c, scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1310 | return BC_STATUS_SUCCESS; |
| 1311 | } |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 1312 | if (bc_num_isOne(b)) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1313 | if (!b->neg) bc_num_copy(c, a); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1314 | else s = bc_num_inv(a, c, scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1315 | return s; |
| 1316 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1317 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1318 | neg = b->neg; |
| 1319 | b->neg = false; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1320 | s = bc_num_ulong(b, &pow); |
Gavin Howard | fb14efc | 2018-12-22 14:01:58 -0700 | [diff] [blame] | 1321 | b->neg = neg; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1322 | if (s) return s; |
| 1323 | |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 1324 | bc_num_createCopy(©, a); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1325 | |
Stefan Esser | c66e448 | 2019-04-29 14:24:31 +0200 | [diff] [blame] | 1326 | if (!neg) scale = BC_MIN(a->scale * pow, BC_MAX(scale, a->scale)); |
Gavin Howard | b29674f | 2018-03-22 22:24:58 -0600 | [diff] [blame] | 1327 | |
Stefan Esser | c66e448 | 2019-04-29 14:24:31 +0200 | [diff] [blame] | 1328 | for (powrdx = a->scale; BC_NO_SIG && !(pow & 1); pow >>= 1) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1329 | powrdx <<= 1; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1330 | s = bc_num_mul(©, ©, ©, powrdx); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1331 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1332 | } |
Gavin Howard | 6fb635f | 2018-03-03 12:45:42 -0700 | [diff] [blame] | 1333 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1334 | if (BC_SIG) goto sig_err; |
Gavin Howard | 6fb635f | 2018-03-03 12:45:42 -0700 | [diff] [blame] | 1335 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1336 | bc_num_copy(c, ©); |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 1337 | resrdx = powrdx; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1338 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1339 | while (BC_NO_SIG && (pow >>= 1)) { |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1340 | |
Gavin Howard | 4d5daba | 2019-01-07 14:42:50 -0700 | [diff] [blame] | 1341 | powrdx <<= 1; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1342 | s = bc_num_mul(©, ©, ©, powrdx); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1343 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1344 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1345 | if (pow & 1) { |
| 1346 | resrdx += powrdx; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1347 | s = bc_num_mul(c, ©, c, resrdx); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1348 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1349 | } |
| 1350 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1351 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1352 | if (BC_SIG) goto sig_err; |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1353 | if (neg) { |
| 1354 | s = bc_num_inv(c, c, scale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1355 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1356 | } |
| 1357 | |
Stefan Esser | c66e448 | 2019-04-29 14:24:31 +0200 | [diff] [blame] | 1358 | if (c->scale > scale) bc_num_truncate(c, c->scale - scale); |
Gavin Howard | 1d95915 | 2018-03-03 23:33:13 -0700 | [diff] [blame] | 1359 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1360 | // We can't use bc_num_clean() here. |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1361 | for (zero = true, i = 0; zero && i < c->len; ++i) zero = !c->num[i]; |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 1362 | if (zero) bc_num_setToZero(c, scale); |
Gavin Howard | 1d95915 | 2018-03-03 23:33:13 -0700 | [diff] [blame] | 1363 | |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1364 | sig_err: |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1365 | if (BC_NO_ERR(!s) && BC_SIG) s = BC_STATUS_SIGNAL; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1366 | err: |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1367 | bc_num_free(©); |
| 1368 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
Gavin Howard | 7bda478 | 2018-12-28 09:53:22 -0700 | [diff] [blame] | 1371 | #if BC_ENABLE_EXTRA_MATH |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1372 | static BcStatus bc_num_place(BcNum *a, BcNum *b, BcNum *restrict c, |
| 1373 | size_t scale) |
| 1374 | { |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1375 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 510859c | 2019-01-07 09:14:01 -0700 | [diff] [blame] | 1376 | unsigned long val = 0; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1377 | |
| 1378 | BC_UNUSED(scale); |
| 1379 | |
| 1380 | s = bc_num_intop(a, b, c, &val); |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 1381 | if (BC_ERR(s)) return s; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1382 | |
Gavin Howard | c9bef2d | 2019-04-26 14:46:52 -0600 | [diff] [blame] | 1383 | if (val < c->scale) bc_num_truncate(c, c->scale - val); |
| 1384 | else if (val > c->scale) bc_num_extend(c, val - c->scale); |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1385 | |
| 1386 | return s; |
| 1387 | } |
| 1388 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1389 | static BcStatus bc_num_left(BcNum *a, BcNum *b, BcNum *restrict c, size_t scale) |
| 1390 | { |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1391 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 510859c | 2019-01-07 09:14:01 -0700 | [diff] [blame] | 1392 | unsigned long val = 0; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1393 | |
| 1394 | BC_UNUSED(scale); |
| 1395 | |
| 1396 | s = bc_num_intop(a, b, c, &val); |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 1397 | if (BC_ERR(s)) return s; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1398 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1399 | return bc_num_shiftLeft(c, (size_t) val); |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1400 | } |
| 1401 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1402 | static BcStatus bc_num_right(BcNum *a, BcNum *b, BcNum *restrict c, |
| 1403 | size_t scale) |
| 1404 | { |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1405 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 510859c | 2019-01-07 09:14:01 -0700 | [diff] [blame] | 1406 | unsigned long val = 0; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1407 | |
| 1408 | BC_UNUSED(scale); |
| 1409 | |
| 1410 | s = bc_num_intop(a, b, c, &val); |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 1411 | if (BC_ERR(s)) return s; |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1412 | |
Gavin Howard | 2a36692 | 2019-01-16 10:50:20 -0700 | [diff] [blame] | 1413 | if (BC_NUM_ZERO(c)) return s; |
| 1414 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1415 | return bc_num_shiftRight(c, (size_t) val); |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1416 | } |
Gavin Howard | 7bda478 | 2018-12-28 09:53:22 -0700 | [diff] [blame] | 1417 | #endif // BC_ENABLE_EXTRA_MATH |
Gavin Howard | ac4d912 | 2018-12-27 23:59:12 -0700 | [diff] [blame] | 1418 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1419 | static BcStatus bc_num_binary(BcNum *a, BcNum *b, BcNum *c, size_t scale, |
| 1420 | BcNumBinaryOp op, size_t req) |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1421 | { |
Gavin Howard | a1c4439 | 2018-09-27 12:41:15 -0600 | [diff] [blame] | 1422 | BcStatus s; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1423 | BcNum num2, *ptr_a, *ptr_b; |
| 1424 | bool init = false; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1425 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1426 | assert(a && b && c && op); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1427 | |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 1428 | if (c == a) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1429 | ptr_a = &num2; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 1430 | memcpy(ptr_a, c, sizeof(BcNum)); |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 1431 | init = true; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1432 | } |
| 1433 | else ptr_a = a; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1434 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1435 | if (c == b) { |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 1436 | ptr_b = &num2; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 1437 | if (c != a) { |
| 1438 | memcpy(ptr_b, c, sizeof(BcNum)); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1439 | init = true; |
| 1440 | } |
| 1441 | } |
| 1442 | else ptr_b = b; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1443 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1444 | if (init) bc_num_init(c, req); |
| 1445 | else bc_num_expand(c, req); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1446 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1447 | s = op(ptr_a, ptr_b, c, scale); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1448 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1449 | assert(!c->neg || BC_NUM_NONZERO(c)); |
Gavin Howard | 87c29c7 | 2019-03-28 11:22:51 -0600 | [diff] [blame] | 1450 | assert(c->rdx <= c->len || !c->len || s); |
Gavin Howard | 3cf769e | 2018-10-11 13:55:11 -0600 | [diff] [blame] | 1451 | |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 1452 | if (init) bc_num_free(&num2); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1453 | |
Gavin Howard | ee9d01e | 2019-02-16 22:48:11 -0700 | [diff] [blame] | 1454 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1455 | } |
| 1456 | |
Gavin Howard | c90ed90 | 2019-01-02 13:07:49 -0700 | [diff] [blame] | 1457 | #ifndef NDEBUG |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1458 | static bool bc_num_strValid(const char *val) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1459 | |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1460 | bool radix = false; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1461 | size_t i, len = strlen(val); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1462 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1463 | if (!len) return true; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1464 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1465 | for (i = 0; i < len; ++i) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1466 | |
Gavin Howard | 8a921bd | 2018-10-11 14:15:32 -0600 | [diff] [blame] | 1467 | BcDig c = val[i]; |
Gavin Howard | f6e3fb3 | 2018-08-09 13:48:59 -0600 | [diff] [blame] | 1468 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1469 | if (c == '.') { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1470 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1471 | if (radix) return false; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1472 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1473 | radix = true; |
| 1474 | continue; |
| 1475 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1476 | |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1477 | if (!(isdigit(c) || isupper(c))) return false; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1478 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1479 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1480 | return true; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1481 | } |
Gavin Howard | c90ed90 | 2019-01-02 13:07:49 -0700 | [diff] [blame] | 1482 | #endif // NDEBUG |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1483 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1484 | static unsigned long bc_num_parseChar(char c, size_t base_t) { |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1485 | |
| 1486 | if (isupper(c)) { |
| 1487 | c = BC_NUM_NUM_LETTER(c); |
Gavin Howard | 6193aaf | 2019-01-03 16:44:04 -0700 | [diff] [blame] | 1488 | c = ((size_t) c) >= base_t ? (char) base_t - 1 : c; |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1489 | } |
| 1490 | else c -= '0'; |
| 1491 | |
| 1492 | return (unsigned long) (uchar) c; |
| 1493 | } |
| 1494 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1495 | static void bc_num_parseDecimal(BcNum *restrict n, const char *restrict val) { |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1496 | |
Gavin Howard | 3b60abb | 2019-04-26 08:49:17 -0600 | [diff] [blame] | 1497 | size_t len, i, temp, mod; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1498 | const char *ptr; |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1499 | bool zero = true, rdx; |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 1500 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1501 | for (i = 0; val[i] == '0'; ++i); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1502 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1503 | val += i; |
Gavin Howard | 46a7d8d | 2019-05-06 15:16:12 -0600 | [diff] [blame] | 1504 | assert(!val[0] || isalnum(val[0]) || val[0] == '.'); |
| 1505 | |
| 1506 | // All 0's. We can just return, since this |
| 1507 | // procedure expects a virgin (already 0) BcNum. |
| 1508 | if (!val[0]) return; |
| 1509 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1510 | len = strlen(val); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1511 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1512 | ptr = strchr(val, '.'); |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1513 | rdx = (ptr != NULL); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1514 | |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1515 | for (i = 0; i < len && (zero = (val[i] == '0' || val[i] == '.')); ++i); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1516 | |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1517 | n->scale = (size_t) (rdx * ((val + len) - (ptr + 1))); |
Gavin Howard | 1c1697c | 2019-04-26 10:07:45 -0600 | [diff] [blame] | 1518 | n->rdx = BC_NUM_RDX(n->scale); |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1519 | |
Gavin Howard | 3b60abb | 2019-04-26 08:49:17 -0600 | [diff] [blame] | 1520 | i = len - (ptr == val ? 0 : i) - rdx; |
Gavin Howard | 48a0e47 | 2019-04-26 15:39:46 -0600 | [diff] [blame] | 1521 | temp = BC_NUM_ROUND_POW(i); |
Gavin Howard | 3b60abb | 2019-04-26 08:49:17 -0600 | [diff] [blame] | 1522 | mod = n->scale % BC_BASE_POWER; |
| 1523 | i = mod ? BC_BASE_POWER - mod : 0; |
| 1524 | n->len = ((temp + i) / BC_BASE_POWER); |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1525 | |
| 1526 | bc_num_expand(n, n->len); |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 1527 | memset(n->num, 0, BC_NUM_SIZE(n->len)); |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1528 | |
Gavin Howard | 6076dbb | 2019-04-26 09:47:50 -0600 | [diff] [blame] | 1529 | if (zero) n->len = n->rdx = 0; |
| 1530 | else { |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1531 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 1532 | unsigned long exp, pow; |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1533 | |
Gavin Howard | 3b60abb | 2019-04-26 08:49:17 -0600 | [diff] [blame] | 1534 | exp = i; |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 1535 | pow = bc_num_pow10(exp); |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1536 | |
| 1537 | for (i = len - 1; i < len; --i, ++exp) { |
Gavin Howard | 8dd307e | 2019-01-08 23:05:19 -0700 | [diff] [blame] | 1538 | |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1539 | char c = val[i]; |
Gavin Howard | 8dd307e | 2019-01-08 23:05:19 -0700 | [diff] [blame] | 1540 | |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1541 | if (c == '.') exp -= 1; |
Gavin Howard | 8dd307e | 2019-01-08 23:05:19 -0700 | [diff] [blame] | 1542 | else { |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1543 | |
| 1544 | size_t idx = exp / BC_BASE_POWER; |
| 1545 | |
Gavin Howard | 8dd307e | 2019-01-08 23:05:19 -0700 | [diff] [blame] | 1546 | if (isupper(c)) c = '9'; |
Gavin Howard | f196fbe | 2019-04-26 08:49:05 -0600 | [diff] [blame] | 1547 | n->num[idx] += (((unsigned long) c) - '0') * pow; |
Gavin Howard | d43ec37 | 2019-04-25 21:13:54 -0600 | [diff] [blame] | 1548 | |
| 1549 | if ((exp + 1) % BC_BASE_POWER == 0) pow = 1; |
| 1550 | else pow *= BC_BASE; |
Gavin Howard | 8dd307e | 2019-01-08 23:05:19 -0700 | [diff] [blame] | 1551 | } |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1552 | } |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1553 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1554 | } |
| 1555 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1556 | static BcStatus bc_num_parseBase(BcNum *restrict n, const char *restrict val, |
| 1557 | BcNum *restrict base, size_t base_t) |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1558 | { |
| 1559 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1560 | BcNum temp, mult, result; |
Gavin Howard | 7744543 | 2019-04-26 15:59:33 -0600 | [diff] [blame] | 1561 | char c = 0; |
Gavin Howard | 11b9afd | 2018-10-18 14:23:28 -0600 | [diff] [blame] | 1562 | bool zero = true; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1563 | unsigned long v; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1564 | size_t i, digs, len = strlen(val); |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1565 | |
Gavin Howard | 11b9afd | 2018-10-18 14:23:28 -0600 | [diff] [blame] | 1566 | for (i = 0; zero && i < len; ++i) zero = (val[i] == '.' || val[i] == '0'); |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1567 | if (zero) return BC_STATUS_SUCCESS; |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1568 | |
Gavin Howard | 26d078f | 2019-01-24 13:58:12 -0700 | [diff] [blame] | 1569 | bc_num_init(&temp, BC_NUM_LONG_LOG10); |
| 1570 | bc_num_init(&mult, BC_NUM_LONG_LOG10); |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1571 | |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1572 | for (i = 0; i < len && (c = val[i]) && c != '.'; ++i) { |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1573 | |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1574 | v = bc_num_parseChar(c, base_t); |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1575 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1576 | s = bc_num_mul(n, base, &mult, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1577 | if (BC_ERROR_SIGNAL_ONLY(s)) goto int_err; |
Gavin Howard | 705c4bc | 2018-12-03 15:38:04 -0700 | [diff] [blame] | 1578 | bc_num_ulong2num(&temp, v); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1579 | s = bc_num_add(&mult, &temp, n, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1580 | if (BC_ERROR_SIGNAL_ONLY(s)) goto int_err; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1581 | } |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1582 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1583 | if (i == len && !(c = val[i])) goto int_err; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1584 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1585 | assert(c == '.'); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1586 | bc_num_init(&result, base->len); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1587 | bc_num_one(&mult); |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1588 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1589 | for (i += 1, digs = 0; BC_NO_SIG && i < len && (c = val[i]); ++i, ++digs) |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 1590 | { |
Gavin Howard | c7d655b | 2018-12-28 19:45:13 -0700 | [diff] [blame] | 1591 | v = bc_num_parseChar(c, base_t); |
Gavin Howard | 9b80163 | 2019-02-16 23:34:06 -0700 | [diff] [blame] | 1592 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1593 | s = bc_num_mul(&result, base, &result, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1594 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1595 | |
Gavin Howard | 705c4bc | 2018-12-03 15:38:04 -0700 | [diff] [blame] | 1596 | bc_num_ulong2num(&temp, v); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1597 | s = bc_num_add(&result, &temp, &result, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1598 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1599 | s = bc_num_mul(&mult, base, &mult, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1600 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1601 | } |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1602 | |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 1603 | if (BC_SIG) { |
| 1604 | s = BC_STATUS_SIGNAL; |
| 1605 | goto err; |
| 1606 | } |
| 1607 | |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1608 | // This one cannot be a divide by 0 because mult starts out at 1, then is |
| 1609 | // multiplied by base, and base cannot be 0, so mult cannot be 0. |
Gavin Howard | 8b4656f | 2019-04-30 21:18:00 -0600 | [diff] [blame] | 1610 | s = bc_num_div(&result, &mult, &result, digs * 2); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1611 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1612 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 8b4656f | 2019-04-30 21:18:00 -0600 | [diff] [blame] | 1613 | bc_num_truncate(&result, digs); |
Stefan Esser | 276de8c | 2019-05-04 20:12:43 +0200 | [diff] [blame] | 1614 | //bc_num_truncate(&result, result.scale - digs); // <se> is this a fixed version of the line above? |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1615 | s = bc_num_add(n, &result, n, digs); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1616 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | d141768 | 2019-02-15 17:08:42 -0700 | [diff] [blame] | 1617 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1618 | if (BC_NUM_NONZERO(n)) { |
Gavin Howard | b0642be | 2019-04-30 21:12:22 -0600 | [diff] [blame] | 1619 | if (n->scale < digs) bc_num_extend(n, digs - n->scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1620 | } |
| 1621 | else bc_num_zero(n); |
Gavin Howard | ede51f0 | 2018-03-02 12:30:00 -0700 | [diff] [blame] | 1622 | |
Gavin Howard | d141768 | 2019-02-15 17:08:42 -0700 | [diff] [blame] | 1623 | err: |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1624 | bc_num_free(&result); |
| 1625 | int_err: |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1626 | bc_num_free(&mult); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1627 | bc_num_free(&temp); |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1628 | return s; |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1629 | } |
| 1630 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1631 | static void bc_num_printNewline() { |
Gavin Howard | 6193aaf | 2019-01-03 16:44:04 -0700 | [diff] [blame] | 1632 | if (vm->nchars >= (size_t) (vm->line_len - 1)) { |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 1633 | bc_vm_putchar('\\'); |
| 1634 | bc_vm_putchar('\n'); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1635 | vm->nchars = 0; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1636 | } |
Gavin Howard | 80977b2 | 2018-09-06 14:29:13 -0600 | [diff] [blame] | 1637 | } |
| 1638 | |
Gavin Howard | 40a085f | 2018-12-03 12:08:59 -0700 | [diff] [blame] | 1639 | #if DC_ENABLED |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1640 | static void bc_num_printChar(size_t n, size_t len, bool rdx) { |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1641 | BC_UNUSED(rdx); |
| 1642 | bc_vm_putchar((uchar) n); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1643 | vm->nchars += len; |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1644 | } |
| 1645 | #endif // DC_ENABLED |
| 1646 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1647 | static void bc_num_printDigits(size_t n, size_t len, bool rdx) { |
| 1648 | |
Gavin Howard | a84ad99 | 2018-12-03 19:11:06 -0700 | [diff] [blame] | 1649 | size_t exp, pow; |
Gavin Howard | 80977b2 | 2018-09-06 14:29:13 -0600 | [diff] [blame] | 1650 | |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1651 | bc_num_printNewline(); |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1652 | bc_vm_putchar(rdx ? '.' : ' '); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1653 | ++vm->nchars; |
Gavin Howard | 2ed2bfb | 2018-03-14 02:42:32 -0600 | [diff] [blame] | 1654 | |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1655 | bc_num_printNewline(); |
Gavin Howard | 530e307 | 2019-04-23 16:23:36 -0600 | [diff] [blame] | 1656 | for (exp = 0, pow = 1; exp < len - 1; ++exp, pow *= BC_BASE); |
Gavin Howard | 2ed2bfb | 2018-03-14 02:42:32 -0600 | [diff] [blame] | 1657 | |
Gavin Howard | 530e307 | 2019-04-23 16:23:36 -0600 | [diff] [blame] | 1658 | for (exp = 0; exp < len; pow /= BC_BASE, ++vm->nchars, ++exp) { |
Gavin Howard | a84ad99 | 2018-12-03 19:11:06 -0700 | [diff] [blame] | 1659 | size_t dig; |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1660 | bc_num_printNewline(); |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1661 | dig = n / pow; |
| 1662 | n -= dig * pow; |
Gavin Howard | 954f9b6 | 2018-12-19 15:22:20 -0700 | [diff] [blame] | 1663 | bc_vm_putchar(((uchar) dig) + '0'); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1664 | } |
Gavin Howard | 6fbdb29 | 2018-02-27 15:44:48 -0700 | [diff] [blame] | 1665 | } |
Gavin Howard | fe679f0 | 2018-02-14 15:50:09 -0700 | [diff] [blame] | 1666 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1667 | static void bc_num_printHex(size_t n, size_t len, bool rdx) { |
Gavin Howard | 70e3d60 | 2018-12-11 11:00:49 -0700 | [diff] [blame] | 1668 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1669 | assert(len == 1); |
Gavin Howard | 80977b2 | 2018-09-06 14:29:13 -0600 | [diff] [blame] | 1670 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1671 | if (rdx) { |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1672 | bc_num_printNewline(); |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 1673 | bc_vm_putchar('.'); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1674 | vm->nchars += 1; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1675 | } |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1676 | |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1677 | bc_num_printNewline(); |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1678 | bc_vm_putchar(bc_num_hex_digits[n]); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1679 | vm->nchars += len; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1680 | } |
| 1681 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 1682 | static void bc_num_printDecimal(const BcNum *restrict n) { |
Gavin Howard | 32f2beb | 2018-03-09 11:43:20 -0700 | [diff] [blame] | 1683 | |
Gavin Howard | 51cd7ea | 2019-04-26 09:48:12 -0600 | [diff] [blame] | 1684 | size_t i, j, rdx = n->rdx; |
| 1685 | bool zero = true; |
| 1686 | size_t buffer[BC_BASE_POWER]; |
Gavin Howard | 32f2beb | 2018-03-09 11:43:20 -0700 | [diff] [blame] | 1687 | |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 1688 | if (n->neg) bc_vm_putchar('-'); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1689 | vm->nchars += n->neg; |
Gavin Howard | 32f2beb | 2018-03-09 11:43:20 -0700 | [diff] [blame] | 1690 | |
Gavin Howard | 51cd7ea | 2019-04-26 09:48:12 -0600 | [diff] [blame] | 1691 | for (i = n->len - 1; i < n->len; --i) { |
| 1692 | |
| 1693 | BcDig n9 = n->num[i]; |
| 1694 | size_t temp; |
| 1695 | bool irdx = (i == rdx - 1); |
| 1696 | |
| 1697 | zero = (zero & !irdx); |
| 1698 | temp = n->scale % BC_BASE_POWER; |
| 1699 | temp = i || !temp ? 0 : BC_BASE_POWER - temp; |
| 1700 | |
| 1701 | memset(buffer, 0, BC_BASE_POWER * sizeof(size_t)); |
| 1702 | |
| 1703 | for (j = 0; n9 && j < BC_BASE_POWER; ++j) { |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 1704 | buffer[j] = n9 % BC_BASE; |
| 1705 | n9 /= BC_BASE; |
| 1706 | } |
Stefan Esser | 0da1775 | 2019-04-25 12:25:15 +0200 | [diff] [blame] | 1707 | |
Gavin Howard | 51cd7ea | 2019-04-26 09:48:12 -0600 | [diff] [blame] | 1708 | for (j = BC_BASE_POWER - 1; j < BC_BASE_POWER && j >= temp; --j) { |
| 1709 | bool print_rdx = (irdx & (j == BC_BASE_POWER - 1)); |
| 1710 | zero = (zero && buffer[j] == 0); |
| 1711 | if (!zero) bc_num_printHex(buffer[j], 1, print_rdx); |
Stefan Esser | a299ffc | 2019-04-24 23:28:32 +0200 | [diff] [blame] | 1712 | } |
| 1713 | } |
Gavin Howard | 32f2beb | 2018-03-09 11:43:20 -0700 | [diff] [blame] | 1714 | } |
| 1715 | |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1716 | #if BC_ENABLE_EXTRA_MATH |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1717 | static BcStatus bc_num_printExponent(const BcNum *restrict n, bool eng) { |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1718 | |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1719 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1720 | bool neg = (n->len <= n->rdx); |
| 1721 | BcNum temp, exp; |
| 1722 | size_t places, mod; |
| 1723 | BcDig digs[BC_NUM_LONG_LOG10]; |
| 1724 | |
| 1725 | bc_num_createCopy(&temp, n); |
| 1726 | |
| 1727 | if (neg) { |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1728 | |
| 1729 | size_t i, idx = bc_num_nonzeroLen(n) - 1; |
| 1730 | |
| 1731 | places = 1; |
| 1732 | |
| 1733 | for (i = BC_BASE_POWER - 1; i < BC_BASE_POWER; --i) { |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 1734 | if (bc_num_pow10(i) > (unsigned long) n->num[idx]) |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1735 | places += 1; |
| 1736 | else break; |
| 1737 | } |
| 1738 | |
| 1739 | places += (n->rdx - (idx + 1)) * BC_BASE_POWER; |
| 1740 | |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1741 | mod = places % 3; |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1742 | |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1743 | if (eng && mod != 0) places += 3 - mod; |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1744 | s = bc_num_shiftLeft(&temp, places); |
| 1745 | if (BC_ERROR_SIGNAL_ONLY(s)) goto exit; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1746 | } |
| 1747 | else { |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 1748 | places = bc_num_int_digits(n) - 1; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1749 | mod = places % 3; |
| 1750 | if (eng && mod != 0) places -= 3 - (3 - mod); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1751 | s = bc_num_shiftRight(&temp, places); |
| 1752 | if (BC_ERROR_SIGNAL_ONLY(s)) goto exit; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1753 | } |
| 1754 | |
| 1755 | bc_num_printDecimal(&temp); |
| 1756 | |
| 1757 | bc_num_printNewline(); |
| 1758 | bc_vm_putchar('e'); |
| 1759 | |
| 1760 | if (!places) { |
| 1761 | bc_num_printHex(0, 1, false); |
| 1762 | goto exit; |
| 1763 | } |
| 1764 | |
| 1765 | if (neg) { |
| 1766 | bc_num_printNewline(); |
| 1767 | bc_vm_putchar('-'); |
| 1768 | } |
| 1769 | |
| 1770 | bc_num_setup(&exp, digs, BC_NUM_LONG_LOG10); |
| 1771 | bc_num_ulong2num(&exp, (unsigned long) places); |
| 1772 | |
| 1773 | bc_num_printDecimal(&exp); |
| 1774 | |
| 1775 | exit: |
| 1776 | bc_num_free(&temp); |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1777 | return BC_SIG ? BC_STATUS_SIGNAL : BC_STATUS_SUCCESS; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1778 | } |
| 1779 | #endif // BC_ENABLE_EXTRA_MATH |
| 1780 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1781 | static BcStatus bc_num_printNum(BcNum *restrict n, BcNum *restrict base, |
| 1782 | size_t len, BcNumDigitOp print) |
Gavin Howard | bc7cae8 | 2018-03-14 13:43:04 -0600 | [diff] [blame] | 1783 | { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1784 | BcStatus s; |
| 1785 | BcVec stack; |
| 1786 | BcNum intp, fracp, digit, frac_len; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1787 | unsigned long dig, *ptr; |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1788 | size_t i; |
| 1789 | bool radix; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1790 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 1791 | assert(BC_NUM_NONZERO(base)); |
Gavin Howard | 3fb24fa | 2019-02-15 17:18:57 -0700 | [diff] [blame] | 1792 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1793 | if (BC_NUM_ZERO(n)) { |
| 1794 | print(0, len, false); |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1795 | return BC_STATUS_SUCCESS; |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 1796 | } |
Gavin Howard | 9a4b6cd | 2018-10-23 15:13:30 -0600 | [diff] [blame] | 1797 | |
Gavin Howard | d392983 | 2018-12-24 15:13:15 -0700 | [diff] [blame] | 1798 | bc_vec_init(&stack, sizeof(unsigned long), NULL); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1799 | bc_num_init(&fracp, n->rdx); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1800 | bc_num_init(&digit, len); |
Gavin Howard | 7b7d2f3 | 2019-02-21 16:46:47 -0700 | [diff] [blame] | 1801 | bc_num_init(&frac_len, bc_num_int(n)); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1802 | bc_num_one(&frac_len); |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 1803 | bc_num_createCopy(&intp, n); |
Gavin Howard | a50fc54 | 2018-03-29 17:25:38 -0600 | [diff] [blame] | 1804 | |
Stefan Esser | 1a503e6 | 2019-05-04 17:05:12 +0200 | [diff] [blame] | 1805 | bc_num_truncate(&intp, intp.scale); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1806 | s = bc_num_sub(n, &intp, &fracp, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1807 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1808 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1809 | while (BC_NO_SIG && BC_NUM_NONZERO(&intp)) { |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1810 | |
| 1811 | // Dividing by base cannot be divide by 0 because base cannot be 0. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1812 | s = bc_num_divmod(&intp, base, &intp, &digit, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1813 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1814 | |
| 1815 | // Will never fail (except for signals) because digit is |
| 1816 | // guaranteed to be non-negative and small enough. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1817 | s = bc_num_ulong(&digit, &dig); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1818 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1819 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1820 | bc_vec_push(&stack, &dig); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1821 | } |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1822 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1823 | if (BC_SIG) goto sig_err; |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1824 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1825 | for (i = 0; BC_NO_SIG && i < stack.len; ++i) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1826 | ptr = bc_vec_item_rev(&stack, i); |
| 1827 | assert(ptr); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1828 | print(*ptr, len, false); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1829 | } |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1830 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1831 | if (BC_SIG) goto sig_err; |
Stefan Esser | 276de8c | 2019-05-04 20:12:43 +0200 | [diff] [blame] | 1832 | if (!n->scale) goto err; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1833 | |
Stefan Esser | 6167e22 | 2019-05-02 10:43:21 +0200 | [diff] [blame] | 1834 | for (radix = true; BC_NO_SIG && bc_num_int_digits(&frac_len) < n->scale + 1; radix = false) { |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1835 | |
Stefan Esser | e6bd86b | 2019-05-04 23:48:51 +0200 | [diff] [blame] | 1836 | s = bc_num_mul(&fracp, base, &fracp, n->scale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1837 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 1838 | |
| 1839 | // Will never fail (except for signals) because fracp is |
| 1840 | // guaranteed to be non-negative and small enough. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1841 | s = bc_num_ulong(&fracp, &dig); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1842 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1843 | |
Gavin Howard | 705c4bc | 2018-12-03 15:38:04 -0700 | [diff] [blame] | 1844 | bc_num_ulong2num(&intp, dig); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1845 | s = bc_num_sub(&fracp, &intp, &fracp, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1846 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1847 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1848 | print(dig, len, radix); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1849 | s = bc_num_mul(&frac_len, base, &frac_len, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 1850 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1851 | } |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1852 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1853 | sig_err: |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 1854 | if (BC_NO_ERR(!s) && BC_SIG) s = BC_STATUS_SIGNAL; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1855 | err: |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1856 | bc_num_free(&frac_len); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1857 | bc_num_free(&digit); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1858 | bc_num_free(&fracp); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1859 | bc_num_free(&intp); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1860 | bc_vec_free(&stack); |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1861 | return s; |
Gavin Howard | 2682a1f | 2018-03-03 09:09:13 -0700 | [diff] [blame] | 1862 | } |
| 1863 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1864 | static BcStatus bc_num_printBase(BcNum *restrict n, BcNum *restrict base, |
| 1865 | size_t base_t) |
Gavin Howard | 3fb24fa | 2019-02-15 17:18:57 -0700 | [diff] [blame] | 1866 | { |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1867 | BcStatus s; |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 1868 | size_t width; |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1869 | BcNumDigitOp print; |
| 1870 | bool neg = n->neg; |
| 1871 | |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 1872 | if (neg) bc_vm_putchar('-'); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1873 | vm->nchars += neg; |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1874 | |
| 1875 | n->neg = false; |
| 1876 | |
Gavin Howard | be4e822 | 2019-01-03 13:34:16 -0700 | [diff] [blame] | 1877 | if (base_t <= BC_NUM_MAX_POSIX_IBASE) { |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1878 | width = 1; |
| 1879 | print = bc_num_printHex; |
| 1880 | } |
| 1881 | else { |
Stefan Esser | 017f0c8 | 2019-05-04 17:01:21 +0200 | [diff] [blame] | 1882 | width = bc_num_log10(base_t - 1); |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1883 | print = bc_num_printDigits; |
| 1884 | } |
| 1885 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1886 | s = bc_num_printNum(n, base, width, print); |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1887 | n->neg = neg; |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1888 | |
| 1889 | return s; |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1890 | } |
| 1891 | |
Gavin Howard | 40a085f | 2018-12-03 12:08:59 -0700 | [diff] [blame] | 1892 | #if DC_ENABLED |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1893 | BcStatus bc_num_stream(BcNum *restrict n, BcNum *restrict base) { |
| 1894 | return bc_num_printNum(n, base, 1, bc_num_printChar); |
Gavin Howard | 83eb839 | 2018-10-09 01:21:19 -0600 | [diff] [blame] | 1895 | } |
| 1896 | #endif // DC_ENABLED |
| 1897 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1898 | void bc_num_setup(BcNum *restrict n, BcDig *restrict num, size_t cap) { |
Gavin Howard | b8a1292 | 2018-12-21 21:40:45 -0700 | [diff] [blame] | 1899 | assert(n); |
| 1900 | n->num = num; |
| 1901 | n->cap = cap; |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1902 | n->rdx = n->scale = n->len = 0; |
Gavin Howard | b8a1292 | 2018-12-21 21:40:45 -0700 | [diff] [blame] | 1903 | n->neg = false; |
| 1904 | } |
| 1905 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1906 | void bc_num_init(BcNum *restrict n, size_t req) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1907 | assert(n); |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 1908 | req = req >= BC_NUM_DEF_SIZE ? req : BC_NUM_DEF_SIZE; |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 1909 | bc_num_setup(n, bc_vm_malloc(BC_NUM_SIZE(req)), req); |
Gavin Howard | b5c7721 | 2018-02-14 17:12:34 -0700 | [diff] [blame] | 1910 | } |
| 1911 | |
Gavin Howard | ed392aa | 2018-02-27 13:09:26 -0700 | [diff] [blame] | 1912 | void bc_num_free(void *num) { |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 1913 | assert(num); |
| 1914 | free(((BcNum*) num)->num); |
Gavin Howard | b5c7721 | 2018-02-14 17:12:34 -0700 | [diff] [blame] | 1915 | } |
| 1916 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1917 | void bc_num_copy(BcNum *d, const BcNum *s) { |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1918 | assert(d && s); |
Gavin Howard | 7344ba7 | 2019-01-03 13:37:27 -0700 | [diff] [blame] | 1919 | if (d == s) return; |
Gavin Howard | dcff3c9 | 2019-01-09 10:04:56 -0700 | [diff] [blame] | 1920 | bc_num_expand(d, s->len); |
Gavin Howard | 7344ba7 | 2019-01-03 13:37:27 -0700 | [diff] [blame] | 1921 | d->len = s->len; |
| 1922 | d->neg = s->neg; |
| 1923 | d->rdx = s->rdx; |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1924 | d->scale = s->scale; |
Gavin Howard | 404ece7 | 2019-04-26 15:59:15 -0600 | [diff] [blame] | 1925 | memcpy(d->num, s->num, BC_NUM_SIZE(d->len)); |
Gavin Howard | 5a049c4 | 2018-02-15 11:24:11 -0700 | [diff] [blame] | 1926 | } |
| 1927 | |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 1928 | void bc_num_createCopy(BcNum *d, const BcNum *s) { |
| 1929 | bc_num_init(d, s->len); |
| 1930 | bc_num_copy(d, s); |
| 1931 | } |
| 1932 | |
| 1933 | void bc_num_createFromUlong(BcNum *n, unsigned long val) { |
Stefan Eßer | 4b111c2 | 2019-04-24 17:23:08 -0600 | [diff] [blame] | 1934 | bc_num_init(n, (BC_NUM_LONG_LOG10 - 1) / BC_BASE_POWER + 1); |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 1935 | bc_num_ulong2num(n, val); |
| 1936 | } |
| 1937 | |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1938 | size_t bc_num_scale(const BcNum *restrict n) { |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1939 | return n->scale; |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1940 | } |
| 1941 | |
| 1942 | size_t bc_num_len(const BcNum *restrict n) { |
| 1943 | |
Gavin Howard | b41483b | 2019-04-27 08:30:10 -0600 | [diff] [blame] | 1944 | size_t i, pow, scale, len = n->len; |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1945 | BcDig dig; |
| 1946 | |
Gavin Howard | b41483b | 2019-04-27 08:30:10 -0600 | [diff] [blame] | 1947 | if (BC_NUM_ZERO(n)) return 0; |
Gavin Howard | c134992 | 2019-04-30 20:48:09 -0600 | [diff] [blame] | 1948 | if (n->rdx == len) len = bc_num_nonzeroLen(n); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1949 | |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1950 | dig = n->num[len - 1]; |
Gavin Howard | b41483b | 2019-04-27 08:30:10 -0600 | [diff] [blame] | 1951 | pow = BC_BASE_DIG; |
| 1952 | i = BC_BASE_POWER + 1; |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1953 | |
Gavin Howard | b41483b | 2019-04-27 08:30:10 -0600 | [diff] [blame] | 1954 | while (pow && (dig % (BcDig) pow == dig)) { |
| 1955 | i -= 1; |
| 1956 | pow /= BC_BASE; |
| 1957 | } |
Gavin Howard | fcf2901 | 2019-04-25 20:12:19 -0600 | [diff] [blame] | 1958 | |
Gavin Howard | b41483b | 2019-04-27 08:30:10 -0600 | [diff] [blame] | 1959 | scale = n->scale % BC_BASE_POWER; |
| 1960 | scale = scale ? scale : BC_BASE_POWER; |
| 1961 | |
| 1962 | return (len - 1) * BC_BASE_POWER + i - (BC_BASE_POWER - scale); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1963 | } |
| 1964 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1965 | BcStatus bc_num_parse(BcNum *restrict n, const char *restrict val, |
| 1966 | BcNum *restrict base, size_t base_t, bool letter) |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 1967 | { |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1968 | BcStatus s = BC_STATUS_SUCCESS; |
| 1969 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 1970 | assert(n && val && base); |
Gavin Howard | e97ae92 | 2019-02-25 21:47:17 -0700 | [diff] [blame] | 1971 | assert(BC_ENABLE_EXTRA_MATH || |
| 1972 | (base_t >= BC_NUM_MIN_BASE && base_t <= vm->max_ibase)); |
Gavin Howard | c90ed90 | 2019-01-02 13:07:49 -0700 | [diff] [blame] | 1973 | assert(bc_num_strValid(val)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 1974 | |
Gavin Howard | d746e80 | 2018-12-28 22:06:00 -0700 | [diff] [blame] | 1975 | if (letter) bc_num_ulong2num(n, bc_num_parseChar(val[0], BC_NUM_MAX_LBASE)); |
Gavin Howard | 530e307 | 2019-04-23 16:23:36 -0600 | [diff] [blame] | 1976 | else if (base_t == BC_BASE) bc_num_parseDecimal(n, val); |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1977 | else s = bc_num_parseBase(n, val, base, base_t); |
| 1978 | |
| 1979 | return s; |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 1980 | } |
| 1981 | |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1982 | BcStatus bc_num_print(BcNum *restrict n, BcNum *restrict base, |
| 1983 | size_t base_t, bool newline) |
Gavin Howard | 152f3e8 | 2018-03-07 12:33:15 -0700 | [diff] [blame] | 1984 | { |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1985 | BcStatus s = BC_STATUS_SUCCESS; |
| 1986 | |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1987 | assert(n && base); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1988 | assert(BC_ENABLE_EXTRA_MATH || base_t >= BC_NUM_MIN_BASE); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 1989 | |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 1990 | bc_num_printNewline(); |
Gavin Howard | bc7cae8 | 2018-03-14 13:43:04 -0600 | [diff] [blame] | 1991 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 1992 | if (BC_NUM_ZERO(n)) bc_num_printHex(0, 1, false); |
Gavin Howard | 530e307 | 2019-04-23 16:23:36 -0600 | [diff] [blame] | 1993 | else if (base_t == BC_BASE) bc_num_printDecimal(n); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1994 | #if BC_ENABLE_EXTRA_MATH |
Gavin Howard | b155866 | 2019-04-26 14:32:55 -0600 | [diff] [blame] | 1995 | else if (base_t == 0 || base_t == 1) |
| 1996 | s = bc_num_printExponent(n, base_t != 0); |
Gavin Howard | 7ad5a66 | 2019-02-19 14:40:46 -0700 | [diff] [blame] | 1997 | #endif // BC_ENABLE_EXTRA_MATH |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 1998 | else s = bc_num_printBase(n, base, base_t); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 1999 | |
Gavin Howard | e5f11c7 | 2019-02-23 09:42:51 -0700 | [diff] [blame] | 2000 | if (BC_NO_ERR(!s) && newline) { |
Gavin Howard | 48af52e | 2018-10-30 14:47:38 -0600 | [diff] [blame] | 2001 | bc_vm_putchar('\n'); |
Gavin Howard | ab5e963 | 2019-01-02 13:32:02 -0700 | [diff] [blame] | 2002 | vm->nchars = 0; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2003 | } |
Gavin Howard | dc0ee9e | 2019-02-16 23:27:08 -0700 | [diff] [blame] | 2004 | |
| 2005 | return s; |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2006 | } |
| 2007 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 2008 | BcStatus bc_num_ulong(const BcNum *restrict n, unsigned long *result) { |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2009 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2010 | size_t i; |
Gavin Howard | 06b6e86 | 2019-02-15 11:15:31 -0700 | [diff] [blame] | 2011 | unsigned long r; |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2012 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2013 | assert(n && result); |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2014 | |
Gavin Howard | fdf64bc | 2019-01-07 16:52:54 -0700 | [diff] [blame] | 2015 | *result = 0; |
| 2016 | |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 2017 | if (BC_ERR(n->neg)) return bc_vm_err(BC_ERROR_MATH_NEGATIVE); |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2018 | |
Gavin Howard | 06b6e86 | 2019-02-15 11:15:31 -0700 | [diff] [blame] | 2019 | for (r = 0, i = n->len; i > n->rdx;) { |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 2020 | |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 2021 | unsigned long prev = r * BC_BASE_DIG; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 2022 | |
Gavin Howard | 0700efc | 2019-04-24 17:31:23 -0600 | [diff] [blame] | 2023 | if (BC_ERR(prev == SIZE_MAX || prev / BC_BASE_DIG != r)) |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 2024 | return bc_vm_err(BC_ERROR_MATH_OVERFLOW); |
| 2025 | |
Gavin Howard | 7744543 | 2019-04-26 15:59:33 -0600 | [diff] [blame] | 2026 | r = prev + (unsigned long) n->num[--i]; |
Gavin Howard | 5bede41 | 2019-02-23 09:31:28 -0700 | [diff] [blame] | 2027 | |
| 2028 | if (BC_ERR(r == SIZE_MAX || r < prev)) |
Gavin Howard | 5edf849 | 2019-02-21 14:06:58 -0700 | [diff] [blame] | 2029 | return bc_vm_err(BC_ERROR_MATH_OVERFLOW); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2030 | } |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2031 | |
Gavin Howard | 7b557da | 2018-12-21 10:25:32 -0700 | [diff] [blame] | 2032 | *result = r; |
Gavin Howard | d3a1c39 | 2018-12-11 12:00:57 -0700 | [diff] [blame] | 2033 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2034 | return BC_STATUS_SUCCESS; |
Gavin Howard | 68b8a5c | 2018-02-15 11:41:24 -0700 | [diff] [blame] | 2035 | } |
| 2036 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 2037 | void bc_num_ulong2num(BcNum *restrict n, unsigned long val) { |
Gavin Howard | 8e2cc69 | 2018-02-15 17:39:14 -0700 | [diff] [blame] | 2038 | |
Gavin Howard | c25fd61 | 2019-04-26 19:31:31 -0600 | [diff] [blame] | 2039 | BcDig *ptr; |
| 2040 | unsigned long i; |
| 2041 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2042 | assert(n); |
Gavin Howard | 8e2cc69 | 2018-02-15 17:39:14 -0700 | [diff] [blame] | 2043 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2044 | bc_num_zero(n); |
Gavin Howard | 025d04d | 2018-02-20 13:53:28 -0700 | [diff] [blame] | 2045 | |
Gavin Howard | 1ab22d2 | 2019-01-03 13:32:17 -0700 | [diff] [blame] | 2046 | if (!val) return; |
Gavin Howard | 8e2cc69 | 2018-02-15 17:39:14 -0700 | [diff] [blame] | 2047 | |
Gavin Howard | 798508b | 2019-02-21 16:45:32 -0700 | [diff] [blame] | 2048 | bc_num_expand(n, bc_num_log10(ULONG_MAX)); |
Gavin Howard | 05feab0 | 2019-04-23 16:24:07 -0600 | [diff] [blame] | 2049 | |
Gavin Howard | c25fd61 | 2019-04-26 19:31:31 -0600 | [diff] [blame] | 2050 | for (ptr = n->num, i = 0; val; ++i, ++n->len, val /= BC_BASE_DIG) |
| 2051 | ptr[i] = val % BC_BASE_DIG; |
Gavin Howard | 025d04d | 2018-02-20 13:53:28 -0700 | [diff] [blame] | 2052 | } |
| 2053 | |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2054 | size_t bc_num_addReq(BcNum *a, BcNum *b, size_t scale) { |
Gavin Howard | 1973d61 | 2019-02-21 15:37:32 -0700 | [diff] [blame] | 2055 | |
| 2056 | size_t aint, bint, ardx, brdx; |
| 2057 | |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2058 | BC_UNUSED(scale); |
Gavin Howard | 1973d61 | 2019-02-21 15:37:32 -0700 | [diff] [blame] | 2059 | |
| 2060 | ardx = a->rdx; |
| 2061 | brdx = b->rdx; |
Gavin Howard | 7b7d2f3 | 2019-02-21 16:46:47 -0700 | [diff] [blame] | 2062 | aint = bc_num_int(a); |
| 2063 | bint = bc_num_int(b); |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2064 | ardx = BC_MAX(ardx, brdx); |
| 2065 | aint = BC_MAX(aint, bint); |
Gavin Howard | 1973d61 | 2019-02-21 15:37:32 -0700 | [diff] [blame] | 2066 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2067 | return bc_vm_growSize(bc_vm_growSize(ardx, aint), 1); |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2068 | } |
| 2069 | |
| 2070 | size_t bc_num_mulReq(BcNum *a, BcNum *b, size_t scale) { |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2071 | size_t max, rdx; |
| 2072 | rdx = bc_vm_growSize(a->rdx, b->rdx); |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2073 | max = bc_vm_growSize(BC_MAX(BC_NUM_RDX(scale), rdx), 1); |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2074 | rdx = bc_vm_growSize(bc_vm_growSize(bc_num_int(a), bc_num_int(b)), max); |
| 2075 | return rdx; |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2076 | } |
| 2077 | |
| 2078 | size_t bc_num_powReq(BcNum *a, BcNum *b, size_t scale) { |
| 2079 | BC_UNUSED(scale); |
Gavin Howard | 007afdf | 2019-02-23 09:45:42 -0700 | [diff] [blame] | 2080 | return bc_vm_growSize(bc_vm_growSize(a->len, b->len), 1); |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2081 | } |
| 2082 | |
| 2083 | #if BC_ENABLE_EXTRA_MATH |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2084 | size_t bc_num_placesReq(BcNum *a, BcNum *b, size_t scale) { |
| 2085 | |
| 2086 | BcStatus s; |
| 2087 | unsigned long places; |
| 2088 | size_t rdx; |
| 2089 | |
| 2090 | BC_UNUSED(s); |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2091 | BC_UNUSED(scale); |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2092 | |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2093 | // This error will be taken care of later. Ignore. |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2094 | s = bc_num_ulong(b, &places); |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2095 | |
| 2096 | if (a->scale <= places) rdx = BC_NUM_RDX(places); |
| 2097 | else rdx = BC_NUM_RDX(a->scale - places); |
| 2098 | |
| 2099 | return BC_NUM_RDX(bc_num_int_digits(a)) + rdx; |
| 2100 | } |
| 2101 | |
| 2102 | size_t bc_num_shiftLeftReq(BcNum *a, BcNum *b, size_t scale) { |
| 2103 | |
| 2104 | BcStatus s; |
| 2105 | unsigned long places, rdx; |
| 2106 | |
| 2107 | BC_UNUSED(s); |
| 2108 | BC_UNUSED(scale); |
| 2109 | |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2110 | // This error will be taken care of later. Ignore. |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2111 | s = bc_num_ulong(b, &places); |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2112 | |
| 2113 | if (a->scale <= places) rdx = BC_NUM_RDX(places) - a->rdx + 1; |
| 2114 | else rdx = 0; |
| 2115 | |
| 2116 | return a->len + rdx; |
| 2117 | } |
| 2118 | |
| 2119 | size_t bc_num_shiftRightReq(BcNum *a, BcNum *b, size_t scale) { |
| 2120 | |
| 2121 | BcStatus s; |
| 2122 | unsigned long places, int_digs, rdx; |
| 2123 | |
| 2124 | BC_UNUSED(s); |
| 2125 | BC_UNUSED(scale); |
| 2126 | |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2127 | // This error will be taken care of later. Ignore. |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2128 | s = bc_num_ulong(b, &places); |
Gavin Howard | 194380e | 2019-05-06 08:39:30 -0600 | [diff] [blame] | 2129 | |
| 2130 | int_digs = BC_NUM_RDX(bc_num_int_digits(a)); |
| 2131 | rdx = BC_NUM_RDX(places); |
| 2132 | |
| 2133 | if (int_digs <= rdx) rdx -= int_digs; |
| 2134 | else rdx = 0; |
| 2135 | |
| 2136 | return a->len + rdx; |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2137 | } |
| 2138 | #endif // BC_ENABLE_EXTRA_MATH |
| 2139 | |
Gavin Howard | 12fe781 | 2018-09-29 03:45:18 -0600 | [diff] [blame] | 2140 | BcStatus bc_num_add(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 2141 | BcNumBinaryOp op = (!a->neg == !b->neg) ? bc_num_a : bc_num_s; |
Gavin Howard | 4185296 | 2018-12-27 17:15:00 -0700 | [diff] [blame] | 2142 | BC_UNUSED(scale); |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2143 | return bc_num_binary(a, b, c, false, op, bc_num_addReq(a, b, scale)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2144 | } |
| 2145 | |
Gavin Howard | 12fe781 | 2018-09-29 03:45:18 -0600 | [diff] [blame] | 2146 | BcStatus bc_num_sub(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 2147 | BcNumBinaryOp op = (!a->neg == !b->neg) ? bc_num_s : bc_num_a; |
Gavin Howard | 4185296 | 2018-12-27 17:15:00 -0700 | [diff] [blame] | 2148 | BC_UNUSED(scale); |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2149 | return bc_num_binary(a, b, c, true, op, bc_num_addReq(a, b, scale)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2150 | } |
| 2151 | |
Gavin Howard | 12fe781 | 2018-09-29 03:45:18 -0600 | [diff] [blame] | 2152 | BcStatus bc_num_mul(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2153 | return bc_num_binary(a, b, c, scale, bc_num_m, bc_num_mulReq(a, b, scale)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2154 | } |
| 2155 | |
Gavin Howard | 12fe781 | 2018-09-29 03:45:18 -0600 | [diff] [blame] | 2156 | BcStatus bc_num_div(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | d18fa6d | 2019-01-24 13:49:35 -0700 | [diff] [blame] | 2157 | return bc_num_binary(a, b, c, scale, bc_num_d, bc_num_mulReq(a, b, scale)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2158 | } |
| 2159 | |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 2160 | BcStatus bc_num_mod(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2161 | size_t req = bc_num_mulReq(a, b, scale); |
| 2162 | return bc_num_binary(a, b, c, scale, bc_num_rem, req); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2163 | } |
| 2164 | |
Gavin Howard | 12fe781 | 2018-09-29 03:45:18 -0600 | [diff] [blame] | 2165 | BcStatus bc_num_pow(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 6734e1a | 2019-02-21 17:11:52 -0700 | [diff] [blame] | 2166 | return bc_num_binary(a, b, c, scale, bc_num_p, bc_num_powReq(a, b, scale)); |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2167 | } |
| 2168 | |
Gavin Howard | 7d8f038 | 2018-12-27 16:15:13 -0700 | [diff] [blame] | 2169 | #if BC_ENABLE_EXTRA_MATH |
| 2170 | BcStatus bc_num_places(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2171 | size_t req = bc_num_placesReq(a, b, scale); |
| 2172 | return bc_num_binary(a, b, c, scale, bc_num_place, req); |
Gavin Howard | 7d8f038 | 2018-12-27 16:15:13 -0700 | [diff] [blame] | 2173 | } |
| 2174 | |
| 2175 | BcStatus bc_num_lshift(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2176 | size_t req = bc_num_shiftLeftReq(a, b, scale); |
| 2177 | return bc_num_binary(a, b, c, scale, bc_num_left, req); |
Gavin Howard | 7d8f038 | 2018-12-27 16:15:13 -0700 | [diff] [blame] | 2178 | } |
| 2179 | |
| 2180 | BcStatus bc_num_rshift(BcNum *a, BcNum *b, BcNum *c, size_t scale) { |
Gavin Howard | 8291ecd | 2019-05-06 14:34:53 -0600 | [diff] [blame] | 2181 | size_t req = bc_num_shiftRightReq(a, b, scale); |
| 2182 | return bc_num_binary(a, b, c, scale, bc_num_right, req); |
Gavin Howard | 7d8f038 | 2018-12-27 16:15:13 -0700 | [diff] [blame] | 2183 | } |
| 2184 | #endif // BC_ENABLE_EXTRA_MATH |
| 2185 | |
Gavin Howard | 3c02ed3 | 2018-12-28 18:17:15 -0700 | [diff] [blame] | 2186 | BcStatus bc_num_sqrt(BcNum *restrict a, BcNum *restrict b, size_t scale) { |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2187 | |
Gavin Howard | 1cbfe24 | 2019-01-09 17:13:11 -0700 | [diff] [blame] | 2188 | BcStatus s = BC_STATUS_SUCCESS; |
Gavin Howard | 34edd0a | 2018-10-25 15:51:05 -0600 | [diff] [blame] | 2189 | BcNum num1, num2, half, f, fprime, *x0, *x1, *temp; |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2190 | size_t pow, len, rdx, req, digs, digs1, digs2, resscale, times = 0; |
Gavin Howard | 9f2395b | 2018-10-06 05:28:58 -0600 | [diff] [blame] | 2191 | ssize_t cmp = 1, cmp1 = SSIZE_MAX, cmp2 = SSIZE_MAX; |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2192 | BcDig half_digs[1]; |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2193 | |
Gavin Howard | 34edd0a | 2018-10-25 15:51:05 -0600 | [diff] [blame] | 2194 | assert(a && b && a != b); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2195 | |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 2196 | if (BC_ERR(a->neg)) return bc_vm_err(BC_ERROR_MATH_NEGATIVE); |
Gavin Howard | 07fbf01 | 2019-02-19 09:25:11 -0700 | [diff] [blame] | 2197 | |
Stefan Esser | 1f0f69f | 2019-04-29 20:49:15 +0200 | [diff] [blame] | 2198 | if (a->scale > scale) scale = a->scale; |
| 2199 | len = bc_vm_growSize(bc_num_int_digits(a), 1); |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2200 | req = bc_vm_growSize(BC_MAX(BC_NUM_RDX(scale), a->rdx), len >> 1); |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2201 | bc_num_init(b, bc_vm_growSize(req, 1)); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2202 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 2203 | if (BC_NUM_ZERO(a)) { |
Gavin Howard | f8ddb6d | 2018-10-22 12:58:53 -0600 | [diff] [blame] | 2204 | bc_num_setToZero(b, scale); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2205 | return BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2206 | } |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 2207 | if (bc_num_isOne(a)) { |
Gavin Howard | 757b66a | 2018-10-06 04:13:46 -0600 | [diff] [blame] | 2208 | bc_num_one(b); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2209 | bc_num_extend(b, scale); |
| 2210 | return BC_STATUS_SUCCESS; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2211 | } |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2212 | |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2213 | rdx = BC_MAX(BC_NUM_RDX(scale), a->rdx); |
| 2214 | len = bc_vm_growSize(a->len, rdx); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2215 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2216 | bc_num_init(&num1, len); |
| 2217 | bc_num_init(&num2, len); |
Gavin Howard | 18f4020 | 2018-12-29 21:30:37 -0700 | [diff] [blame] | 2218 | bc_num_setup(&half, half_digs, sizeof(half_digs) / sizeof(BcDig)); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2219 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2220 | bc_num_one(&half); |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2221 | half.num[0] = BC_BASE_DIG / 2; |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2222 | half.len = 1; |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2223 | half.rdx = 1; |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2224 | half.scale = 1; |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2225 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2226 | bc_num_init(&f, len); |
| 2227 | bc_num_init(&fprime, len); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2228 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2229 | x0 = &num1; |
| 2230 | x1 = &num2; |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2231 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2232 | bc_num_one(x0); |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2233 | pow = bc_num_int_digits(a); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2234 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2235 | if (pow) { |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2236 | |
Gavin Howard | c39fd49 | 2018-10-04 10:07:03 -0600 | [diff] [blame] | 2237 | if (pow & 1) x0->num[0] = 2; |
| 2238 | else x0->num[0] = 6; |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2239 | |
Gavin Howard | c39fd49 | 2018-10-04 10:07:03 -0600 | [diff] [blame] | 2240 | pow -= 2 - (pow & 1); |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2241 | bc_num_shiftLeft(x0, pow / 2); |
Gavin Howard | ed742ce | 2018-08-29 14:23:12 -0600 | [diff] [blame] | 2242 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2243 | // Make sure to move the radix back. |
Gavin Howard | 1d85719 | 2019-05-06 14:35:07 -0600 | [diff] [blame] | 2244 | if (x0->scale >= pow) x0->scale -= pow; |
| 2245 | else x0->scale = 0; |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2246 | x0->rdx = BC_NUM_RDX(x0->scale); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2247 | } |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2248 | |
Gavin Howard | 14913fc | 2019-04-23 14:36:03 -0600 | [diff] [blame] | 2249 | x0->rdx = digs = digs1 = digs2 = 0; |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2250 | x0->scale = 0; |
Stefan Esser | 8f7c5a5 | 2019-04-29 20:13:51 +0200 | [diff] [blame] | 2251 | resscale = (scale + BC_BASE_POWER) * 2; |
Stefan Esser | cc7cd93 | 2019-04-29 17:10:43 +0200 | [diff] [blame] | 2252 | |
Gavin Howard | 28c087f | 2019-05-06 08:08:59 -0600 | [diff] [blame] | 2253 | len = BC_NUM_RDX(bc_num_int_digits(x0) + resscale - 1); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2254 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2255 | while (BC_NO_SIG && (cmp || digs < len)) { |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2256 | |
Gavin Howard | 971a267 | 2019-04-26 14:32:07 -0600 | [diff] [blame] | 2257 | assert(BC_NUM_NONZERO(x0)); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2258 | |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2259 | s = bc_num_div(a, x0, &f, resscale); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2260 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2261 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2262 | s = bc_num_add(x0, &f, &fprime, resscale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2263 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2264 | s = bc_num_mul(&fprime, &half, x1, resscale); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2265 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2266 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2267 | cmp = bc_num_cmp(x1, x0); |
Gavin Howard | f2ee634 | 2019-04-09 17:05:20 -0600 | [diff] [blame] | 2268 | if (cmp == BC_NUM_SSIZE_MIN) { |
| 2269 | s = BC_STATUS_SIGNAL; |
| 2270 | break; |
| 2271 | } |
| 2272 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2273 | digs = x1->len - (unsigned long long) llabs(cmp); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2274 | |
Gavin Howard | b5ec7f3 | 2018-10-29 12:32:39 -0600 | [diff] [blame] | 2275 | if (cmp == cmp2 && digs == digs1) times += 1; |
Gavin Howard | b11e9e2 | 2018-10-06 17:26:02 -0600 | [diff] [blame] | 2276 | else times = 0; |
| 2277 | |
Stefan Esser | 8f7c5a5 | 2019-04-29 20:13:51 +0200 | [diff] [blame] | 2278 | resscale += times > 2; |
Gavin Howard | 9f2395b | 2018-10-06 05:28:58 -0600 | [diff] [blame] | 2279 | |
| 2280 | cmp2 = cmp1; |
| 2281 | cmp1 = cmp; |
Gavin Howard | b5ec7f3 | 2018-10-29 12:32:39 -0600 | [diff] [blame] | 2282 | digs1 = digs; |
Gavin Howard | 9f2395b | 2018-10-06 05:28:58 -0600 | [diff] [blame] | 2283 | |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2284 | temp = x0; |
| 2285 | x0 = x1; |
| 2286 | x1 = temp; |
| 2287 | } |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2288 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2289 | if (BC_SIG) { |
Gavin Howard | 176cfe6 | 2019-02-16 23:40:13 -0700 | [diff] [blame] | 2290 | s = BC_STATUS_SIGNAL; |
| 2291 | goto err; |
| 2292 | } |
Gavin Howard | 0dfe292 | 2018-05-22 13:57:02 -0600 | [diff] [blame] | 2293 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2294 | bc_num_copy(b, x0); |
Stefan Esser | 6276936 | 2019-04-29 15:06:00 +0200 | [diff] [blame] | 2295 | if (b->scale > scale) bc_num_truncate(b, b->scale - scale); |
Gavin Howard | 954276b | 2018-05-16 01:43:58 -0600 | [diff] [blame] | 2296 | |
| 2297 | err: |
Gavin Howard | cf0748d | 2019-04-09 14:51:47 -0600 | [diff] [blame] | 2298 | if (BC_ERR(s)) bc_num_free(b); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2299 | bc_num_free(&fprime); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2300 | bc_num_free(&f); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2301 | bc_num_free(&num2); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2302 | bc_num_free(&num1); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 2303 | assert(!b->neg || BC_NUM_NONZERO(b)); |
Gavin Howard | c4bf4c4 | 2019-01-09 10:30:15 -0700 | [diff] [blame] | 2304 | assert(b->rdx <= b->len || !b->len); |
Gavin Howard | 6373820 | 2018-09-26 15:34:20 -0600 | [diff] [blame] | 2305 | return s; |
Gavin Howard | 3eb626f | 2018-02-14 13:54:35 -0700 | [diff] [blame] | 2306 | } |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2307 | |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2308 | BcStatus bc_num_divmod(BcNum *a, BcNum *b, BcNum *c, BcNum *d, size_t scale) { |
| 2309 | |
| 2310 | BcStatus s; |
| 2311 | BcNum num2, *ptr_a; |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 2312 | bool init = false; |
Stefan Eßer | a7fbbf6 | 2019-04-29 14:14:30 -0600 | [diff] [blame] | 2313 | size_t ts, len; |
| 2314 | |
| 2315 | ts = BC_MAX(scale + b->scale, a->scale); |
| 2316 | len = bc_num_mulReq(a, b, ts); |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2317 | |
Gavin Howard | f2ef2f3 | 2019-01-16 11:25:16 -0700 | [diff] [blame] | 2318 | assert(c != d && a != d && b != d && b != c); |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2319 | |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 2320 | if (c == a) { |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2321 | memcpy(&num2, c, sizeof(BcNum)); |
| 2322 | ptr_a = &num2; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2323 | bc_num_init(c, len); |
Gavin Howard | 890d0c0 | 2018-10-30 16:34:50 -0600 | [diff] [blame] | 2324 | init = true; |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2325 | } |
Gavin Howard | f679ad8 | 2018-10-29 12:26:30 -0600 | [diff] [blame] | 2326 | else { |
| 2327 | ptr_a = a; |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2328 | bc_num_expand(c, len); |
Gavin Howard | f679ad8 | 2018-10-29 12:26:30 -0600 | [diff] [blame] | 2329 | } |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2330 | |
Gavin Howard | 54b946a | 2018-10-23 12:06:57 -0600 | [diff] [blame] | 2331 | s = bc_num_r(ptr_a, b, c, d, scale, ts); |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2332 | |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 2333 | assert(!c->neg || BC_NUM_NONZERO(c)); |
Gavin Howard | c4bf4c4 | 2019-01-09 10:30:15 -0700 | [diff] [blame] | 2334 | assert(c->rdx <= c->len || !c->len); |
Gavin Howard | ddce6d4 | 2019-01-03 14:07:06 -0700 | [diff] [blame] | 2335 | assert(!d->neg || BC_NUM_NONZERO(d)); |
Gavin Howard | c4bf4c4 | 2019-01-09 10:30:15 -0700 | [diff] [blame] | 2336 | assert(d->rdx <= d->len || !d->len); |
Gavin Howard | 2cb3961 | 2018-10-22 08:46:48 -0600 | [diff] [blame] | 2337 | |
| 2338 | if (init) bc_num_free(&num2); |
| 2339 | |
| 2340 | return s; |
| 2341 | } |
| 2342 | |
Gavin Howard | 40a085f | 2018-12-03 12:08:59 -0700 | [diff] [blame] | 2343 | #if DC_ENABLED |
Gavin Howard | 34edd0a | 2018-10-25 15:51:05 -0600 | [diff] [blame] | 2344 | BcStatus bc_num_modexp(BcNum *a, BcNum *b, BcNum *c, BcNum *restrict d) { |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2345 | |
| 2346 | BcStatus s; |
Gavin Howard | 34edd0a | 2018-10-25 15:51:05 -0600 | [diff] [blame] | 2347 | BcNum base, exp, two, temp; |
Gavin Howard | d392983 | 2018-12-24 15:13:15 -0700 | [diff] [blame] | 2348 | BcDig two_digs[2]; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2349 | |
Gavin Howard | 34edd0a | 2018-10-25 15:51:05 -0600 | [diff] [blame] | 2350 | assert(a && b && c && d && a != d && b != d && c != d); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2351 | |
Gavin Howard | ecafd4f | 2019-02-23 09:30:45 -0700 | [diff] [blame] | 2352 | if (BC_ERR(BC_NUM_ZERO(c))) |
| 2353 | return bc_vm_err(BC_ERROR_MATH_DIVIDE_BY_ZERO); |
| 2354 | if (BC_ERR(b->neg)) return bc_vm_err(BC_ERROR_MATH_NEGATIVE); |
| 2355 | if (BC_ERR(a->rdx || b->rdx || c->rdx)) |
Gavin Howard | 7536dcf | 2018-12-15 19:27:09 -0700 | [diff] [blame] | 2356 | return bc_vm_err(BC_ERROR_MATH_NON_INTEGER); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2357 | |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2358 | bc_num_expand(d, c->len); |
| 2359 | bc_num_init(&base, c->len); |
Gavin Howard | 7fdc30a | 2018-12-29 21:31:21 -0700 | [diff] [blame] | 2360 | bc_num_setup(&two, two_digs, sizeof(two_digs) / sizeof(BcDig)); |
Gavin Howard | ad0ecfe | 2018-10-30 01:16:01 -0600 | [diff] [blame] | 2361 | bc_num_init(&temp, b->len); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2362 | |
| 2363 | bc_num_one(&two); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2364 | two.num[0] = 2; |
| 2365 | bc_num_one(d); |
| 2366 | |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2367 | // We already checked for 0. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2368 | s = bc_num_rem(a, c, &base, 0); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2369 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2370 | if (BC_ERROR_SIGNAL_ONLY(s)) goto rem_err; |
Gavin Howard | baa4f58 | 2019-01-24 13:56:35 -0700 | [diff] [blame] | 2371 | bc_num_createCopy(&exp, b); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2372 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2373 | while (BC_NO_SIG && BC_NUM_NONZERO(&exp)) { |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2374 | |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2375 | // Num two cannot be 0, so no errors. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2376 | s = bc_num_divmod(&exp, &two, &exp, &temp, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2377 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2378 | |
Gavin Howard | a83a5e5 | 2019-02-21 16:51:06 -0700 | [diff] [blame] | 2379 | if (bc_num_isOne(&temp)) { |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2380 | s = bc_num_mul(d, &base, &temp, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2381 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2382 | |
| 2383 | // We already checked for 0. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2384 | s = bc_num_rem(&temp, c, d, 0); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2385 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2386 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2387 | } |
| 2388 | |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2389 | s = bc_num_mul(&base, &base, &temp, 0); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2390 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2391 | |
| 2392 | // We already checked for 0. |
Gavin Howard | 53eba8b | 2018-10-31 15:14:37 -0600 | [diff] [blame] | 2393 | s = bc_num_rem(&temp, c, &base, 0); |
Gavin Howard | 1769abc | 2019-02-21 09:36:14 -0700 | [diff] [blame] | 2394 | assert(!s || s == BC_STATUS_SIGNAL); |
Gavin Howard | c78e752 | 2019-02-22 13:24:25 -0700 | [diff] [blame] | 2395 | if (BC_ERROR_SIGNAL_ONLY(s)) goto err; |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2396 | } |
| 2397 | |
Gavin Howard | 2d188a5 | 2019-02-25 14:19:08 -0700 | [diff] [blame] | 2398 | if (BC_NO_ERR(!s) && BC_SIG) s = BC_STATUS_SIGNAL; |
Gavin Howard | fa4983a | 2019-02-16 23:43:03 -0700 | [diff] [blame] | 2399 | |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2400 | err: |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2401 | bc_num_free(&exp); |
Gavin Howard | d88164d | 2019-02-21 09:57:31 -0700 | [diff] [blame] | 2402 | rem_err: |
| 2403 | bc_num_free(&temp); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2404 | bc_num_free(&base); |
Gavin Howard | 3cf769e | 2018-10-11 13:55:11 -0600 | [diff] [blame] | 2405 | assert(!d->neg || d->len); |
Gavin Howard | ba00980 | 2018-09-29 04:41:51 -0600 | [diff] [blame] | 2406 | return s; |
| 2407 | } |
Gavin Howard | e6e8476 | 2018-10-03 11:46:34 -0600 | [diff] [blame] | 2408 | #endif // DC_ENABLED |
Gavin Howard | efc1e20 | 2019-05-06 08:01:07 -0600 | [diff] [blame] | 2409 | |
| 2410 | #if BC_DEBUG_CODE |
| 2411 | void bc_num_printDebug(const BcNum *n, const char *name, bool emptyline) { |
| 2412 | printf("%s: ", name); |
| 2413 | bc_num_printDecimal(n); |
| 2414 | printf("\n"); |
| 2415 | if (emptyline) printf("\n"); |
| 2416 | vm->nchars = 0; |
| 2417 | } |
| 2418 | |
| 2419 | void bc_num_printDigs(const BcNum *n, const char *name, bool emptyline) { |
| 2420 | |
| 2421 | size_t i; |
| 2422 | |
| 2423 | printf("%s len: %zu, rdx: %zu, scale: %zu\n", |
| 2424 | name, n->len, n->rdx, n->scale); |
| 2425 | |
| 2426 | for (i = n->len - 1; i < n->len; --i) |
| 2427 | printf(" %0*d", BC_BASE_POWER, n->num[i]); |
| 2428 | |
| 2429 | printf("\n"); |
| 2430 | if (emptyline) printf("\n"); |
| 2431 | vm->nchars = 0; |
| 2432 | } |
| 2433 | |
| 2434 | void bc_num_dump(const char *varname, const BcNum *n) { |
| 2435 | |
| 2436 | unsigned long i, scale = n->scale; |
| 2437 | |
| 2438 | fprintf(stderr, "\n%s = %s", varname, n->len ? (n->neg ? "-" : "+") : "0 "); |
| 2439 | |
| 2440 | for (i = n->len - 1; i < n->len; --i) { |
| 2441 | |
| 2442 | if (i + 1 == n->rdx) fprintf(stderr, ". "); |
| 2443 | |
| 2444 | if (scale / BC_BASE_POWER != n->rdx - i - 1) |
| 2445 | fprintf(stderr, "%0*d ", BC_BASE_POWER, n->num[i]); |
| 2446 | else { |
| 2447 | |
| 2448 | int mod = scale % BC_BASE_POWER; |
| 2449 | int d = BC_BASE_POWER - mod; |
| 2450 | BcDig div; |
| 2451 | |
| 2452 | if (mod != 0) { |
Gavin Howard | aafebf5 | 2019-05-06 08:41:38 -0600 | [diff] [blame] | 2453 | div = n->num[i] / ((BcDig) bc_num_pow10((unsigned long) d)); |
Gavin Howard | efc1e20 | 2019-05-06 08:01:07 -0600 | [diff] [blame] | 2454 | fprintf(stderr, "%0*d", (int) mod, div); |
| 2455 | } |
| 2456 | |
Gavin Howard | aafebf5 | 2019-05-06 08:41:38 -0600 | [diff] [blame] | 2457 | div = n->num[i] % ((BcDig) bc_num_pow10((unsigned long) d)); |
Gavin Howard | efc1e20 | 2019-05-06 08:01:07 -0600 | [diff] [blame] | 2458 | fprintf(stderr, " ' %0*d ", d, div); |
| 2459 | } |
| 2460 | } |
| 2461 | |
| 2462 | fprintf(stderr, "(%zu | %zu.%zu / %zu) %p\n", |
| 2463 | n->scale, n->len, n->rdx, n->cap, (void*) n->num); |
| 2464 | } |
| 2465 | #endif // BC_DEBUG_CODE |