From cc3bf12ef69c086069835585f298fe603e632aed Mon Sep 17 00:00:00 2001 From: "Bradley T. Hughes" Date: Fri, 9 Sep 2011 11:09:16 +0200 Subject: Make QListData::shared_null const Similar to QMap, QVector, QByteArray and QString, keep the shared_null in shareable memory and never modify it. Change-Id: I2b4bb8de564080021043f6ede6c903d567c686cf Reviewed-on: http://codereview.qt-project.org/4531 Reviewed-by: Qt Sanity Bot Reviewed-by: Oswald Buddenhagen --- src/corelib/tools/qlist.cpp | 2 +- src/corelib/tools/qlist.h | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) (limited to 'src') diff --git a/src/corelib/tools/qlist.cpp b/src/corelib/tools/qlist.cpp index 4c04385033..0daec4dbd9 100644 --- a/src/corelib/tools/qlist.cpp +++ b/src/corelib/tools/qlist.cpp @@ -57,7 +57,7 @@ QT_BEGIN_NAMESPACE the number of elements in the list. */ -QListData::Data QListData::shared_null = { Q_BASIC_ATOMIC_INITIALIZER(1), 0, 0, 0, true, { 0 } }; +const QListData::Data QListData::shared_null = { Q_REFCOUNT_INITIALIZER(-1), 0, 0, 0, true, { 0 } }; static int grow(int size) { diff --git a/src/corelib/tools/qlist.h b/src/corelib/tools/qlist.h index a215cc689a..e9e44dbb10 100644 --- a/src/corelib/tools/qlist.h +++ b/src/corelib/tools/qlist.h @@ -42,9 +42,9 @@ #ifndef QLIST_H #define QLIST_H -#include -#include #include +#include +#include #ifndef QT_NO_STL #include @@ -70,7 +70,7 @@ template class QSet; struct Q_CORE_EXPORT QListData { struct Data { - QBasicAtomicInt ref; + QtPrivate::RefCount ref; int alloc, begin, end; uint sharable : 1; void *array[1]; @@ -80,7 +80,7 @@ struct Q_CORE_EXPORT QListData { Data *detach(int alloc); Data *detach_grow(int *i, int n); void realloc(int alloc); - static Data shared_null; + static const Data shared_null; Data *d; void **erase(void **xi); void **append(int n); @@ -114,7 +114,7 @@ class QList union { QListData p; QListData::Data *d; }; public: - inline QList() : d(&QListData::shared_null) { d->ref.ref(); } + inline QList() : d(const_cast(&QListData::shared_null)) { } inline QList(const QList &l) : d(l.d) { d->ref.ref(); if (!d->sharable) detach_helper(); } ~QList(); QList &operator=(const QList &l); @@ -124,8 +124,9 @@ public: #endif inline void swap(QList &other) { qSwap(d, other.d); } #ifdef Q_COMPILER_INITIALIZER_LISTS - inline QList(std::initializer_list args) : d(&QListData::shared_null) - { d->ref.ref(); qCopy(args.begin(), args.end(), std::back_inserter(*this)); } + inline QList(std::initializer_list args) + : d(const_cast(&QListData::shared_null)) + { qCopy(args.begin(), args.end(), std::back_inserter(*this)); } #endif bool operator==(const QList &l) const; inline bool operator!=(const QList &l) const { return !(*this == l); } -- cgit v1.2.3