2009-09-02 01:46:19 +00: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:
|
|
|
|
*
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla SpiderMonkey JavaScript 1.9 code, released
|
|
|
|
* July 16, 2009.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* the Mozilla Corporation.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Luke Wagner <lw@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#ifndef jstl_h_
|
|
|
|
#define jstl_h_
|
|
|
|
|
2011-03-30 10:10:12 +00:00
|
|
|
#include "jspubtd.h"
|
2009-09-02 01:46:19 +00:00
|
|
|
#include "jsbit.h"
|
2010-10-29 01:28:36 +00:00
|
|
|
#include "jsstaticcheck.h"
|
2011-03-29 02:27:02 +00:00
|
|
|
#include "jsstdint.h"
|
2009-09-02 01:46:19 +00:00
|
|
|
|
2010-01-25 16:48:07 +00:00
|
|
|
#include <new>
|
2010-03-10 23:34:12 +00:00
|
|
|
#include <string.h>
|
2010-01-25 16:48:07 +00:00
|
|
|
|
2009-09-02 01:46:19 +00:00
|
|
|
namespace js {
|
|
|
|
|
|
|
|
/* JavaScript Template Library. */
|
|
|
|
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 {
|
|
|
|
static const size_t result = 1u << CeilingLog2<i>::result;
|
|
|
|
};
|
|
|
|
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-16 00:07:57 +00:00
|
|
|
static const size_t result = (size_t(1) << N) - 1;
|
2009-09-02 01:46:19 +00: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-16 00:07:57 +00:00
|
|
|
~NBitMask<BitSize<size_t>::result - CeilingLog2<N>::result>::result;
|
2009-09-02 01:46:19 +00: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 18:02:16 +00: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-02 01:46:19 +00: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.
|
|
|
|
*/
|
|
|
|
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<float> { static const bool result = true; };
|
|
|
|
template <> struct IsPodType<double> { static const bool result = true; };
|
2011-06-24 21:22:30 +00:00
|
|
|
template <typename T> struct IsPodType<T *> { static const bool result = true; };
|
2009-09-02 01:46:19 +00:00
|
|
|
|
|
|
|
/* Return the size/end of an array without using macros. */
|
|
|
|
template <class T, size_t N> inline T *ArraySize(T (&)[N]) { return N; }
|
|
|
|
template <class T, size_t N> inline T *ArrayEnd(T (&arr)[N]) { return arr + N; }
|
|
|
|
|
2011-03-23 18:57:27 +00: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; };
|
|
|
|
|
2009-09-02 01:46:19 +00:00
|
|
|
} /* namespace tl */
|
|
|
|
|
|
|
|
/* Useful for implementing containers that assert non-reentrancy */
|
|
|
|
class ReentrancyGuard
|
|
|
|
{
|
2010-03-05 07:30:28 +00:00
|
|
|
/* ReentrancyGuard is not copyable. */
|
|
|
|
ReentrancyGuard(const ReentrancyGuard &);
|
|
|
|
void operator=(const ReentrancyGuard &);
|
|
|
|
|
2009-09-02 01:46:19 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
bool &entered;
|
|
|
|
#endif
|
|
|
|
public:
|
|
|
|
template <class T>
|
|
|
|
#ifdef DEBUG
|
2010-04-16 21:00:51 +00:00
|
|
|
ReentrancyGuard(T &obj)
|
2010-02-06 18:14:05 +00:00
|
|
|
: entered(obj.entered)
|
2010-04-16 21:00:51 +00:00
|
|
|
#else
|
|
|
|
ReentrancyGuard(T &/*obj*/)
|
2009-09-02 01:46:19 +00:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
JS_ASSERT(!entered);
|
|
|
|
entered = true;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
~ReentrancyGuard()
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
entered = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Round x up to the nearest power of 2. This function assumes that the most
|
|
|
|
* significant bit of x is not set, which would lead to overflow.
|
|
|
|
*/
|
2010-10-02 04:00:55 +00:00
|
|
|
STATIC_POSTCONDITION_ASSUME(return >= x)
|
2009-12-19 04:43:00 +00:00
|
|
|
JS_ALWAYS_INLINE size_t
|
2009-09-02 01:46:19 +00:00
|
|
|
RoundUpPow2(size_t x)
|
|
|
|
{
|
|
|
|
size_t log2 = JS_CEILING_LOG2W(x);
|
|
|
|
JS_ASSERT(log2 < tl::BitSize<size_t>::result);
|
|
|
|
size_t result = size_t(1) << log2;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-07-15 06:19:36 +00:00
|
|
|
template <class T>
|
|
|
|
class AlignedPtrAndFlag
|
|
|
|
{
|
|
|
|
uintptr_t bits;
|
|
|
|
|
|
|
|
public:
|
|
|
|
AlignedPtrAndFlag(T *t, bool flag) {
|
|
|
|
JS_ASSERT((uintptr_t(t) & 1) == 0);
|
|
|
|
bits = uintptr_t(t) | uintptr_t(flag);
|
|
|
|
}
|
|
|
|
|
|
|
|
T *ptr() const {
|
|
|
|
return (T *)(bits & ~uintptr_t(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool flag() const {
|
|
|
|
return (bits & 1) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPtr(T *t) {
|
|
|
|
JS_ASSERT((uintptr_t(t) & 1) == 0);
|
|
|
|
bits = uintptr_t(t) | uintptr_t(flag());
|
|
|
|
}
|
|
|
|
|
|
|
|
void setFlag() {
|
|
|
|
bits |= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void unsetFlag() {
|
|
|
|
bits &= ~uintptr_t(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void set(T *t, bool flag) {
|
|
|
|
JS_ASSERT((uintptr_t(t) & 1) == 0);
|
|
|
|
bits = uintptr_t(t) | flag;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
static inline void
|
|
|
|
Reverse(T *beg, T *end)
|
|
|
|
{
|
|
|
|
while (beg != end) {
|
|
|
|
if (--end == beg)
|
|
|
|
return;
|
|
|
|
T tmp = *beg;
|
|
|
|
*beg = *end;
|
|
|
|
*end = tmp;
|
|
|
|
++beg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-11 23:19:57 +00:00
|
|
|
template <class T>
|
|
|
|
static inline T *
|
|
|
|
Find(T *beg, T *end, const T &v)
|
|
|
|
{
|
|
|
|
for (T *p = beg; p != end; ++p) {
|
|
|
|
if (*p == v)
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
return end;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class Container>
|
|
|
|
static inline typename Container::ElementType *
|
|
|
|
Find(Container &c, const typename Container::ElementType &v)
|
|
|
|
{
|
|
|
|
return Find(c.begin(), c.end(), v);
|
|
|
|
}
|
|
|
|
|
2010-08-11 20:30:07 +00:00
|
|
|
template <typename InputIterT, typename CallableT>
|
|
|
|
void
|
|
|
|
ForEach(InputIterT begin, InputIterT end, CallableT f)
|
|
|
|
{
|
|
|
|
for (; begin != end; ++begin)
|
|
|
|
f(*begin);
|
|
|
|
}
|
|
|
|
|
2010-08-10 05:43:33 +00:00
|
|
|
template <class T>
|
|
|
|
static inline T
|
|
|
|
Min(T t1, T t2)
|
|
|
|
{
|
|
|
|
return t1 < t2 ? t1 : t2;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class T>
|
|
|
|
static inline T
|
|
|
|
Max(T t1, T t2)
|
|
|
|
{
|
|
|
|
return t1 > t2 ? t1 : t2;
|
|
|
|
}
|
|
|
|
|
2010-10-29 01:28:36 +00:00
|
|
|
/* Allows a const variable to be initialized after its declaration. */
|
|
|
|
template <class T>
|
|
|
|
static T&
|
|
|
|
InitConst(const T &t)
|
|
|
|
{
|
|
|
|
return const_cast<T &>(t);
|
|
|
|
}
|
|
|
|
|
2011-04-08 17:52:48 +00:00
|
|
|
template <class T, class U>
|
|
|
|
JS_ALWAYS_INLINE T &
|
|
|
|
ImplicitCast(U &u)
|
|
|
|
{
|
|
|
|
T &t = u;
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
2011-05-17 18:23:31 +00:00
|
|
|
template<typename T>
|
|
|
|
class AutoScopedAssign
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
JS_DECL_USE_GUARD_OBJECT_NOTIFIER
|
|
|
|
T *addr;
|
|
|
|
T old;
|
|
|
|
|
|
|
|
public:
|
|
|
|
AutoScopedAssign(T *addr, const T &value JS_GUARD_OBJECT_NOTIFIER_PARAM)
|
|
|
|
: addr(addr), old(*addr)
|
|
|
|
{
|
|
|
|
JS_GUARD_OBJECT_NOTIFIER_INIT;
|
|
|
|
*addr = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoScopedAssign() { *addr = old; }
|
|
|
|
};
|
|
|
|
|
2009-09-02 01:46:19 +00:00
|
|
|
} /* namespace js */
|
|
|
|
|
|
|
|
#endif /* jstl_h_ */
|