2013-07-24 07:41:39 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2013-04-23 21:36:51 +00: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/. */
|
|
|
|
|
|
|
|
/* Cast operations to supplement the built-in casting operations. */
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#ifndef mozilla_Casting_h
|
|
|
|
#define mozilla_Casting_h
|
2013-04-23 21:36:51 +00:00
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/TypeTraits.h"
|
|
|
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2013-06-07 01:47:51 +00:00
|
|
|
/**
|
|
|
|
* Return a value of type |To|, containing the underlying bit pattern of |from|.
|
|
|
|
*
|
|
|
|
* |To| and |From| must be types of the same size; be careful of cross-platform
|
|
|
|
* size differences, or this might fail to compile on some but not all
|
|
|
|
* platforms.
|
|
|
|
*/
|
|
|
|
template<typename To, typename From>
|
|
|
|
inline To
|
|
|
|
BitwiseCast(const From from)
|
|
|
|
{
|
2013-07-18 17:59:53 +00:00
|
|
|
static_assert(sizeof(From) == sizeof(To),
|
|
|
|
"To and From must have the same size");
|
2013-06-07 01:47:51 +00:00
|
|
|
union {
|
|
|
|
From from;
|
|
|
|
To to;
|
|
|
|
} u;
|
|
|
|
u.from = from;
|
|
|
|
return u.to;
|
|
|
|
}
|
|
|
|
|
2013-04-23 21:36:51 +00:00
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
enum ToSignedness { ToIsSigned, ToIsUnsigned };
|
|
|
|
enum FromSignedness { FromIsSigned, FromIsUnsigned };
|
|
|
|
|
|
|
|
template<typename From,
|
|
|
|
typename To,
|
|
|
|
FromSignedness = IsSigned<From>::value ? FromIsSigned : FromIsUnsigned,
|
|
|
|
ToSignedness = IsSigned<To>::value ? ToIsSigned : ToIsUnsigned>
|
|
|
|
struct BoundsCheckImpl;
|
|
|
|
|
|
|
|
// Implicit conversions on operands to binary operations make this all a bit
|
|
|
|
// hard to verify. Attempt to ease the pain below by *only* comparing values
|
|
|
|
// that are obviously the same type (and will undergo no further conversions),
|
|
|
|
// even when it's not strictly necessary, for explicitness.
|
|
|
|
|
2013-05-06 23:38:42 +00:00
|
|
|
enum UUComparison { FromIsBigger, FromIsNotBigger };
|
|
|
|
|
|
|
|
// Unsigned-to-unsigned range check
|
|
|
|
|
|
|
|
template<typename From, typename To,
|
|
|
|
UUComparison = (sizeof(From) > sizeof(To)) ? FromIsBigger : FromIsNotBigger>
|
|
|
|
struct UnsignedUnsignedCheck;
|
|
|
|
|
|
|
|
template<typename From, typename To>
|
|
|
|
struct UnsignedUnsignedCheck<From, To, FromIsBigger>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-05-06 23:38:42 +00:00
|
|
|
return from <= From(To(-1));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename From, typename To>
|
|
|
|
struct UnsignedUnsignedCheck<From, To, FromIsNotBigger>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-05-06 23:38:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-04-23 21:36:51 +00:00
|
|
|
template<typename From, typename To>
|
|
|
|
struct BoundsCheckImpl<From, To, FromIsUnsigned, ToIsUnsigned>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
|
|
|
return UnsignedUnsignedCheck<From, To>::checkBounds(from);
|
2013-04-23 21:36:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-05-06 23:38:42 +00:00
|
|
|
// Signed-to-unsigned range check
|
|
|
|
|
2013-04-23 21:36:51 +00:00
|
|
|
template<typename From, typename To>
|
|
|
|
struct BoundsCheckImpl<From, To, FromIsSigned, ToIsUnsigned>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-04-23 21:36:51 +00:00
|
|
|
if (from < 0)
|
|
|
|
return false;
|
|
|
|
if (sizeof(To) >= sizeof(From))
|
2013-05-06 23:38:42 +00:00
|
|
|
return true;
|
2013-04-23 21:36:51 +00:00
|
|
|
return from <= From(To(-1));
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-05-06 23:38:42 +00:00
|
|
|
// Unsigned-to-signed range check
|
|
|
|
|
|
|
|
enum USComparison { FromIsSmaller, FromIsNotSmaller };
|
|
|
|
|
|
|
|
template<typename From, typename To,
|
|
|
|
USComparison = (sizeof(From) < sizeof(To)) ? FromIsSmaller : FromIsNotSmaller>
|
|
|
|
struct UnsignedSignedCheck;
|
|
|
|
|
|
|
|
template<typename From, typename To>
|
|
|
|
struct UnsignedSignedCheck<From, To, FromIsSmaller>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-05-06 23:38:42 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-04-23 21:36:51 +00:00
|
|
|
template<typename From, typename To>
|
2013-05-06 23:38:42 +00:00
|
|
|
struct UnsignedSignedCheck<From, To, FromIsNotSmaller>
|
2013-04-23 21:36:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-04-23 21:36:51 +00:00
|
|
|
const To MaxValue = To((1ULL << (CHAR_BIT * sizeof(To) - 1)) - 1);
|
|
|
|
return from <= From(MaxValue);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-05-06 23:38:42 +00:00
|
|
|
template<typename From, typename To>
|
|
|
|
struct BoundsCheckImpl<From, To, FromIsUnsigned, ToIsSigned>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
|
|
|
return UnsignedSignedCheck<From, To>::checkBounds(from);
|
2013-05-06 23:38:42 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Signed-to-signed range check
|
|
|
|
|
2013-04-23 21:36:51 +00:00
|
|
|
template<typename From, typename To>
|
|
|
|
struct BoundsCheckImpl<From, To, FromIsSigned, ToIsSigned>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
2013-05-06 23:38:42 +00:00
|
|
|
if (sizeof(From) <= sizeof(To))
|
|
|
|
return true;
|
2013-04-23 21:36:51 +00:00
|
|
|
const To MaxValue = To((1ULL << (CHAR_BIT * sizeof(To) - 1)) - 1);
|
|
|
|
const To MinValue = -MaxValue - To(1);
|
2013-05-06 23:38:42 +00:00
|
|
|
return From(MinValue) <= from &&
|
|
|
|
From(from) <= From(MaxValue);
|
2013-04-23 21:36:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename From, typename To,
|
|
|
|
bool TypesAreIntegral = IsIntegral<From>::value && IsIntegral<To>::value>
|
|
|
|
class BoundsChecker;
|
|
|
|
|
|
|
|
template<typename From>
|
|
|
|
class BoundsChecker<From, From, true>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) { return true; }
|
2013-04-23 21:36:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template<typename From, typename To>
|
|
|
|
class BoundsChecker<From, To, true>
|
|
|
|
{
|
|
|
|
public:
|
2013-06-10 22:31:37 +00:00
|
|
|
static bool checkBounds(const From from) {
|
|
|
|
return BoundsCheckImpl<From, To>::checkBounds(from);
|
2013-04-23 21:36:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename From, typename To>
|
|
|
|
inline bool
|
|
|
|
IsInBounds(const From from)
|
|
|
|
{
|
2013-06-10 22:31:37 +00:00
|
|
|
return BoundsChecker<From, To>::checkBounds(from);
|
2013-04-23 21:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace detail
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cast a value of integral type |From| to a value of integral type |To|,
|
|
|
|
* asserting that the cast will be a safe cast per C++ (that is, that |to| is in
|
|
|
|
* the range of values permitted for the type |From|).
|
|
|
|
*/
|
|
|
|
template<typename To, typename From>
|
|
|
|
inline To
|
|
|
|
SafeCast(const From from)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT((detail::IsInBounds<From, To>(from)));
|
|
|
|
return static_cast<To>(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#endif /* mozilla_Casting_h */
|