1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
/*
* Copyright (C) 2013-2014 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef WTF_Ref_h
#define WTF_Ref_h
#include <wtf/Assertions.h>
#include <wtf/GetPtr.h>
#include <wtf/Noncopyable.h>
#include <wtf/StdLibExtras.h>
#include <wtf/TypeCasts.h>
#if ASAN_ENABLED
extern "C" void __asan_poison_memory_region(void const volatile *addr, size_t size);
extern "C" void __asan_unpoison_memory_region(void const volatile *addr, size_t size);
extern "C" bool __asan_address_is_poisoned(void const volatile *addr);
#endif
namespace WTF {
inline void adopted(const void*) { }
template<typename T> class Ref;
template<typename T> Ref<T> adoptRef(T&);
template<typename T> class Ref {
public:
static constexpr bool isRef = true;
~Ref()
{
#if ASAN_ENABLED
if (__asan_address_is_poisoned(this))
__asan_unpoison_memory_region(this, sizeof(*this));
#endif
if (m_ptr)
m_ptr->deref();
}
Ref(T& object)
: m_ptr(&object)
{
m_ptr->ref();
}
// Use copyRef() instead.
Ref(const Ref& other) = delete;
template<typename U> Ref(const Ref<U>& other) = delete;
Ref(Ref&& other)
: m_ptr(&other.leakRef())
{
ASSERT(m_ptr);
}
template<typename U>
Ref(Ref<U>&& other)
: m_ptr(&other.leakRef())
{
ASSERT(m_ptr);
}
Ref& operator=(T& object)
{
ASSERT(m_ptr);
object.ref();
m_ptr->deref();
m_ptr = &object;
ASSERT(m_ptr);
return *this;
}
// Use copyRef() and the move assignment operators instead.
Ref& operator=(const Ref& reference) = delete;
template<typename U> Ref& operator=(const Ref<U>& reference) = delete;
Ref& operator=(Ref&& reference)
{
ASSERT(m_ptr);
m_ptr->deref();
m_ptr = &reference.leakRef();
ASSERT(m_ptr);
return *this;
}
template<typename U> Ref& operator=(Ref<U>&& reference)
{
ASSERT(m_ptr);
m_ptr->deref();
m_ptr = &reference.leakRef();
ASSERT(m_ptr);
return *this;
}
// Hash table deleted values, which are only constructed and never copied or destroyed.
Ref(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
Ref(HashTableEmptyValueType) : m_ptr(hashTableEmptyValue()) { }
bool isHashTableEmptyValue() const { return m_ptr == hashTableEmptyValue(); }
static T* hashTableEmptyValue() { return nullptr; }
const T* ptrAllowingHashTableEmptyValue() const { ASSERT(m_ptr || isHashTableEmptyValue()); return m_ptr; }
T* ptrAllowingHashTableEmptyValue() { ASSERT(m_ptr || isHashTableEmptyValue()); return m_ptr; }
void assignToHashTableEmptyValue(Ref&& reference)
{
ASSERT(m_ptr == hashTableEmptyValue());
m_ptr = &reference.leakRef();
ASSERT(m_ptr);
}
T* operator->() const { ASSERT(m_ptr); return m_ptr; }
T* ptr() const { ASSERT(m_ptr); return m_ptr; }
T& get() const { ASSERT(m_ptr); return *m_ptr; }
operator T&() const { ASSERT(m_ptr); return *m_ptr; }
template<typename U> Ref<T> replace(Ref<U>&&) WARN_UNUSED_RETURN;
#if COMPILER_SUPPORTS(CXX_REFERENCE_QUALIFIED_FUNCTIONS)
Ref copyRef() && = delete;
Ref copyRef() const & WARN_UNUSED_RETURN { return Ref(*m_ptr); }
#else
Ref copyRef() const WARN_UNUSED_RETURN { return Ref(*m_ptr); }
#endif
T& leakRef() WARN_UNUSED_RETURN
{
ASSERT(m_ptr);
T& result = *std::exchange(m_ptr, nullptr);
#if ASAN_ENABLED
__asan_poison_memory_region(this, sizeof(*this));
#endif
return result;
}
private:
friend Ref adoptRef<T>(T&);
enum AdoptTag { Adopt };
Ref(T& object, AdoptTag)
: m_ptr(&object)
{
}
T* m_ptr;
};
template<typename T> template<typename U> inline Ref<T> Ref<T>::replace(Ref<U>&& reference)
{
auto oldReference = adoptRef(*m_ptr);
m_ptr = &reference.leakRef();
return oldReference;
}
template<typename T, typename U> inline Ref<T> static_reference_cast(Ref<U>& reference)
{
return Ref<T>(static_cast<T&>(reference.get()));
}
template<typename T, typename U> inline Ref<T> static_reference_cast(Ref<U>&& reference)
{
return adoptRef(static_cast<T&>(reference.leakRef()));
}
template<typename T, typename U> inline Ref<T> static_reference_cast(const Ref<U>& reference)
{
return Ref<T>(static_cast<T&>(reference.copyRef().get()));
}
template <typename T>
struct GetPtrHelper<Ref<T>> {
typedef T* PtrType;
static T* getPtr(const Ref<T>& p) { return const_cast<T*>(p.ptr()); }
};
template <typename T>
struct IsSmartPtr<Ref<T>> {
static const bool value = true;
};
template<typename T>
inline Ref<T> adoptRef(T& reference)
{
adopted(&reference);
return Ref<T>(reference, Ref<T>::Adopt);
}
template<typename T>
inline Ref<T> makeRef(T& reference)
{
return Ref<T>(reference);
}
template<typename ExpectedType, typename ArgType> inline bool is(Ref<ArgType>& source)
{
return is<ExpectedType>(source.get());
}
template<typename ExpectedType, typename ArgType> inline bool is(const Ref<ArgType>& source)
{
return is<ExpectedType>(source.get());
}
} // namespace WTF
using WTF::Ref;
using WTF::adoptRef;
using WTF::makeRef;
using WTF::static_reference_cast;
#endif // WTF_Ref_h
|