namespace __detail
{
- // Compute the remainder of the Euclidean division of __n divided by __d.
- // Euclidean division truncates toward negative infinity and always
- // produces a remainder in the range of [0,__d-1] (whereas standard
- // division truncates toward zero and yields a nonpositive remainder
- // for negative __n).
+ // Helper to __add_modulo and __sub_modulo.
+ template <unsigned __d, typename _Tp>
+ consteval auto
+ __modulo_offset()
+ {
+ using _Up = make_unsigned_t<_Tp>;
+ auto constexpr __a = _Up(-1) - _Up(255 + __d - 2);
+ auto constexpr __b = _Up(__d * (__a / __d) - 1);
+ // Notice: b <= a - 1 <= _Up(-1) - (255 + d - 1) and b % d = d - 1.
+ return _Up(-1) - __b; // >= 255 + d - 1
+ }
+
+ // Compute the remainder of the Euclidean division of __x + __y divided by
+ // __d without overflowing. Typically, __x <= 255 + d - 1 is sum of
+ // weekday/month with a shift in [0, d - 1] and __y is a duration count.
+ template <unsigned __d, typename _Tp>
+ constexpr unsigned
+ __add_modulo(unsigned __x, _Tp __y)
+ {
+ using _Up = make_unsigned_t<_Tp>;
+ // For __y >= 0, _Up(__y) has the same mathematical value as __y and
+ // this function simply returns (__x + _Up(__y)) % d. Typically, this
+ // doesn't overflow since the range of _Up contains many more positive
+ // values than _Tp's. For __y < 0, _Up(__y) has a mathematical value in
+ // the upper-half range of _Up so that adding a positive value to it
+ // might overflow. Moreover, most likely, _Up(__y) != __y mod d. To
+ // fix both issues we subtract from _Up(__y) an __offset >=
+ // 255 + d - 1 to make room for the addition to __x and shift the modulo
+ // to the correct value.
+ auto const __offset = __y >= 0 ? _Up(0) : __modulo_offset<__d, _Tp>();
+ return (__x + _Up(__y) - __offset) % __d;
+ }
+
+ // Similar to __add_modulo but for __x - __y.
+ template <unsigned __d, typename _Tp>
constexpr unsigned
- __modulo(long long __n, unsigned __d)
+ __sub_modulo(unsigned __x, _Tp __y)
{
- if (__n >= 0)
- return __n % __d;
- else
- return (__d + (__n % __d)) % __d;
+ using _Up = make_unsigned_t<_Tp>;
+ auto const __offset = __y <= 0 ? _Up(0) : __modulo_offset<__d, _Tp>();
+ return (__x - _Up(__y) - __offset) % __d;
}
inline constexpr unsigned __days_per_month[12]
friend constexpr month
operator+(const month& __x, const months& __y) noexcept
{
- auto __n = static_cast<long long>(unsigned{__x}) + (__y.count() - 1);
- return month{__detail::__modulo(__n, 12) + 1};
+ // modulo(x + (y - 1), 12) = modulo(x + (y - 1) + 12, 12)
+ // = modulo((x + 11) + y , 12)
+ return month{1 + __detail::__add_modulo<12>(
+ unsigned{__x} + 11, __y.count())};
}
friend constexpr month
friend constexpr month
operator-(const month& __x, const months& __y) noexcept
- { return __x + -__y; }
+ {
+ // modulo(x + (-y - 1), 12) = modulo(x + (-y - 1) + 12, 12)
+ // = modulo((x + 11) - y , 12)
+ return month{1 + __detail::__sub_modulo<12>(
+ unsigned{__x} + 11, __y.count())};
+ }
friend constexpr months
operator-(const month& __x, const month& __y) noexcept
static constexpr weekday
_S_from_days(const days& __d)
{
- using _Rep = days::rep;
- using _URep = make_unsigned_t<_Rep>;
- const auto __n = __d.count();
- const auto __m = static_cast<_URep>(__n);
-
- // 1970-01-01 (__n = 0, __m = 0 ) -> Thursday (4)
- // 1969-31-12 (__n = -1, __m = _URep(-1)) -> Wednesday (3)
- const auto __offset = __n >= 0 ? _URep(4) : 3 - _URep(-1) % 7 - 7;
- return weekday((__m + __offset) % 7);
+ return weekday{__detail::__add_modulo<7>(4, __d.count())};
}
public:
friend constexpr weekday
operator+(const weekday& __x, const days& __y) noexcept
{
- auto __n = static_cast<long long>(__x._M_wd) + __y.count();
- return weekday{__detail::__modulo(__n, 7)};
+ return weekday{__detail::__add_modulo<7>(__x._M_wd, __y.count())};
}
friend constexpr weekday
friend constexpr weekday
operator-(const weekday& __x, const days& __y) noexcept
- { return __x + -__y; }
+ {
+ return weekday{__detail::__sub_modulo<7>(__x._M_wd, __y.count())};
+ }
friend constexpr days
operator-(const weekday& __x, const weekday& __y) noexcept
// Class template day [time.cal.month]
#include <chrono>
+#include <limits>
constexpr void
constexpr_month()
dm += months{3};
dm -= months{3};
+ // Test for UB (overflow).
+ {
+ using rep = months::rep;
+ using std::numeric_limits;
+
+ auto constexpr months_min = months{numeric_limits<rep>::min()};
+ auto constexpr month_000_plus_months_min = month{ 0 } + months_min;
+ auto constexpr month_255_plus_months_min = month{255} + months_min;
+ auto constexpr month_000_minus_months_min = month{ 0 } - months_min;
+ auto constexpr month_255_minus_months_min = month{255} - months_min;
+
+ auto constexpr months_max = months{numeric_limits<rep>::max()};
+ auto constexpr month_000_plus_months_max = month{ 0 } + months_max;
+ auto constexpr month_255_plus_months_max = month{255} + months_max;
+ auto constexpr month_000_minus_months_max = month{ 0 } - months_max;
+ auto constexpr month_255_minus_months_max = month{255} - months_max;
+ }
+
static_assert(February + months{11} == January);
static_assert(January + months{1200} == January);
static_assert(January + months{1201} == February);
{
using rep = days::rep;
using std::numeric_limits;
- constexpr weekday max{sys_days{days{numeric_limits<rep>::max()}}};
- constexpr weekday min{sys_days{days{numeric_limits<rep>::min()}}};
+
+ auto constexpr days_min = days{numeric_limits<rep>::min()};
+ auto constexpr weekday_from_sysdays_min = weekday{sys_days{days_min}};
+ auto constexpr weekday_000_plus_days_min = weekday{ 0 } + days_min;
+ auto constexpr weekday_255_plus_days_min = weekday{255} + days_min;
+ auto constexpr weekday_000_minus_days_min = weekday{ 0 } - days_min;
+ auto constexpr weekday_255_minus_days_min = weekday{255} - days_min;
+
+ auto constexpr days_max = days{numeric_limits<rep>::max()};
+ auto constexpr weekday_from_sysdays_max = weekday{sys_days{days_max}};
+ auto constexpr weekday_000_plus_days_max = weekday{ 0 } + days_max;
+ auto constexpr weekday_255_plus_days_max = weekday{255} + days_max;
+ auto constexpr weekday_000_minus_days_max = weekday{ 0 } - days_max;
+ auto constexpr weekday_255_minus_days_max = weekday{255} - days_max;
}
static_assert(weekday{sys_days{1900y/January/1}} == Monday);