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: */
|
2012-06-04 03:36:43 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2011-06-06 18:02:34 +00:00
|
|
|
|
2011-12-28 16:48:54 +00:00
|
|
|
/*
|
|
|
|
* Implements a smart pointer asserted to remain within a range specified at
|
|
|
|
* construction.
|
|
|
|
*/
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#ifndef mozilla_RangedPtr_h
|
|
|
|
#define mozilla_RangedPtr_h
|
2011-06-06 18:02:34 +00:00
|
|
|
|
2013-12-09 02:52:54 +00:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2011-12-19 19:28:35 +00:00
|
|
|
#include "mozilla/Assertions.h"
|
2011-11-20 20:22:51 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-12-09 02:52:54 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-06-06 18:02:34 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* RangedPtr is a smart pointer restricted to an address range specified at
|
|
|
|
* creation. The pointer (and any smart pointers derived from it) must remain
|
|
|
|
* within the range [start, end] (inclusive of end to facilitate use as
|
|
|
|
* sentinels). Dereferencing or indexing into the pointer (or pointers derived
|
|
|
|
* from it) must remain within the range [start, end). All the standard pointer
|
|
|
|
* operators are defined on it; in debug builds these operations assert that the
|
|
|
|
* range specified at construction is respected.
|
|
|
|
*
|
|
|
|
* In theory passing a smart pointer instance as an argument can be slightly
|
|
|
|
* slower than passing a T* (due to ABI requirements for passing structs versus
|
|
|
|
* passing pointers), if the method being called isn't inlined. If you are in
|
|
|
|
* extremely performance-critical code, you may want to be careful using this
|
|
|
|
* smart pointer as an argument type.
|
|
|
|
*
|
|
|
|
* RangedPtr<T> intentionally does not implicitly convert to T*. Use get() to
|
|
|
|
* explicitly convert to T*. Keep in mind that the raw pointer of course won't
|
|
|
|
* implement bounds checking in debug builds.
|
|
|
|
*/
|
2012-06-04 03:36:43 +00:00
|
|
|
template<typename T>
|
2011-06-06 18:02:34 +00:00
|
|
|
class RangedPtr
|
|
|
|
{
|
2014-07-11 02:10:17 +00:00
|
|
|
T* mPtr;
|
2011-06-06 18:02:34 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
T* const mRangeStart;
|
|
|
|
T* const mRangeEnd;
|
2011-06-06 18:02:34 +00:00
|
|
|
#endif
|
|
|
|
|
2014-07-11 02:10:17 +00:00
|
|
|
void checkSanity()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mRangeStart <= mPtr);
|
|
|
|
MOZ_ASSERT(mPtr <= mRangeEnd);
|
|
|
|
}
|
2011-06-06 18:02:34 +00:00
|
|
|
|
2014-07-11 02:10:17 +00:00
|
|
|
/* Creates a new pointer for |aPtr|, restricted to this pointer's range. */
|
|
|
|
RangedPtr<T> create(T* aPtr) const
|
|
|
|
{
|
2011-06-06 18:02:34 +00:00
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
return RangedPtr<T>(aPtr, mRangeStart, mRangeEnd);
|
2011-06-06 18:02:34 +00:00
|
|
|
#else
|
2014-07-11 02:10:17 +00:00
|
|
|
return RangedPtr<T>(aPtr, nullptr, size_t(0));
|
2011-06-06 18:02:34 +00:00
|
|
|
#endif
|
2014-07-11 02:10:17 +00:00
|
|
|
}
|
2011-06-06 18:02:34 +00:00
|
|
|
|
2014-07-11 02:10:17 +00:00
|
|
|
uintptr_t asUintptr() const { return reinterpret_cast<uintptr_t>(mPtr); }
|
2012-10-16 23:30:02 +00:00
|
|
|
|
2014-07-11 02:10:17 +00:00
|
|
|
public:
|
|
|
|
RangedPtr(T* aPtr, T* aStart, T* aEnd)
|
|
|
|
: mPtr(aPtr)
|
2011-06-06 18:02:34 +00:00
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
, mRangeStart(aStart), mRangeEnd(aEnd)
|
2011-06-06 18:02:34 +00:00
|
|
|
#endif
|
2014-07-11 02:10:17 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(mRangeStart <= mRangeEnd);
|
|
|
|
checkSanity();
|
|
|
|
}
|
|
|
|
RangedPtr(T* aPtr, T* aStart, size_t aLength)
|
|
|
|
: mPtr(aPtr)
|
2011-06-06 18:02:34 +00:00
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
, mRangeStart(aStart), mRangeEnd(aStart + aLength)
|
2011-06-06 18:02:34 +00:00
|
|
|
#endif
|
2014-07-11 02:10:17 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aLength <= size_t(-1) / sizeof(T));
|
|
|
|
MOZ_ASSERT(reinterpret_cast<uintptr_t>(mRangeStart) + aLength * sizeof(T) >=
|
|
|
|
reinterpret_cast<uintptr_t>(mRangeStart));
|
|
|
|
checkSanity();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent to RangedPtr(aPtr, aPtr, aLength). */
|
|
|
|
RangedPtr(T* aPtr, size_t aLength)
|
|
|
|
: mPtr(aPtr)
|
2011-06-06 18:02:34 +00:00
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
, mRangeStart(aPtr), mRangeEnd(aPtr + aLength)
|
2011-06-06 18:02:34 +00:00
|
|
|
#endif
|
2014-07-11 02:10:17 +00:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(aLength <= size_t(-1) / sizeof(T));
|
|
|
|
MOZ_ASSERT(reinterpret_cast<uintptr_t>(mRangeStart) + aLength * sizeof(T) >=
|
|
|
|
reinterpret_cast<uintptr_t>(mRangeStart));
|
|
|
|
checkSanity();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Equivalent to RangedPtr(aArr, aArr, N). */
|
|
|
|
template<size_t N>
|
|
|
|
RangedPtr(T (&aArr)[N])
|
|
|
|
: mPtr(aArr)
|
2011-06-07 20:25:36 +00:00
|
|
|
#ifdef DEBUG
|
2014-07-11 02:10:17 +00:00
|
|
|
, mRangeStart(aArr), mRangeEnd(aArr + N)
|
2011-06-07 20:25:36 +00:00
|
|
|
#endif
|
2014-07-11 02:10:17 +00:00
|
|
|
{
|
|
|
|
checkSanity();
|
|
|
|
}
|
|
|
|
|
|
|
|
T* get() const { return mPtr; }
|
|
|
|
|
2015-02-03 16:52:36 +00:00
|
|
|
explicit operator bool() const { return mPtr != nullptr; }
|
2014-07-11 02:10:17 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* You can only assign one RangedPtr into another if the two pointers have
|
|
|
|
* the same valid range:
|
|
|
|
*
|
|
|
|
* char arr1[] = "hi";
|
|
|
|
* char arr2[] = "bye";
|
|
|
|
* RangedPtr<char> p1(arr1, 2);
|
|
|
|
* p1 = RangedPtr<char>(arr1 + 1, arr1, arr1 + 2); // works
|
|
|
|
* p1 = RangedPtr<char>(arr2, 3); // asserts
|
|
|
|
*/
|
|
|
|
RangedPtr<T>& operator=(const RangedPtr<T>& aOther)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mRangeStart == aOther.mRangeStart);
|
|
|
|
MOZ_ASSERT(mRangeEnd == aOther.mRangeEnd);
|
|
|
|
mPtr = aOther.mPtr;
|
|
|
|
checkSanity();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T> operator+(size_t aInc)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aInc <= size_t(-1) / sizeof(T));
|
|
|
|
MOZ_ASSERT(asUintptr() + aInc * sizeof(T) >= asUintptr());
|
|
|
|
return create(mPtr + aInc);
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T> operator-(size_t aDec)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(aDec <= size_t(-1) / sizeof(T));
|
|
|
|
MOZ_ASSERT(asUintptr() - aDec * sizeof(T) <= asUintptr());
|
|
|
|
return create(mPtr - aDec);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* You can assign a raw pointer into a RangedPtr if the raw pointer is
|
|
|
|
* within the range specified at creation.
|
|
|
|
*/
|
|
|
|
template <typename U>
|
|
|
|
RangedPtr<T>& operator=(U* aPtr)
|
|
|
|
{
|
|
|
|
*this = create(aPtr);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
RangedPtr<T>& operator=(const RangedPtr<U>& aPtr)
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mRangeStart <= aPtr.mPtr);
|
|
|
|
MOZ_ASSERT(aPtr.mPtr <= mRangeEnd);
|
|
|
|
mPtr = aPtr.mPtr;
|
|
|
|
checkSanity();
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T>& operator++()
|
|
|
|
{
|
|
|
|
return (*this += 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T> operator++(int)
|
|
|
|
{
|
|
|
|
RangedPtr<T> rcp = *this;
|
|
|
|
++*this;
|
|
|
|
return rcp;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T>& operator--()
|
|
|
|
{
|
|
|
|
return (*this -= 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T> operator--(int)
|
|
|
|
{
|
|
|
|
RangedPtr<T> rcp = *this;
|
|
|
|
--*this;
|
|
|
|
return rcp;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T>& operator+=(size_t aInc)
|
|
|
|
{
|
|
|
|
*this = *this + aInc;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
RangedPtr<T>& operator-=(size_t aDec)
|
|
|
|
{
|
|
|
|
*this = *this - aDec;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
T& operator[](int aIndex) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(size_t(aIndex > 0 ? aIndex : -aIndex) <= size_t(-1) / sizeof(T));
|
|
|
|
return *create(mPtr + aIndex);
|
|
|
|
}
|
|
|
|
|
|
|
|
T& operator*() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mPtr >= mRangeStart);
|
|
|
|
MOZ_ASSERT(mPtr < mRangeEnd);
|
|
|
|
return *mPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
bool operator==(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return mPtr == aOther.mPtr;
|
|
|
|
}
|
|
|
|
template <typename U>
|
|
|
|
bool operator!=(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return !(*this == aOther);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
bool operator==(const U* u) const
|
|
|
|
{
|
|
|
|
return mPtr == u;
|
|
|
|
}
|
|
|
|
template<typename U>
|
|
|
|
bool operator!=(const U* u) const
|
|
|
|
{
|
|
|
|
return !(*this == u);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
bool operator<(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return mPtr < aOther.mPtr;
|
|
|
|
}
|
|
|
|
template <typename U>
|
|
|
|
bool operator<=(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return mPtr <= aOther.mPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename U>
|
|
|
|
bool operator>(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return mPtr > aOther.mPtr;
|
|
|
|
}
|
|
|
|
template <typename U>
|
|
|
|
bool operator>=(const RangedPtr<U>& aOther) const
|
|
|
|
{
|
|
|
|
return mPtr >= aOther.mPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t operator-(const RangedPtr<T>& aOther) const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(mPtr >= aOther.mPtr);
|
|
|
|
return PointerRangeSize(aOther.mPtr, mPtr);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2015-01-06 23:35:02 +00:00
|
|
|
RangedPtr() = delete;
|
|
|
|
T* operator&() = delete;
|
2011-06-06 18:02:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace mozilla */
|
|
|
|
|
2013-07-24 07:41:39 +00:00
|
|
|
#endif /* mozilla_RangedPtr_h */
|