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 10 matching lines...) Expand all Loading... |
52 return m_safelyInitialized || m_thread == WTF::currentThread() || WTF::i
sAtomicallyInitializedStaticMutexLockHeld(); | 53 return m_safelyInitialized || m_thread == WTF::currentThread() || WTF::i
sAtomicallyInitializedStaticMutexLockHeld(); |
53 } | 54 } |
54 | 55 |
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. |
| 64 // |
| 65 // If the object pointed to by the static local is on the Oilpan heap, a strong |
| 66 // Persistent<> is created to keep the pointed-to heap object alive. This makes |
| 67 // both the Persistent<> and the heap object reachable by LeakSanitizer's leak |
| 68 // detection pass. We do not want these intentional leaks to be reported by LSan
, |
| 69 // hence the static local is registered with Oilpan |
| 70 // (see RegisterStaticLocalReference<> below.) |
| 71 // |
| 72 // Upon Blink shutdown, we release all these statics and perform a final round |
| 73 // of GCs to sweep out their now-unreachable object graphs. The end result being |
| 74 // a tidied heap that the LeakSanitizer can then scan to report real leaks. |
| 75 // |
| 76 // Should you not want to register a static reference to an Oilpan object for |
| 77 // finalization upon shutdown, DEFINE_STATIC_LOCAL_NO_REGISTER() is provided. |
63 #ifndef DEFINE_STATIC_LOCAL | 78 #ifndef DEFINE_STATIC_LOCAL |
64 | 79 |
| 80 template<typename T> |
| 81 class CanRegisterStaticLocalReference { |
| 82 typedef char YesType; |
| 83 typedef struct NoType { |
| 84 char padding[8]; |
| 85 } NoType; |
| 86 |
| 87 // Check if class T has public method "T* registerAsStaticReference()". |
| 88 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); |
| 89 template<typename V> static NoType checkHasRegisterAsStaticReferenceMethod(.
..); |
| 90 public: |
| 91 |
| 92 static const bool value = sizeof(YesType) + sizeof(T) == sizeof(checkHasRegi
sterAsStaticReferenceMethod<T>(nullptr)) + sizeof(T); |
| 93 }; |
| 94 |
| 95 template<typename T, bool = CanRegisterStaticLocalReference<T>::value> |
| 96 class RegisterStaticLocalReference { |
| 97 public: |
| 98 static T* registerStatic(T* ptr) |
| 99 { |
| 100 return ptr; |
| 101 } |
| 102 }; |
| 103 |
| 104 template<typename T> |
| 105 class RegisterStaticLocalReference<T, true> { |
| 106 public: |
| 107 static T* registerStatic(T* ptr) |
| 108 { |
| 109 return static_cast<T*>(ptr->registerAsStaticReference()); |
| 110 } |
| 111 }; |
| 112 |
65 #if ENABLE(ASSERT) | 113 #if ENABLE(ASSERT) |
66 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ | 114 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ |
67 static StaticLocalVerifier name##StaticLocalVerifier; \ | 115 static StaticLocalVerifier name##StaticLocalVerifier; \ |
68 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ | 116 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ |
| 117 static type& name = *RegisterStaticLocalReference<type>::registerStatic(new
type arguments) |
| 118 #define DEFINE_STATIC_LOCAL_NO_REGISTER(type, name, arguments) \ |
| 119 static StaticLocalVerifier name##StaticLocalVerifier; \ |
| 120 ASSERT(name##StaticLocalVerifier.isNotRacy()); \ |
69 static type& name = *new type arguments | 121 static type& name = *new type arguments |
70 #else | 122 #else |
71 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ | 123 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ |
| 124 static type& name = *RegisterStaticLocalReference<type>::registerStatic(new
type arguments) |
| 125 #define DEFINE_STATIC_LOCAL_NO_REGISTER(type, name, arguments) \ |
72 static type& name = *new type arguments | 126 static type& name = *new type arguments |
73 #endif | 127 #endif |
74 | 128 |
75 #endif | 129 #endif // DEFINE_STATIC_LOCAL |
76 | |
77 | 130 |
78 // Use this to declare and define a static local pointer to a ref-counted object
so that | 131 // 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. | 132 // 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, | 133 // 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. | 134 // as this macro does not lead to an extra memory allocation. |
82 #ifndef DEFINE_STATIC_REF | 135 #ifndef DEFINE_STATIC_REF |
83 #define DEFINE_STATIC_REF(type, name, arguments) \ | 136 #define DEFINE_STATIC_REF(type, name, arguments) \ |
84 static type* name = PassRefPtr<type>(arguments).leakRef(); | 137 static type* name = PassRefPtr<type>(arguments).leakRef(); |
85 #endif | 138 #endif |
86 | 139 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 inline void* operator new(size_t, NotNullTag, void* location) | 215 inline void* operator new(size_t, NotNullTag, void* location) |
163 { | 216 { |
164 ASSERT(location); | 217 ASSERT(location); |
165 return location; | 218 return location; |
166 } | 219 } |
167 | 220 |
168 using WTF::bitwise_cast; | 221 using WTF::bitwise_cast; |
169 using WTF::safeCast; | 222 using WTF::safeCast; |
170 | 223 |
171 #endif // WTF_StdLibExtras_h | 224 #endif // WTF_StdLibExtras_h |
OLD | NEW |