OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 11 matching lines...) Expand all Loading... |
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
24 */ | 24 */ |
25 | 25 |
26 #ifndef WTF_StdLibExtras_h | 26 #ifndef WTF_StdLibExtras_h |
27 #define WTF_StdLibExtras_h | 27 #define WTF_StdLibExtras_h |
28 | 28 |
29 #include "wtf/Assertions.h" | 29 #include "wtf/Assertions.h" |
30 #include "wtf/CPU.h" | 30 #include "wtf/CPU.h" |
31 #include "wtf/CheckedArithmetic.h" | 31 #include "wtf/CheckedArithmetic.h" |
| 32 #include "wtf/TypeTraits.h" |
32 #include <cstddef> | 33 #include <cstddef> |
33 | 34 |
34 #if ENABLE(ASSERT) | 35 #if ENABLE(ASSERT) |
35 #include "wtf/Noncopyable.h" | 36 #include "wtf/Noncopyable.h" |
36 #include "wtf/Threading.h" | 37 #include "wtf/Threading.h" |
37 | 38 |
38 class WTF_EXPORT StaticLocalVerifier { | 39 class WTF_EXPORT StaticLocalVerifier { |
39 WTF_MAKE_NONCOPYABLE(StaticLocalVerifier); | 40 WTF_MAKE_NONCOPYABLE(StaticLocalVerifier); |
40 public: | 41 public: |
41 StaticLocalVerifier() | 42 StaticLocalVerifier() |
(...skipping 13 matching lines...) Expand all Loading... |
55 private: | 56 private: |
56 bool m_safelyInitialized; | 57 bool m_safelyInitialized; |
57 ThreadIdentifier m_thread; | 58 ThreadIdentifier m_thread; |
58 }; | 59 }; |
59 #endif | 60 #endif |
60 | 61 |
61 // Use this to declare and define a static local variable (static T;) so that | 62 // Use this to declare and define a static local variable (static T;) so that |
62 // it is leaked so that its destructors are not called at exit. | 63 // it is leaked so that its destructors are not called at exit. |
63 #ifndef DEFINE_STATIC_LOCAL | 64 #ifndef DEFINE_STATIC_LOCAL |
64 | 65 |
| 66 template<typename T> |
| 67 class CanRegisterStaticLocalReference { |
| 68 typedef char YesType; |
| 69 typedef struct NoType { |
| 70 char padding[8]; |
| 71 } NoType; |
| 72 |
| 73 // Check if class T has public method "T* registerAsStaticReference()". |
| 74 template<typename V> static YesType checkHasRegisterAsStaticReferenceMethod(
V* p, typename WTF::EnableIf<WTF::IsSubclass<V, typename std::remove_pointer<dec
ltype(p->registerAsStaticReference())>::type>::value>::Type* = 0); |
| 75 template<typename V> static NoType checkHasRegisterAsStaticReferenceMethod(.
..); |
| 76 public: |
| 77 |
| 78 static const bool value = sizeof(YesType) + sizeof(T) == sizeof(checkHasRegi
sterAsStaticReferenceMethod<T>(nullptr)) + sizeof(T); |
| 79 }; |
| 80 |
| 81 template<typename T, bool = CanRegisterStaticLocalReference<T>::value> |
| 82 class RegisterStaticLocalReference { |
| 83 public: |
| 84 static T* registerStatic(T* ptr) |
| 85 { |
| 86 return ptr; |
| 87 } |
| 88 }; |
| 89 |
| 90 template<typename T> |
| 91 class RegisterStaticLocalReference<T, true> { |
| 92 public: |
| 93 static T* registerStatic(T* ptr) |
| 94 { |
| 95 return static_cast<T*>(ptr->registerAsStaticReference()); |
| 96 } |
| 97 }; |
| 98 |
65 #if ENABLE(ASSERT) | 99 #if ENABLE(ASSERT) |
66 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ | 100 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ |
67 static StaticLocalVerifier name##StaticLocalVerifier; \ | 101 static StaticLocalVerifier name##StaticLocalVerifier; \ |
68 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ | 102 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ |
| 103 static type& name = *RegisterStaticLocalReference<type>::registerStatic(new
type arguments) |
| 104 #define DEFINE_STATIC_LOCAL_NO_REGISTER(type, name, arguments) \ |
| 105 static StaticLocalVerifier name##StaticLocalVerifier; \ |
| 106 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ |
69 static type& name = *new type arguments | 107 static type& name = *new type arguments |
70 #else | 108 #else |
71 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ | 109 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ |
| 110 static type& name = *RegisterStaticLocalReference<type>::registerStatic(new
type arguments) |
| 111 #define DEFINE_STATIC_LOCAL_NO_REGISTER(type, name, arguments) \ |
72 static type& name = *new type arguments | 112 static type& name = *new type arguments |
73 #endif | 113 #endif |
74 | 114 |
75 #endif | 115 #endif // DEFINE_STATIC_LOCAL |
76 | |
77 | 116 |
78 // Use this to declare and define a static local pointer to a ref-counted object
so that | 117 // Use this to declare and define a static local pointer to a ref-counted object
so that |
79 // it is leaked so that the object's destructors are not called at exit. | 118 // it is leaked so that the object's destructors are not called at exit. |
80 // This macro should be used with ref-counted objects rather than DEFINE_STATIC_
LOCAL macro, | 119 // This macro should be used with ref-counted objects rather than DEFINE_STATIC_
LOCAL macro, |
81 // as this macro does not lead to an extra memory allocation. | 120 // as this macro does not lead to an extra memory allocation. |
82 #ifndef DEFINE_STATIC_REF | 121 #ifndef DEFINE_STATIC_REF |
83 #define DEFINE_STATIC_REF(type, name, arguments) \ | 122 #define DEFINE_STATIC_REF(type, name, arguments) \ |
84 static type* name = PassRefPtr<type>(arguments).leakRef(); | 123 static type* name = PassRefPtr<type>(arguments).leakRef(); |
85 #endif | 124 #endif |
86 | 125 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 inline void* operator new(size_t, NotNullTag, void* location) | 201 inline void* operator new(size_t, NotNullTag, void* location) |
163 { | 202 { |
164 ASSERT(location); | 203 ASSERT(location); |
165 return location; | 204 return location; |
166 } | 205 } |
167 | 206 |
168 using WTF::bitwise_cast; | 207 using WTF::bitwise_cast; |
169 using WTF::safeCast; | 208 using WTF::safeCast; |
170 | 209 |
171 #endif // WTF_StdLibExtras_h | 210 #endif // WTF_StdLibExtras_h |
OLD | NEW |