Bitcoin Core 31.99.0
P2P Digital Currency
overflow.h
Go to the documentation of this file.
1// Copyright (c) 2021-present 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 <cassert>
9#include <climits>
10#include <concepts>
11#include <limits>
12#include <optional>
13#include <type_traits>
14
15template <class T>
16[[nodiscard]] bool AdditionOverflow(const T i, const T j) noexcept
17{
18 static_assert(std::is_integral_v<T>, "Integral required.");
19 if constexpr (std::numeric_limits<T>::is_signed) {
20 return (i > 0 && j > std::numeric_limits<T>::max() - i) ||
21 (i < 0 && j < std::numeric_limits<T>::min() - i);
22 }
23 return std::numeric_limits<T>::max() - i < j;
24}
25
26template <class T>
27[[nodiscard]] std::optional<T> CheckedAdd(const T i, const T j) noexcept
28{
29 if (AdditionOverflow(i, j)) {
30 return std::nullopt;
31 }
32 return i + j;
33}
34
35template <std::unsigned_integral T, std::unsigned_integral U>
36[[nodiscard]] constexpr bool TrySub(T& i, const U j) noexcept
37{
38 if (i < T{j}) return false;
39 i -= T{j};
40 return true;
41}
42
43template <class T>
44[[nodiscard]] T SaturatingAdd(const T i, const T j) noexcept
45{
46 if constexpr (std::numeric_limits<T>::is_signed) {
47 if (i > 0 && j > std::numeric_limits<T>::max() - i) {
48 return std::numeric_limits<T>::max();
49 }
50 if (i < 0 && j < std::numeric_limits<T>::min() - i) {
51 return std::numeric_limits<T>::min();
52 }
53 } else {
54 if (std::numeric_limits<T>::max() - i < j) {
55 return std::numeric_limits<T>::max();
56 }
57 }
58 return i + j;
59}
60
69template <std::unsigned_integral Dividend, std::unsigned_integral Divisor>
70[[nodiscard]] constexpr auto CeilDiv(const Dividend dividend, const Divisor divisor)
71{
72 assert(divisor > 0);
73 return dividend / divisor + (dividend % divisor != 0);
74}
75
82template <std::integral T>
83constexpr std::optional<T> CheckedLeftShift(T input, unsigned shift) noexcept
84{
85 if (shift == 0 || input == 0) return input;
86 // Avoid undefined c++ behaviour if shift is >= number of bits in T.
87 if (shift >= sizeof(T) * CHAR_BIT) return std::nullopt;
88 // If input << shift is too big to fit in T, return nullopt.
89 if (input > (std::numeric_limits<T>::max() >> shift)) return std::nullopt;
90 if (input < (std::numeric_limits<T>::min() >> shift)) return std::nullopt;
91 return input << shift;
92}
93
101template <std::integral T>
102constexpr T SaturatingLeftShift(T input, unsigned shift) noexcept
103{
104 if (auto result{CheckedLeftShift(input, shift)}) return *result;
105 // If input << shift is too big to fit in T, return biggest positive or negative
106 // number that fits.
107 return input < 0 ? std::numeric_limits<T>::min() : std::numeric_limits<T>::max();
108}
109
110#endif // BITCOIN_UTIL_OVERFLOW_H
#define T(expected, seed, data)
constexpr bool TrySub(T &i, const U j) noexcept
Definition: overflow.h:36
std::optional< T > CheckedAdd(const T i, const T j) noexcept
Definition: overflow.h:27
constexpr T SaturatingLeftShift(T input, unsigned shift) noexcept
Left bit shift with safe minimum and maximum values.
Definition: overflow.h:102
bool AdditionOverflow(const T i, const T j) noexcept
Definition: overflow.h:16
constexpr auto CeilDiv(const Dividend dividend, const Divisor divisor)
Integer ceiling division (for unsigned values).
Definition: overflow.h:70
T SaturatingAdd(const T i, const T j) noexcept
Definition: overflow.h:44
constexpr std::optional< T > CheckedLeftShift(T input, unsigned shift) noexcept
Left bit shift with overflow checking.
Definition: overflow.h:83
assert(!tx.IsCoinBase())