]>
git.saurik.com Git - apple/javascriptcore.git/blob - wtf/ThreadSpecific.h
0aeee132beb98c2ec37b411dfd6bef1855b05d81
2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Jian Li <jianli@chromium.org>
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 * its contributors may be used to endorse or promote products derived
16 * from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 /* Thread local storage is implemented by using either pthread API or Windows
31 * native API. There is subtle semantic discrepancy for the cleanup function
32 * implementation as noted below:
33 * @ In pthread implementation, the destructor function will be called
34 * repeatedly if there is still non-NULL value associated with the function.
35 * @ In Windows native implementation, the destructor function will be called
37 * This semantic discrepancy does not impose any problem because nowhere in
38 * WebKit the repeated call bahavior is utilized.
41 #ifndef WTF_ThreadSpecific_h
42 #define WTF_ThreadSpecific_h
44 #include <wtf/Noncopyable.h>
49 #include <QThreadStorage>
58 #if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK) && OS(WINDOWS)
59 // ThreadSpecificThreadExit should be called each time when a thread is detached.
60 // This is done automatically for threads created with WTF::createThread.
61 void ThreadSpecificThreadExit();
64 template<typename T
> class ThreadSpecific
{
65 WTF_MAKE_NONCOPYABLE(ThreadSpecific
);
75 #if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK) && OS(WINDOWS)
76 friend void ThreadSpecificThreadExit();
79 // Not implemented. It's technically possible to destroy a thread specific key, but one would need
80 // to make sure that all values have been destroyed already (usually, that all threads that used it
81 // have exited). It's unlikely that any user of this call will be in that situation - and having
82 // a destructor defined can be confusing, given that it has such strong pre-requisites to work correctly.
87 void static destroy(void* ptr
);
89 #if USE(PTHREADS) || PLATFORM(QT) || PLATFORM(GTK) || OS(WINDOWS)
91 WTF_MAKE_NONCOPYABLE(Data
);
93 Data(T
* value
, ThreadSpecific
<T
>* owner
) : value(value
), owner(owner
) {}
95 ~Data() { owner
->destroy(this); }
99 ThreadSpecific
<T
>* owner
;
100 #if !USE(PTHREADS) && !PLATFORM(QT) && !PLATFORM(GTK)
101 void (*destructor
)(void*);
106 #if ENABLE(SINGLE_THREADED)
112 QThreadStorage
<Data
*> m_key
;
114 GStaticPrivate m_key
;
121 #if ENABLE(SINGLE_THREADED)
123 inline ThreadSpecific
<T
>::ThreadSpecific()
129 inline T
* ThreadSpecific
<T
>::get()
135 inline void ThreadSpecific
<T
>::set(T
* ptr
)
143 inline ThreadSpecific
<T
>::ThreadSpecific()
145 int error
= pthread_key_create(&m_key
, destroy
);
151 inline T
* ThreadSpecific
<T
>::get()
153 Data
* data
= static_cast<Data
*>(pthread_getspecific(m_key
));
154 return data
? data
->value
: 0;
158 inline void ThreadSpecific
<T
>::set(T
* ptr
)
161 pthread_setspecific(m_key
, new Data(ptr
, this));
167 inline ThreadSpecific
<T
>::ThreadSpecific()
172 inline T
* ThreadSpecific
<T
>::get()
174 Data
* data
= static_cast<Data
*>(m_key
.localData());
175 return data
? data
->value
: 0;
179 inline void ThreadSpecific
<T
>::set(T
* ptr
)
182 Data
* data
= new Data(ptr
, this);
183 m_key
.setLocalData(data
);
189 inline ThreadSpecific
<T
>::ThreadSpecific()
191 g_static_private_init(&m_key
);
195 inline T
* ThreadSpecific
<T
>::get()
197 Data
* data
= static_cast<Data
*>(g_static_private_get(&m_key
));
198 return data
? data
->value
: 0;
202 inline void ThreadSpecific
<T
>::set(T
* ptr
)
205 Data
* data
= new Data(ptr
, this);
206 g_static_private_set(&m_key
, data
, destroy
);
211 // TLS_OUT_OF_INDEXES is not defined on WinCE.
212 #ifndef TLS_OUT_OF_INDEXES
213 #define TLS_OUT_OF_INDEXES 0xffffffff
216 // The maximum number of TLS keys that can be created. For simplification, we assume that:
217 // 1) Once the instance of ThreadSpecific<> is created, it will not be destructed until the program dies.
218 // 2) We do not need to hold many instances of ThreadSpecific<> data. This fixed number should be far enough.
219 const int kMaxTlsKeySize
= 256;
225 inline ThreadSpecific
<T
>::ThreadSpecific()
228 DWORD tlsKey
= TlsAlloc();
229 if (tlsKey
== TLS_OUT_OF_INDEXES
)
232 m_index
= InterlockedIncrement(&tlsKeyCount()) - 1;
233 if (m_index
>= kMaxTlsKeySize
)
235 tlsKeys()[m_index
] = tlsKey
;
239 inline ThreadSpecific
<T
>::~ThreadSpecific()
241 // Does not invoke destructor functions. They will be called from ThreadSpecificThreadExit when the thread is detached.
242 TlsFree(tlsKeys()[m_index
]);
246 inline T
* ThreadSpecific
<T
>::get()
248 Data
* data
= static_cast<Data
*>(TlsGetValue(tlsKeys()[m_index
]));
249 return data
? data
->value
: 0;
253 inline void ThreadSpecific
<T
>::set(T
* ptr
)
256 Data
* data
= new Data(ptr
, this);
257 data
->destructor
= &ThreadSpecific
<T
>::destroy
;
258 TlsSetValue(tlsKeys()[m_index
], data
);
262 #error ThreadSpecific is not implemented for this platform.
267 inline void ThreadSpecific
<T
>::destroy(void* ptr
)
269 #if !ENABLE(SINGLE_THREADED)
270 Data
* data
= static_cast<Data
*>(ptr
);
273 // We want get() to keep working while data destructor works, because it can be called indirectly by the destructor.
274 // Some pthreads implementations zero out the pointer before calling destroy(), so we temporarily reset it.
275 pthread_setspecific(data
->owner
->m_key
, ptr
);
277 // See comment as above
278 g_static_private_set(&data
->owner
->m_key
, data
, 0);
281 // See comment as above
282 data
->owner
->m_key
.setLocalData(data
);
286 fastFree(data
->value
);
289 pthread_setspecific(data
->owner
->m_key
, 0);
293 g_static_private_set(&data
->owner
->m_key
, 0, 0);
295 TlsSetValue(tlsKeys()[data
->owner
->m_index
], 0);
297 #error ThreadSpecific is not implemented for this platform.
307 inline ThreadSpecific
<T
>::operator T
*()
309 T
* ptr
= static_cast<T
*>(get());
311 // Set up thread-specific value's memory pointer before invoking constructor, in case any function it calls
312 // needs to access the value, to avoid recursion.
313 ptr
= static_cast<T
*>(fastZeroedMalloc(sizeof(T
)));
321 inline T
* ThreadSpecific
<T
>::operator->()
323 return operator T
*();
327 inline T
& ThreadSpecific
<T
>::operator*()
329 return *operator T
*();
333 inline void ThreadSpecific
<T
>::replace(T
* newPtr
)
336 Data
* data
= static_cast<Data
*>(pthread_getspecific(m_key
));
339 fastFree(data
->value
);
340 data
->value
= newPtr
;