LCOV - code coverage report
Current view: top level - src - arith_uint256.cpp (source / functions) Coverage Total Hit
Test: total_coverage.info Lines: 100.0 % 128 128
Test Date: 2025-01-19 05:08:01 Functions: 100.0 % 15 15
Branches: 92.0 % 100 92

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2022 The Bitcoin Core developers
       3                 :             : // Distributed under the MIT software license, see the accompanying
       4                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       5                 :             : 
       6                 :             : #include <arith_uint256.h>
       7                 :             : 
       8                 :             : #include <uint256.h>
       9                 :             : #include <crypto/common.h>
      10                 :             : 
      11                 :             : #include <cassert>
      12                 :             : 
      13                 :             : template <unsigned int BITS>
      14                 :     3201597 : base_uint<BITS>& base_uint<BITS>::operator<<=(unsigned int shift)
      15                 :             : {
      16                 :    28814373 :     base_uint<BITS> a(*this);
      17         [ +  + ]:    28814373 :     for (int i = 0; i < WIDTH; i++)
      18                 :    25612776 :         pn[i] = 0;
      19                 :     3201597 :     int k = shift / 32;
      20                 :     3201597 :     shift = shift % 32;
      21         [ +  + ]:    28814373 :     for (int i = 0; i < WIDTH; i++) {
      22   [ +  +  +  + ]:    25612776 :         if (i + k + 1 < WIDTH && shift != 0)
      23                 :     5422049 :             pn[i + k + 1] |= (a.pn[i] >> (32 - shift));
      24         [ +  + ]:    25612776 :         if (i + k < WIDTH)
      25                 :     8785367 :             pn[i + k] |= (a.pn[i] << shift);
      26                 :             :     }
      27                 :     3201597 :     return *this;
      28                 :             : }
      29                 :             : 
      30                 :             : template <unsigned int BITS>
      31                 :     1635628 : base_uint<BITS>& base_uint<BITS>::operator>>=(unsigned int shift)
      32                 :             : {
      33                 :    14720652 :     base_uint<BITS> a(*this);
      34         [ +  + ]:    14720652 :     for (int i = 0; i < WIDTH; i++)
      35                 :    13085024 :         pn[i] = 0;
      36                 :     1635628 :     int k = shift / 32;
      37                 :     1635628 :     shift = shift % 32;
      38         [ +  + ]:    14720652 :     for (int i = 0; i < WIDTH; i++) {
      39   [ +  +  +  + ]:    13085024 :         if (i - k - 1 >= 0 && shift != 0)
      40                 :     9476241 :             pn[i - k - 1] |= (a.pn[i] << (32 - shift));
      41         [ +  + ]:    13085024 :         if (i - k >= 0)
      42                 :    11112630 :             pn[i - k] |= (a.pn[i] >> shift);
      43                 :             :     }
      44                 :     1635628 :     return *this;
      45                 :             : }
      46                 :             : 
      47                 :             : template <unsigned int BITS>
      48                 :       13253 : base_uint<BITS>& base_uint<BITS>::operator*=(uint32_t b32)
      49                 :             : {
      50                 :       13253 :     uint64_t carry = 0;
      51         [ +  + ]:      119277 :     for (int i = 0; i < WIDTH; i++) {
      52                 :      106024 :         uint64_t n = carry + (uint64_t)b32 * pn[i];
      53                 :      106024 :         pn[i] = n & 0xffffffff;
      54                 :      106024 :         carry = n >> 32;
      55                 :             :     }
      56                 :       13253 :     return *this;
      57                 :             : }
      58                 :             : 
      59                 :             : template <unsigned int BITS>
      60                 :       67660 : base_uint<BITS>& base_uint<BITS>::operator*=(const base_uint& b)
      61                 :             : {
      62                 :      608940 :     base_uint<BITS> a;
      63         [ +  + ]:      608940 :     for (int j = 0; j < WIDTH; j++) {
      64                 :             :         uint64_t carry = 0;
      65         [ +  + ]:     2977040 :         for (int i = 0; i + j < WIDTH; i++) {
      66                 :     2435760 :             uint64_t n = carry + a.pn[i + j] + (uint64_t)pn[j] * b.pn[i];
      67                 :     2435760 :             a.pn[i + j] = n & 0xffffffff;
      68                 :     2435760 :             carry = n >> 32;
      69                 :             :         }
      70                 :             :     }
      71                 :       67660 :     *this = a;
      72                 :       67660 :     return *this;
      73                 :             : }
      74                 :             : 
      75                 :             : template <unsigned int BITS>
      76                 :      630445 : base_uint<BITS>& base_uint<BITS>::operator/=(const base_uint& b)
      77                 :             : {
      78                 :      630445 :     base_uint<BITS> div = b;     // make a copy, so we can shift.
      79                 :      630445 :     base_uint<BITS> num = *this; // make a copy, so we can subtract.
      80                 :      630445 :     *this = 0;                   // the quotient.
      81                 :      630445 :     int num_bits = num.bits();
      82                 :      630445 :     int div_bits = div.bits();
      83         [ +  + ]:      630445 :     if (div_bits == 0)
      84         [ +  - ]:           4 :         throw uint_error("Division by zero");
      85         [ +  + ]:      630443 :     if (div_bits > num_bits) // the result is certainly 0.
      86                 :             :         return *this;
      87                 :      630442 :     int shift = num_bits - div_bits;
      88                 :      630442 :     div <<= shift; // shift so that div and num align.
      89         [ +  + ]:     1980356 :     while (shift >= 0) {
      90         [ +  + ]:     1349914 :         if (num >= div) {
      91                 :      644841 :             num -= div;
      92                 :      644841 :             pn[shift / 32] |= (1U << (shift & 31)); // set a bit of the result.
      93                 :             :         }
      94                 :     1349914 :         div >>= 1; // shift back.
      95                 :     1349914 :         shift--;
      96                 :             :     }
      97                 :             :     // num now contains the remainder of the division.
      98                 :             :     return *this;
      99                 :             : }
     100                 :             : 
     101                 :             : template <unsigned int BITS>
     102                 :  1535080862 : int base_uint<BITS>::CompareTo(const base_uint<BITS>& b) const
     103                 :             : {
     104         [ +  + ]: 12247200261 :     for (int i = WIDTH - 1; i >= 0; i--) {
     105         [ +  + ]: 12231582646 :         if (pn[i] < b.pn[i])
     106                 :             :             return -1;
     107         [ +  + ]: 11233576105 :         if (pn[i] > b.pn[i])
     108                 :             :             return 1;
     109                 :             :     }
     110                 :             :     return 0;
     111                 :             : }
     112                 :             : 
     113                 :             : template <unsigned int BITS>
     114                 :     2513967 : bool base_uint<BITS>::EqualTo(uint64_t b) const
     115                 :             : {
     116         [ +  + ]:     2518994 :     for (int i = WIDTH - 1; i >= 2; i--) {
     117         [ +  + ]:     2518887 :         if (pn[i])
     118                 :             :             return false;
     119                 :             :     }
     120         [ +  + ]:         107 :     if (pn[1] != (b >> 32))
     121                 :             :         return false;
     122         [ +  + ]:          75 :     if (pn[0] != (b & 0xfffffffful))
     123                 :          32 :         return false;
     124                 :             :     return true;
     125                 :             : }
     126                 :             : 
     127                 :             : template <unsigned int BITS>
     128                 :      149285 : double base_uint<BITS>::getdouble() const
     129                 :             : {
     130                 :      149285 :     double ret = 0.0;
     131                 :      149285 :     double fact = 1.0;
     132         [ +  + ]:     1343565 :     for (int i = 0; i < WIDTH; i++) {
     133                 :     1194280 :         ret += fact * pn[i];
     134                 :     1194280 :         fact *= 4294967296.0;
     135                 :             :     }
     136                 :      149285 :     return ret;
     137                 :             : }
     138                 :             : 
     139                 :             : template <unsigned int BITS>
     140                 :       26389 : std::string base_uint<BITS>::GetHex() const
     141                 :             : {
     142                 :       26389 :     base_blob<BITS> b;
     143         [ +  + ]:      237501 :     for (int x = 0; x < this->WIDTH; ++x) {
     144                 :      211112 :         WriteLE32(b.begin() + x*4, this->pn[x]);
     145                 :             :     }
     146                 :       26389 :     return b.GetHex();
     147                 :             : }
     148                 :             : 
     149                 :             : template <unsigned int BITS>
     150                 :          31 : std::string base_uint<BITS>::ToString() const
     151                 :             : {
     152                 :          31 :     return GetHex();
     153                 :             : }
     154                 :             : 
     155                 :             : template <unsigned int BITS>
     156                 :     1540460 : unsigned int base_uint<BITS>::bits() const
     157                 :             : {
     158         [ +  + ]:     1572456 :     for (int pos = WIDTH - 1; pos >= 0; pos--) {
     159         [ +  + ]:     1572442 :         if (pn[pos]) {
     160         [ +  + ]:     2517414 :             for (int nbits = 31; nbits > 0; nbits--) {
     161         [ +  + ]:     2517411 :                 if (pn[pos] & 1U << nbits)
     162                 :     1540443 :                     return 32 * pos + nbits + 1;
     163                 :             :             }
     164                 :           3 :             return 32 * pos + 1;
     165                 :             :         }
     166                 :             :     }
     167                 :             :     return 0;
     168                 :             : }
     169                 :             : 
     170                 :             : // Explicit instantiations for base_uint<256>
     171                 :             : template class base_uint<256>;
     172                 :             : 
     173                 :             : // This implementation directly uses shifts instead of going
     174                 :             : // through an intermediate MPI representation.
     175                 :     2515821 : arith_uint256& arith_uint256::SetCompact(uint32_t nCompact, bool* pfNegative, bool* pfOverflow)
     176                 :             : {
     177                 :     2515821 :     int nSize = nCompact >> 24;
     178                 :     2515821 :     uint32_t nWord = nCompact & 0x007fffff;
     179         [ +  + ]:     2515821 :     if (nSize <= 3) {
     180                 :          47 :         nWord >>= 8 * (3 - nSize);
     181         [ +  - ]:          94 :         *this = nWord;
     182                 :             :     } else {
     183         [ +  - ]:     5031548 :         *this = nWord;
     184                 :     2515774 :         *this <<= 8 * (nSize - 3);
     185                 :             :     }
     186         [ +  + ]:     2515821 :     if (pfNegative)
     187   [ +  +  +  + ]:     5027445 :         *pfNegative = nWord != 0 && (nCompact & 0x00800000) != 0;
     188         [ +  + ]:     2515821 :     if (pfOverflow)
     189   [ +  +  +  + ]:     5027446 :         *pfOverflow = nWord != 0 && ((nSize > 34) ||
     190         [ +  - ]:     2513677 :                                      (nWord > 0xff && nSize > 33) ||
     191         [ +  - ]:     2513677 :                                      (nWord > 0xffff && nSize > 32));
     192                 :     2515821 :     return *this;
     193                 :             : }
     194                 :             : 
     195                 :      278196 : uint32_t arith_uint256::GetCompact(bool fNegative) const
     196                 :             : {
     197                 :      278196 :     int nSize = (bits() + 7) / 8;
     198                 :      278196 :     uint32_t nCompact = 0;
     199         [ +  + ]:      278196 :     if (nSize <= 3) {
     200                 :          17 :         nCompact = GetLow64() << 8 * (3 - nSize);
     201                 :             :     } else {
     202                 :      278179 :         arith_uint256 bn = *this >> 8 * (nSize - 3);
     203                 :      278179 :         nCompact = bn.GetLow64();
     204                 :             :     }
     205                 :             :     // The 0x00800000 bit denotes the sign.
     206                 :             :     // Thus, if it is already set, divide the mantissa by 256 and increase the exponent.
     207         [ +  + ]:      278196 :     if (nCompact & 0x00800000) {
     208                 :         932 :         nCompact >>= 8;
     209                 :         932 :         nSize++;
     210                 :             :     }
     211         [ -  + ]:      278196 :     assert((nCompact & ~0x007fffffU) == 0);
     212         [ -  + ]:      278196 :     assert(nSize < 256);
     213                 :      278196 :     nCompact |= nSize << 24;
     214   [ +  +  -  + ]:      278196 :     nCompact |= (fNegative && (nCompact & 0x007fffff) ? 0x00800000 : 0);
     215                 :      278196 :     return nCompact;
     216                 :             : }
     217                 :             : 
     218                 :      250019 : uint256 ArithToUint256(const arith_uint256 &a)
     219                 :             : {
     220                 :      250019 :     uint256 b;
     221         [ +  + ]:     2250171 :     for(int x=0; x<a.WIDTH; ++x)
     222                 :     2000152 :         WriteLE32(b.begin() + x*4, a.pn[x]);
     223                 :      250019 :     return b;
     224                 :             : }
     225                 :     7109659 : arith_uint256 UintToArith256(const uint256 &a)
     226                 :             : {
     227                 :     7109659 :     arith_uint256 b;
     228         [ +  + ]:    63986931 :     for(int x=0; x<b.WIDTH; ++x)
     229                 :    56877272 :         b.pn[x] = ReadLE32(a.begin() + x*4);
     230                 :     7109659 :     return b;
     231                 :             : }
        

Generated by: LCOV version 2.0-1