summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2017-05-02 19:23:13 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-03-17 10:01:04 +0100
commit165de1002719175c75df61913d36c2189538a84b (patch)
tree39f3be146633ad2f25b1a55d000edb1475149082 /src
parent7ef382649754c261ca9eb99dd50b67050e748efb (diff)
Introduce helper class QTaggedPointer
Useful for attaching small bits of information in the alignment bits of a naked pointer. For use in the new property system as well as in qtdeclarative (where currently a similar class exists as private API). Change-Id: Idf9b93e714e15129f302e16425dbeda94bcd207b Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/.prev_CMakeLists.txt1
-rw-r--r--src/corelib/CMakeLists.txt1
-rw-r--r--src/corelib/io/qdebug.h10
-rw-r--r--src/corelib/tools/qtaggedpointer.h207
-rw-r--r--src/corelib/tools/tools.pri1
5 files changed, 220 insertions, 0 deletions
diff --git a/src/corelib/.prev_CMakeLists.txt b/src/corelib/.prev_CMakeLists.txt
index 28882a93aa..d60945cee3 100644
--- a/src/corelib/.prev_CMakeLists.txt
+++ b/src/corelib/.prev_CMakeLists.txt
@@ -214,6 +214,7 @@ qt_add_module(Core
tools/qsimd.cpp tools/qsimd_p.h
tools/qsize.cpp tools/qsize.h
tools/qstack.h
+ tools/qtaggedpointer_p.h
tools/qtools_p.h
tools/qvarlengtharray.h
tools/qvector.h
diff --git a/src/corelib/CMakeLists.txt b/src/corelib/CMakeLists.txt
index 0435a7a4fc..e28df10290 100644
--- a/src/corelib/CMakeLists.txt
+++ b/src/corelib/CMakeLists.txt
@@ -230,6 +230,7 @@ qt_add_module(Core
tools/qsimd.cpp tools/qsimd_p.h
tools/qsize.cpp tools/qsize.h
tools/qstack.h
+ tools/qtaggedpointer.h
tools/qtools_p.h
tools/qvarlengtharray.h
tools/qvector.h
diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h
index e14d31f38a..aa69a1ae23 100644
--- a/src/corelib/io/qdebug.h
+++ b/src/corelib/io/qdebug.h
@@ -356,6 +356,16 @@ inline QDebug operator<<(QDebug debug, const QSharedPointer<T> &ptr)
return debug;
}
+template <typename T, typename Tag> class QTaggedPointer;
+
+template <typename T, typename Tag>
+inline QDebug operator<<(QDebug debug, const QTaggedPointer<T, Tag> &ptr)
+{
+ QDebugStateSaver saver(debug);
+ debug.nospace() << "QTaggedPointer(" << ptr.pointer() << ", " << ptr.tag() << ")";
+ return debug;
+}
+
Q_CORE_EXPORT void qt_QMetaEnum_flagDebugOperator(QDebug &debug, size_t sizeofT, int value);
template <typename Int>
diff --git a/src/corelib/tools/qtaggedpointer.h b/src/corelib/tools/qtaggedpointer.h
new file mode 100644
index 0000000000..7d631a5e0c
--- /dev/null
+++ b/src/corelib/tools/qtaggedpointer.h
@@ -0,0 +1,207 @@
+/****************************************************************************
+**
+** Copyright (C) 2020 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the QtCore module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 3 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL3 included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 3 requirements
+** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 2.0 or (at your option) the GNU General
+** Public license version 3 or any later version approved by the KDE Free
+** Qt Foundation. The licenses are as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-2.0.html and
+** https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QTAGGEDPOINTER_H
+#define QTAGGEDPOINTER_H
+
+#include <QtCore/qglobal.h>
+#include <QtCore/qalgorithms.h>
+#include <QtCore/qmath.h>
+
+#include <limits.h>
+
+QT_BEGIN_NAMESPACE
+
+namespace QtPrivate {
+ constexpr quint8 nextByteSize(quint8 bits) { return (bits + 7) / 8; }
+
+ template <typename T>
+ struct TagInfo
+ {
+ static constexpr size_t alignment = alignof(T);
+ static_assert((alignment & (alignment - 1)) == 0,
+ "Alignment of template parameter must be power of two");
+
+ static constexpr quint8 tagBits = QtPrivate::qConstexprCountTrailingZeroBits(alignment);
+ static_assert(tagBits > 0,
+ "Alignment of template parameter does not allow any tags");
+
+ static constexpr size_t tagSize = QtPrivate::qConstexprNextPowerOfTwo(nextByteSize(tagBits));
+ static_assert(tagSize < sizeof(quintptr),
+ "Alignment of template parameter allows tags masking away pointer");
+
+ using TagType = typename QIntegerForSize<tagSize>::Unsigned;
+ };
+}
+
+template <typename T, typename Tag = typename QtPrivate::TagInfo<T>::TagType>
+class QTaggedPointer
+{
+ static constexpr quintptr tagMask = QtPrivate::TagInfo<T>::alignment - 1;
+ static constexpr quintptr pointerMask = ~tagMask;
+
+ using TagInternalType = typename QtPrivate::TagInfo<T>::TagType;
+
+public:
+ using Type = T;
+ using TagType = Tag;
+
+ explicit QTaggedPointer(Type *pointer = nullptr, TagType tag = TagType()) noexcept
+ : d(quintptr(pointer))
+ {
+ Q_STATIC_ASSERT(sizeof(Type*) == sizeof(QTaggedPointer<Type>));
+
+ Q_ASSERT_X((quintptr(pointer) & tagMask) == 0,
+ "QTaggedPointer<T, Tag>", "Pointer is not aligned");
+
+ setTag(tag);
+ }
+
+ Type &operator*() const
+ {
+ Q_ASSERT(pointer());
+ return *pointer();
+ }
+
+ Type *operator->() const noexcept
+ {
+ return pointer();
+ }
+
+ explicit operator bool() const
+ {
+ return !isNull();
+ }
+
+ QTaggedPointer<T, Tag> &operator=(T *other) noexcept
+ {
+ d = reinterpret_cast<quintptr>(other) | (d & tagMask);
+ return *this;
+ }
+
+ QTaggedPointer<T, Tag> &operator=(std::nullptr_t) noexcept
+ {
+ d &= tagMask;
+ return *this;
+ }
+
+ static constexpr TagType maximumTag() noexcept
+ {
+ return TagType(TagInternalType(tagMask));
+ }
+
+ void setTag(TagType tag)
+ {
+ Q_ASSERT_X((static_cast<TagInternalType>(tag) & pointerMask) == 0,
+ "QTaggedPointer<T, Tag>::setTag", "Tag is larger than allowed by number of available tag bits");
+
+ d = (d & pointerMask) | (static_cast<TagInternalType>(tag) & tagMask);
+ }
+
+ TagType tag() const noexcept
+ {
+ return TagType(TagInternalType(d & tagMask));
+ }
+
+ Type* pointer() const noexcept
+ {
+ return reinterpret_cast<T*>(d & pointerMask);
+ }
+
+ bool isNull() const noexcept
+ {
+ return !pointer();
+ }
+
+ void swap(QTaggedPointer<Type, Tag> &other) noexcept
+ {
+ qSwap(d, other.d);
+ }
+
+ friend inline bool operator==(const QTaggedPointer<T, Tag> &lhs, const QTaggedPointer<T, Tag> &rhs) noexcept
+ {
+ return lhs.pointer() == rhs.pointer();
+ }
+
+ friend inline bool operator!=(const QTaggedPointer<T, Tag> &lhs, const QTaggedPointer<T, Tag> &rhs) noexcept
+ {
+ return lhs.pointer() != rhs.pointer();
+ }
+
+ friend inline bool operator==(const QTaggedPointer<T, Tag> &lhs, std::nullptr_t) noexcept
+ {
+ return lhs.isNull();
+ }
+
+ friend inline bool operator==(std::nullptr_t, const QTaggedPointer<T, Tag> &rhs) noexcept
+ {
+ return rhs.isNull();
+ }
+
+ friend inline bool operator!=(const QTaggedPointer<T, Tag> &lhs, std::nullptr_t) noexcept
+ {
+ return !lhs.isNull();
+ }
+
+ friend inline bool operator!=(std::nullptr_t, const QTaggedPointer<T, Tag> &rhs) noexcept
+ {
+ return !rhs.isNull();
+ }
+
+ friend inline bool operator!(const QTaggedPointer<T, Tag> &ptr) noexcept
+ {
+ return !ptr.pointer();
+ }
+
+protected:
+ quintptr d;
+};
+
+template <typename T>
+Q_DECLARE_TYPEINFO_BODY(QTaggedPointer<T>, Q_MOVABLE_TYPE);
+
+template <typename T, typename Tag>
+inline void swap(QTaggedPointer<T, Tag> &p1, QTaggedPointer<T, Tag> &p2) noexcept
+{
+ p1.swap(p2);
+}
+
+QT_END_NAMESPACE
+
+#endif // QTAGGEDPOINTER_H
diff --git a/src/corelib/tools/tools.pri b/src/corelib/tools/tools.pri
index edf4248c44..d7c66e85be 100644
--- a/src/corelib/tools/tools.pri
+++ b/src/corelib/tools/tools.pri
@@ -44,6 +44,7 @@ HEADERS += \
tools/qsize.h \
tools/qstack.h \
tools/qtools_p.h \
+ tools/qtaggedpointer.h \
tools/qvarlengtharray.h \
tools/qvector.h \
tools/qversionnumber.h