2009-09-01 18:46:19 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sw=4 et tw=99 ft=cpp:
|
|
|
|
*
|
2012-05-21 04:12:37 -07: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/. */
|
2009-09-01 18:46:19 -07:00
|
|
|
|
2011-10-04 15:33:00 -07:00
|
|
|
#ifndef js_template_lib_h__
|
|
|
|
#define js_template_lib_h__
|
2009-09-01 18:46:19 -07:00
|
|
|
|
2011-12-13 11:26:58 -08:00
|
|
|
#include "jstypes.h"
|
2009-09-01 18:46:19 -07:00
|
|
|
|
2011-10-04 15:33:00 -07:00
|
|
|
/*
|
|
|
|
* Library of reusable template meta-functions (that is, functions on types and
|
|
|
|
* compile-time values). Meta-functions are placed inside the 'tl' namespace to
|
|
|
|
* avoid conflict with non-meta functions that logically have the same name
|
|
|
|
* (e.g., js::tl::Min vs. js::Min).
|
|
|
|
*/
|
2010-01-25 08:48:07 -08:00
|
|
|
|
2009-09-01 18:46:19 -07:00
|
|
|
namespace js {
|
|
|
|
namespace tl {
|
|
|
|
|
|
|
|
/* Compute min/max/clamp. */
|
|
|
|
template <size_t i, size_t j> struct Min {
|
|
|
|
static const size_t result = i < j ? i : j;
|
|
|
|
};
|
|
|
|
template <size_t i, size_t j> struct Max {
|
|
|
|
static const size_t result = i > j ? i : j;
|
|
|
|
};
|
|
|
|
template <size_t i, size_t min, size_t max> struct Clamp {
|
|
|
|
static const size_t result = i < min ? min : (i > max ? max : i);
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Compute x^y. */
|
|
|
|
template <size_t x, size_t y> struct Pow {
|
|
|
|
static const size_t result = x * Pow<x, y - 1>::result;
|
|
|
|
};
|
|
|
|
template <size_t x> struct Pow<x,0> {
|
|
|
|
static const size_t result = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Compute floor(log2(i)). */
|
|
|
|
template <size_t i> struct FloorLog2 {
|
|
|
|
static const size_t result = 1 + FloorLog2<i / 2>::result;
|
|
|
|
};
|
|
|
|
template <> struct FloorLog2<0> { /* Error */ };
|
|
|
|
template <> struct FloorLog2<1> { static const size_t result = 0; };
|
|
|
|
|
|
|
|
/* Compute ceiling(log2(i)). */
|
|
|
|
template <size_t i> struct CeilingLog2 {
|
|
|
|
static const size_t result = FloorLog2<2 * i - 1>::result;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Round up to the nearest power of 2. */
|
|
|
|
template <size_t i> struct RoundUpPow2 {
|
2011-12-07 05:22:47 -08:00
|
|
|
static const size_t result = size_t(1) << CeilingLog2<i>::result;
|
2009-09-01 18:46:19 -07:00
|
|
|
};
|
|
|
|
template <> struct RoundUpPow2<0> {
|
|
|
|
static const size_t result = 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Compute the number of bits in the given unsigned type. */
|
|
|
|
template <class T> struct BitSize {
|
|
|
|
static const size_t result = sizeof(T) * JS_BITS_PER_BYTE;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Allow Assertions by only including the 'result' typedef if 'true'. */
|
|
|
|
template <bool> struct StaticAssert {};
|
|
|
|
template <> struct StaticAssert<true> { typedef int result; };
|
|
|
|
|
|
|
|
/* Boolean test for whether two types are the same. */
|
|
|
|
template <class T, class U> struct IsSameType {
|
|
|
|
static const bool result = false;
|
|
|
|
};
|
|
|
|
template <class T> struct IsSameType<T,T> {
|
|
|
|
static const bool result = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Produce an N-bit mask, where N <= BitSize<size_t>::result. Handle the
|
|
|
|
* language-undefined edge case when N = BitSize<size_t>::result.
|
|
|
|
*/
|
|
|
|
template <size_t N> struct NBitMask {
|
|
|
|
typedef typename StaticAssert<N < BitSize<size_t>::result>::result _;
|
2010-02-15 16:07:57 -08:00
|
|
|
static const size_t result = (size_t(1) << N) - 1;
|
2009-09-01 18:46:19 -07:00
|
|
|
};
|
|
|
|
template <> struct NBitMask<BitSize<size_t>::result> {
|
|
|
|
static const size_t result = size_t(-1);
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For the unsigned integral type size_t, compute a mask M for N such that
|
|
|
|
* for all X, !(X & M) implies X * N will not overflow (w.r.t size_t)
|
|
|
|
*/
|
|
|
|
template <size_t N> struct MulOverflowMask {
|
|
|
|
static const size_t result =
|
2010-02-15 16:07:57 -08:00
|
|
|
~NBitMask<BitSize<size_t>::result - CeilingLog2<N>::result>::result;
|
2009-09-01 18:46:19 -07:00
|
|
|
};
|
|
|
|
template <> struct MulOverflowMask<0> { /* Error */ };
|
|
|
|
template <> struct MulOverflowMask<1> { static const size_t result = 0; };
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Generate a mask for T such that if (X & sUnsafeRangeSizeMask), an X-sized
|
|
|
|
* array of T's is big enough to cause a ptrdiff_t overflow when subtracting
|
|
|
|
* a pointer to the end of the array from the beginning.
|
|
|
|
*/
|
|
|
|
template <class T> struct UnsafeRangeSizeMask {
|
|
|
|
/*
|
|
|
|
* The '2' factor means the top bit is clear, sizeof(T) converts from
|
|
|
|
* units of elements to bytes.
|
|
|
|
*/
|
|
|
|
static const size_t result = MulOverflowMask<2 * sizeof(T)>::result;
|
|
|
|
};
|
|
|
|
|
2010-02-19 10:02:16 -08:00
|
|
|
/* Return T stripped of any const-ness. */
|
|
|
|
template <class T> struct StripConst { typedef T result; };
|
|
|
|
template <class T> struct StripConst<const T> { typedef T result; };
|
|
|
|
|
2009-09-01 18:46:19 -07:00
|
|
|
/*
|
|
|
|
* Traits class for identifying POD types. Until C++0x, there is no automatic
|
|
|
|
* way to detect PODs, so for the moment it is done manually.
|
|
|
|
*/
|
2011-06-27 15:00:17 -07:00
|
|
|
template <class T> struct IsPodType { static const bool result = false; };
|
|
|
|
template <> struct IsPodType<char> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<signed char> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<unsigned char> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<short> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<unsigned short> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<int> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<unsigned int> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<long> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<unsigned long> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<long long> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<unsigned long long> { static const bool result = true; };
|
2012-02-28 19:03:57 -08:00
|
|
|
template <> struct IsPodType<bool> { static const bool result = true; };
|
2011-06-27 15:00:17 -07:00
|
|
|
template <> struct IsPodType<float> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<double> { static const bool result = true; };
|
2011-09-22 13:22:30 -07:00
|
|
|
template <> struct IsPodType<wchar_t> { static const bool result = true; };
|
2011-06-27 15:00:17 -07:00
|
|
|
template <typename T> struct IsPodType<T *> { static const bool result = true; };
|
2009-09-01 18:46:19 -07:00
|
|
|
|
2011-03-23 11:57:27 -07:00
|
|
|
template <bool cond, typename T, T v1, T v2> struct If { static const T result = v1; };
|
|
|
|
template <typename T, T v1, T v2> struct If<false, T, v1, v2> { static const T result = v2; };
|
|
|
|
|
2012-07-08 03:00:11 -07:00
|
|
|
template <class T> struct IsPointerType { static const bool result = false; };
|
|
|
|
template <class T> struct IsPointerType<T *> { static const bool result = true; };
|
|
|
|
|
2012-04-11 17:14:11 -07:00
|
|
|
/*
|
|
|
|
* Traits class for identifying types that are implicitly barriered.
|
|
|
|
*/
|
2012-05-15 17:21:23 -07:00
|
|
|
template <class T> struct IsRelocatableHeapType { static const bool result = true; };
|
2012-04-11 17:14:11 -07:00
|
|
|
|
2009-09-01 18:46:19 -07:00
|
|
|
} /* namespace tl */
|
|
|
|
} /* namespace js */
|
|
|
|
|
2011-10-04 15:33:00 -07:00
|
|
|
#endif /* js_template_lib_h__ */
|