LCOV - code coverage report
Current view: top level - src/util - overflow.h (source / functions) Coverage Total Hit
Test: fuzz_coverage.info Lines: 100.0 % 18 18
Test Date: 2024-09-01 05:20:30 Functions: 100.0 % 27 27
Branches: 81.6 % 136 111

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2021-2022 The Bitcoin Core developers
       2                 :             : // Distributed under the MIT software license, see the accompanying
       3                 :             : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       4                 :             : 
       5                 :             : #ifndef BITCOIN_UTIL_OVERFLOW_H
       6                 :             : #define BITCOIN_UTIL_OVERFLOW_H
       7                 :             : 
       8                 :             : #include <limits>
       9                 :             : #include <optional>
      10                 :             : #include <type_traits>
      11                 :             : 
      12                 :             : template <class T>
      13                 :   586809509 : [[nodiscard]] bool AdditionOverflow(const T i, const T j) noexcept
      14                 :             : {
      15                 :             :     static_assert(std::is_integral<T>::value, "Integral required.");
      16                 :             :     if constexpr (std::numeric_limits<T>::is_signed) {
      17   [ +  +  +  +  :    18606079 :         return (i > 0 && j > std::numeric_limits<T>::max() - i) ||
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
           + ][ +  +  +  
          +  #  #  #  #  
          #  #  #  #  #  
          #  #  #  #  #  
                   #  # ]
      18   [ +  +  +  +  :     9302943 :                (i < 0 && j < std::numeric_limits<T>::min() - i);
          +  +  +  +  +  
           + ][ +  +  #  
          #  #  #  #  #  
                   #  # ]
      19                 :             :     }
      20                 :   577506373 :     return std::numeric_limits<T>::max() - i < j;
      21                 :             : }
      22                 :             : 
      23                 :             : template <class T>
      24                 :   586618042 : [[nodiscard]] std::optional<T> CheckedAdd(const T i, const T j) noexcept
      25                 :             : {
      26 [ -  + ][ +  +  :   586618042 :     if (AdditionOverflow(i, j)) {
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
                      + ]
      27                 :        1978 :         return std::nullopt;
      28                 :             :     }
      29                 :   586616064 :     return i + j;
      30                 :   586618042 : }
      31                 :             : 
      32                 :             : template <class T>
      33                 :    22602868 : [[nodiscard]] T SaturatingAdd(const T i, const T j) noexcept
      34                 :             : {
      35                 :             :     if constexpr (std::numeric_limits<T>::is_signed) {
      36   [ +  +  +  + ]:    22601116 :         if (i > 0 && j > std::numeric_limits<T>::max() - i) {
           [ +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
                      + ]
      37                 :       48375 :             return std::numeric_limits<T>::max();
      38                 :             :         }
      39   [ +  +  +  + ]:    22552741 :         if (i < 0 && j < std::numeric_limits<T>::min() - i) {
           [ +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
          +  +  +  +  +  
                      + ]
      40                 :        3009 :             return std::numeric_limits<T>::min();
      41                 :             :         }
      42                 :             :     } else {
      43   [ +  +  +  +  :        1752 :         if (std::numeric_limits<T>::max() - i < j) {
             +  +  +  + ]
      44                 :         294 :             return std::numeric_limits<T>::max();
      45                 :             :         }
      46                 :             :     }
      47                 :    22551190 :     return i + j;
      48                 :    22602868 : }
      49                 :             : 
      50                 :             : #endif // BITCOIN_UTIL_OVERFLOW_H
        

Generated by: LCOV version 2.0-1