2018-08-24 14:20:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-09-15 09:55:57 +00:00
|
|
|
#include <common/extended_types.h>
|
2021-02-13 00:56:38 +00:00
|
|
|
#include <common/defines.h>
|
|
|
|
|
2020-08-19 11:52:17 +00:00
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
namespace common
|
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
/// Multiply and ignore overflow.
|
|
|
|
template <typename T1, typename T2>
|
|
|
|
inline auto NO_SANITIZE_UNDEFINED mulIgnoreOverflow(T1 x, T2 y)
|
|
|
|
{
|
|
|
|
return x * y;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T1, typename T2>
|
|
|
|
inline auto NO_SANITIZE_UNDEFINED addIgnoreOverflow(T1 x, T2 y)
|
|
|
|
{
|
|
|
|
return x + y;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T1, typename T2>
|
|
|
|
inline auto NO_SANITIZE_UNDEFINED subIgnoreOverflow(T1 x, T2 y)
|
|
|
|
{
|
|
|
|
return x - y;
|
|
|
|
}
|
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
template <typename T>
|
2021-04-01 00:44:02 +00:00
|
|
|
inline auto NO_SANITIZE_UNDEFINED negateIgnoreOverflow(T x)
|
|
|
|
{
|
|
|
|
return -x;
|
|
|
|
}
|
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
template <typename T>
|
|
|
|
inline bool addOverflow(T x, T y, T & res)
|
|
|
|
{
|
|
|
|
return __builtin_add_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool addOverflow(int x, int y, int & res)
|
|
|
|
{
|
|
|
|
return __builtin_sadd_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool addOverflow(long x, long y, long & res)
|
|
|
|
{
|
|
|
|
return __builtin_saddl_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool addOverflow(long long x, long long y, long long & res)
|
|
|
|
{
|
|
|
|
return __builtin_saddll_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2021-04-25 09:30:43 +00:00
|
|
|
inline bool addOverflow(Int128 x, Int128 y, Int128 & res)
|
2018-08-24 14:20:23 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = addIgnoreOverflow(x, y);
|
2021-04-25 09:30:43 +00:00
|
|
|
return (y > 0 && x > std::numeric_limits<Int128>::max() - y) ||
|
|
|
|
(y < 0 && x < std::numeric_limits<Int128>::min() - y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool addOverflow(UInt128 x, UInt128 y, UInt128 & res)
|
|
|
|
{
|
|
|
|
res = addIgnoreOverflow(x, y);
|
|
|
|
return x > std::numeric_limits<UInt128>::max() - y;
|
2018-08-24 14:20:23 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 11:52:17 +00:00
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool addOverflow(Int256 x, Int256 y, Int256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = addIgnoreOverflow(x, y);
|
2021-01-27 00:54:57 +00:00
|
|
|
return (y > 0 && x > std::numeric_limits<Int256>::max() - y) ||
|
|
|
|
(y < 0 && x < std::numeric_limits<Int256>::min() - y);
|
2020-08-19 11:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool addOverflow(UInt256 x, UInt256 y, UInt256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = addIgnoreOverflow(x, y);
|
2021-01-27 00:54:57 +00:00
|
|
|
return x > std::numeric_limits<UInt256>::max() - y;
|
2020-08-19 11:52:17 +00:00
|
|
|
}
|
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
template <typename T>
|
|
|
|
inline bool subOverflow(T x, T y, T & res)
|
|
|
|
{
|
|
|
|
return __builtin_sub_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool subOverflow(int x, int y, int & res)
|
|
|
|
{
|
|
|
|
return __builtin_ssub_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool subOverflow(long x, long y, long & res)
|
|
|
|
{
|
|
|
|
return __builtin_ssubl_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool subOverflow(long long x, long long y, long long & res)
|
|
|
|
{
|
|
|
|
return __builtin_ssubll_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2021-04-25 09:30:43 +00:00
|
|
|
inline bool subOverflow(Int128 x, Int128 y, Int128 & res)
|
2018-08-24 14:20:23 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = subIgnoreOverflow(x, y);
|
2021-04-25 09:30:43 +00:00
|
|
|
return (y < 0 && x > std::numeric_limits<Int128>::max() + y) ||
|
|
|
|
(y > 0 && x < std::numeric_limits<Int128>::min() + y);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool subOverflow(UInt128 x, UInt128 y, UInt128 & res)
|
|
|
|
{
|
|
|
|
res = subIgnoreOverflow(x, y);
|
|
|
|
return x < y;
|
2018-08-24 14:20:23 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 11:52:17 +00:00
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool subOverflow(Int256 x, Int256 y, Int256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = subIgnoreOverflow(x, y);
|
2021-01-27 00:54:57 +00:00
|
|
|
return (y < 0 && x > std::numeric_limits<Int256>::max() + y) ||
|
|
|
|
(y > 0 && x < std::numeric_limits<Int256>::min() + y);
|
2020-08-19 11:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool subOverflow(UInt256 x, UInt256 y, UInt256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = subIgnoreOverflow(x, y);
|
2020-08-19 11:52:17 +00:00
|
|
|
return x < y;
|
|
|
|
}
|
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
template <typename T>
|
|
|
|
inline bool mulOverflow(T x, T y, T & res)
|
|
|
|
{
|
|
|
|
return __builtin_mul_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool mulOverflow(int x, int y, int & res)
|
|
|
|
{
|
|
|
|
return __builtin_smul_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool mulOverflow(long x, long y, long & res)
|
|
|
|
{
|
|
|
|
return __builtin_smull_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool mulOverflow(long long x, long long y, long long & res)
|
|
|
|
{
|
|
|
|
return __builtin_smulll_overflow(x, y, &res);
|
|
|
|
}
|
|
|
|
|
2021-05-03 19:56:40 +00:00
|
|
|
/// Overflow check is not implemented for big integers.
|
|
|
|
|
2018-08-24 14:20:23 +00:00
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool mulOverflow(Int128 x, Int128 y, Int128 & res)
|
2018-08-24 14:20:23 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = mulIgnoreOverflow(x, y);
|
2021-05-03 19:56:40 +00:00
|
|
|
return false;
|
2018-08-24 14:20:23 +00:00
|
|
|
}
|
2020-08-19 11:52:17 +00:00
|
|
|
|
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool mulOverflow(Int256 x, Int256 y, Int256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = mulIgnoreOverflow(x, y);
|
2021-05-03 19:56:40 +00:00
|
|
|
return false;
|
2020-08-19 11:52:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
2021-01-27 00:54:57 +00:00
|
|
|
inline bool mulOverflow(UInt128 x, UInt128 y, UInt128 & res)
|
|
|
|
{
|
2021-05-03 19:56:40 +00:00
|
|
|
res = mulIgnoreOverflow(x, y);
|
|
|
|
return false;
|
2021-01-27 00:54:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
inline bool mulOverflow(UInt256 x, UInt256 y, UInt256 & res)
|
2020-08-19 11:52:17 +00:00
|
|
|
{
|
2021-02-21 10:23:18 +00:00
|
|
|
res = mulIgnoreOverflow(x, y);
|
2021-05-03 19:56:40 +00:00
|
|
|
return false;
|
2020-08-19 11:52:17 +00:00
|
|
|
}
|
2018-08-24 14:20:23 +00:00
|
|
|
}
|