2012-05-25 15:19:07 +10:00
|
|
|
/*
|
2018-08-04 15:14:06 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2012-05-25 15:19:07 +10:00
|
|
|
*
|
2018-08-20 15:08:15 +10:00
|
|
|
* Copyright 2011-2018 Danny Robson <danny@nerdcruft.net>
|
2012-05-25 15:19:07 +10:00
|
|
|
*/
|
|
|
|
|
2018-08-20 15:08:15 +10:00
|
|
|
#pragma once
|
2012-05-25 15:19:07 +10:00
|
|
|
|
2017-11-22 16:49:37 +11:00
|
|
|
#include "debug.hpp"
|
2018-08-20 15:08:15 +10:00
|
|
|
#include "platform.hpp"
|
2012-05-25 15:19:07 +10:00
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
|
2018-08-05 14:42:02 +10:00
|
|
|
namespace cruft::cast {
|
2018-01-16 15:11:15 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// Safely cast a numeric type to its (un)signed counterpart, aborting if
|
|
|
|
/// the dynamically checked result is not representable. May be optimised
|
|
|
|
/// out if NDEBUG is defined.
|
|
|
|
///
|
|
|
|
/// The signed/unsigned and unsigned/signed cases are split so we can
|
|
|
|
/// simplify the out of range tests.
|
|
|
|
///
|
|
|
|
/// The same-type case is not provided because we want to error out on
|
|
|
|
/// unnecessary casts.
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
typename U
|
|
|
|
>
|
|
|
|
std::enable_if_t<
|
|
|
|
sizeof(T) == sizeof(U) &&
|
|
|
|
std::is_unsigned<T>::value &&
|
|
|
|
std::is_signed<U>::value,
|
|
|
|
T
|
|
|
|
>
|
|
|
|
sign (const U u)
|
|
|
|
{
|
|
|
|
CHECK_GE (u, 0);
|
|
|
|
return static_cast<T> (u);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <
|
|
|
|
typename T,
|
|
|
|
typename U
|
|
|
|
>
|
|
|
|
std::enable_if_t<
|
|
|
|
sizeof(T) == sizeof (U) &&
|
|
|
|
std::is_signed<T>::value &&
|
|
|
|
std::is_unsigned<U>::value,
|
|
|
|
T
|
|
|
|
>
|
|
|
|
sign (const U u)
|
|
|
|
{
|
|
|
|
CHECK_LT (u, std::numeric_limits<U>::max () / 2);
|
|
|
|
return static_cast<T> (u);
|
2016-10-25 17:48:55 +11:00
|
|
|
}
|
|
|
|
|
2012-06-08 16:46:03 +10:00
|
|
|
|
2018-01-16 15:11:15 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-01-30 16:25:28 +11:00
|
|
|
// cast to a smaller type of the same signedness and realness and assert
|
|
|
|
// that both values are still equal.
|
2018-01-16 15:11:15 +11:00
|
|
|
//
|
|
|
|
// checks will be compiled out if NDEBUG is defined.
|
2018-01-30 16:25:28 +11:00
|
|
|
template <
|
|
|
|
typename NarrowT,
|
|
|
|
typename WideT,
|
|
|
|
typename = std::enable_if_t<
|
|
|
|
std::is_arithmetic_v<NarrowT> &&
|
|
|
|
std::is_arithmetic_v<WideT> &&
|
|
|
|
std::is_signed_v<NarrowT> == std::is_signed_v<WideT> &&
|
|
|
|
std::is_floating_point_v<NarrowT> == std::is_floating_point_v<WideT> &&
|
|
|
|
sizeof (NarrowT) <= sizeof (WideT),
|
|
|
|
void
|
|
|
|
>
|
|
|
|
>
|
2018-01-16 15:11:15 +11:00
|
|
|
constexpr NarrowT
|
|
|
|
narrow (const WideT &val)
|
|
|
|
{
|
|
|
|
static_assert (sizeof (NarrowT) <= sizeof (WideT));
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
auto narrow = static_cast<NarrowT> (val);
|
|
|
|
CHECK_EQ (narrow, val);
|
|
|
|
return narrow;
|
2016-10-25 17:48:55 +11:00
|
|
|
#else
|
2018-01-16 15:11:15 +11:00
|
|
|
return static_cast<NarrowT> (val);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-10-25 17:48:55 +11:00
|
|
|
|
2018-01-16 15:11:15 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// cast between types checking that equality holds with the result
|
|
|
|
//
|
|
|
|
// checks will be compiled out if NDEBUG is defined.
|
|
|
|
template <typename DstT, typename SrcT>
|
|
|
|
constexpr DstT
|
|
|
|
lossless (const SrcT &src)
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
|
|
|
auto dst = static_cast<DstT> (src);
|
|
|
|
|
|
|
|
if constexpr (std::is_floating_point_v<SrcT>) {
|
2018-05-10 12:45:20 +10:00
|
|
|
if (std::isnan (src)) {
|
2018-01-16 15:11:15 +11:00
|
|
|
// NaNs must remaing as NaN's. They're important.
|
|
|
|
CHECK (std::is_floating_point_v<DstT>);
|
|
|
|
CHECK (std::isnan (dst));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cast dst back to src to check round-trip conversion
|
|
|
|
// is lossless.
|
|
|
|
CHECK_EQ (static_cast<SrcT> (dst), src);
|
|
|
|
return dst;
|
2016-10-25 17:48:55 +11:00
|
|
|
|
2018-01-16 15:11:15 +11:00
|
|
|
#else
|
|
|
|
return static_cast<DstT> (src);
|
2016-10-25 17:48:55 +11:00
|
|
|
#endif
|
2018-01-16 15:11:15 +11:00
|
|
|
}
|
2016-10-25 17:48:55 +11:00
|
|
|
|
2012-06-20 16:48:40 +10:00
|
|
|
|
2018-01-16 15:11:15 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// assert if the value is not a pointer to a subclass of T, else return
|
|
|
|
/// the converted value. Note: this is only a debug-time check and is
|
|
|
|
/// compiled out in optimised builds.
|
|
|
|
template <typename T, typename V>
|
|
|
|
T*
|
|
|
|
known (V *v)
|
|
|
|
{
|
|
|
|
CHECK (dynamic_cast<T*> (v));
|
|
|
|
return static_cast<T*> (v);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T, typename V>
|
|
|
|
T&
|
|
|
|
known (V &v)
|
|
|
|
{
|
|
|
|
CHECK_NOTHROW (dynamic_cast<T> (v));
|
|
|
|
return static_cast<T> (v);
|
|
|
|
}
|
2018-05-09 17:47:47 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// cast a pointer from one type to another, asserting that the required
|
|
|
|
/// alignment of the destination type has been satisfied.
|
2018-05-10 12:52:01 +10:00
|
|
|
template <
|
|
|
|
typename DstT,
|
|
|
|
typename SrcT,
|
|
|
|
typename = std::enable_if_t<std::is_pointer_v<DstT> && std::is_pointer_v<SrcT>>
|
|
|
|
>
|
|
|
|
DstT
|
|
|
|
alignment (SrcT src)
|
2018-05-09 17:47:47 +10:00
|
|
|
{
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
2018-05-10 14:54:03 +10:00
|
|
|
CHECK_MOD (reinterpret_cast<uintptr_t> (src), alignof (std::remove_pointer_t<DstT>));
|
2018-05-10 12:52:01 +10:00
|
|
|
return reinterpret_cast<DstT> (src);
|
2018-05-09 17:47:47 +10:00
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
}
|
2018-05-10 13:52:49 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
/// cast from SrcT to DstT and damn any consequences.
|
|
|
|
template <typename DstT, typename SrcT>
|
|
|
|
DstT ffs (SrcT src)
|
|
|
|
{
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
2018-08-20 15:08:15 +10:00
|
|
|
#if defined(COMPILER_GCC)
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-function-type"
|
|
|
|
#endif
|
2018-05-10 13:52:49 +10:00
|
|
|
return reinterpret_cast<DstT> (src);
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
}
|
|
|
|
}
|