/* * Copyright (C) 2011-2019 Apple Inc. All rights reserved. * Copyright (c) 2020, Andreas Kling * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include #include #include namespace AK { template= sizeof(Source)), bool destination_is_signed = NumericLimits::is_signed(), bool source_is_signed = NumericLimits::is_signed()> struct TypeBoundsChecker; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { return value <= NumericLimits::max(); } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { return value <= NumericLimits::max() && NumericLimits::min() <= value; } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { return static_cast>(value) <= NumericLimits::max(); } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { return value <= static_cast(NumericLimits::max()); } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source) { return true; } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source) { return true; } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { return value >= 0; } }; template struct TypeBoundsChecker { static constexpr bool is_within_range(Source value) { if (sizeof(Destination) > sizeof(Source)) return true; return value <= static_cast(NumericLimits::max()); } }; template inline constexpr bool is_within_range(Source value) { return TypeBoundsChecker::is_within_range(value); } template class Checked { public: Checked() : m_value(0) { } Checked(T value) : m_value(value) { } template Checked(U value) { m_overflow = !is_within_range(value); m_value = value; } Checked(const Checked& other) : m_value(other.m_value) , m_overflow(other.m_overflow) { } Checked(Checked&& other) : m_value(exchange(other.m_value, 0)) , m_overflow(exchange(other.m_overflow, false)) { } template Checked& operator=(U value) { return *this = Checked(value); } Checked& operator=(const Checked& other) { m_value = other.value(); m_overflow = other.m_overflow; return *this; } Checked& operator=(Checked&& other) { m_value = exchange(other.m_value, 0); m_overflow = exchange(other.m_overflow, false); return *this; } bool has_overflow() const { return m_overflow; } bool operator!() const { ASSERT(!m_overflow); return !m_value; } T value() const { ASSERT(!m_overflow); return m_value; } void add(T other) { m_overflow |= __builtin_add_overflow(m_value, other, &m_value); } void sub(T other) { m_overflow |= __builtin_sub_overflow(m_value, other, &m_value); } void mul(T other) { m_overflow |= __builtin_mul_overflow(m_value, other, &m_value); } void div(T other) { m_value /= other; } Checked& operator+=(T other) { add(other); return *this; } Checked& operator-=(T other) { sub(other); return *this; } Checked& operator*=(T other) { mul(other); return *this; } Checked& operator/=(T other) { div(other); return *this; } Checked& operator++() { add(1); return *this; } Checked& operator++(int) { add(1); return *this; } template static bool addition_would_overflow(U u, V v) { #ifdef __clang__ Checked checked; checked = u; checked += v; return checked.has_overflow(); #else return __builtin_add_overflow_p(u, v, (T)0); #endif } template static bool multiplication_would_overflow(U u, V v) { #ifdef __clang__ Checked checked; checked = u; checked *= v; return checked.has_overflow(); #else return __builtin_mul_overflow_p(u, v, (T)0); #endif } template static bool multiplication_would_overflow(U u, V v, X x) { Checked checked; checked = u; checked *= v; checked *= x; return checked.has_overflow(); } private: T m_value; bool m_overflow { false }; }; template inline Checked operator+(const Checked& a, const Checked& b) { return Checked(a).add(b); } template inline Checked operator-(const Checked& a, const Checked& b) { return Checked(a).sub(b); } template inline Checked operator*(const Checked& a, const Checked& b) { return Checked(a).mul(b); } template inline Checked operator/(const Checked& a, const Checked& b) { return Checked(a).div(b); } template inline bool operator<(const Checked& a, T b) { return a.value() < b; } template inline bool operator>(const Checked& a, T b) { return a.value() > b; } template inline bool operator>=(const Checked& a, T b) { return a.value() >= b; } template inline bool operator<=(const Checked& a, T b) { return a.value() <= b; } template inline bool operator==(const Checked& a, T b) { return a.value() == b; } template inline bool operator!=(const Checked& a, T b) { return a.value() != b; } template inline bool operator<(T a, const Checked& b) { return a < b.value(); } template inline bool operator>(T a, const Checked& b) { return a > b.value(); } template inline bool operator>=(T a, const Checked& b) { return a >= b.value(); } template inline bool operator<=(T a, const Checked& b) { return a <= b.value(); } template inline bool operator==(T a, const Checked& b) { return a == b.value(); } template inline bool operator!=(T a, const Checked& b) { return a != b.value(); } template inline Checked make_checked(T value) { return Checked(value); } } using AK::Checked; using AK::make_checked;