| 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 15 matching lines...) Expand all Loading... |
| 26 #ifndef WTF_StdLibExtras_h | 26 #ifndef WTF_StdLibExtras_h |
| 27 #define WTF_StdLibExtras_h | 27 #define WTF_StdLibExtras_h |
| 28 | 28 |
| 29 #include "base/numerics/safe_conversions.h" | 29 #include "base/numerics/safe_conversions.h" |
| 30 #include "wtf/Assertions.h" | 30 #include "wtf/Assertions.h" |
| 31 #include "wtf/CPU.h" | 31 #include "wtf/CPU.h" |
| 32 #include "wtf/LeakAnnotations.h" | 32 #include "wtf/LeakAnnotations.h" |
| 33 #include "wtf/TypeTraits.h" | 33 #include "wtf/TypeTraits.h" |
| 34 #include <cstddef> | 34 #include <cstddef> |
| 35 | 35 |
| 36 #if ENABLE(ASSERT) | 36 #if DCHECK_IS_ON() |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 #include "wtf/Threading.h" | 38 #include "wtf/Threading.h" |
| 39 | 39 |
| 40 class WTF_EXPORT StaticLocalVerifier { | 40 class WTF_EXPORT StaticLocalVerifier { |
| 41 WTF_MAKE_NONCOPYABLE(StaticLocalVerifier); | 41 WTF_MAKE_NONCOPYABLE(StaticLocalVerifier); |
| 42 | 42 |
| 43 public: | 43 public: |
| 44 StaticLocalVerifier() | 44 StaticLocalVerifier() |
| 45 : m_safelyInitialized(WTF::isBeforeThreadCreated()), | 45 : m_safelyInitialized(WTF::isBeforeThreadCreated()), |
| 46 m_thread(WTF::currentThread()) {} | 46 m_thread(WTF::currentThread()) {} |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 ASSERT(singleton); | 83 ASSERT(singleton); |
| 84 // If this assert triggers, you're supplying an empty ("()") 'Arguments' | 84 // If this assert triggers, you're supplying an empty ("()") 'Arguments' |
| 85 // argument to DEFINE_STATIC_LOCAL() - it must be the heap object you wish | 85 // argument to DEFINE_STATIC_LOCAL() - it must be the heap object you wish |
| 86 // to create as a static singleton and wrapped up with a Persistent | 86 // to create as a static singleton and wrapped up with a Persistent |
| 87 // reference. | 87 // reference. |
| 88 ASSERT(*singleton); | 88 ASSERT(*singleton); |
| 89 return **singleton; | 89 return **singleton; |
| 90 } | 90 } |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 #if ENABLE(ASSERT) | 93 #if DCHECK_IS_ON() |
| 94 #define DEFINE_STATIC_LOCAL_CHECK_THREADSAFE_ACCESS(Name) \ | 94 #define DEFINE_STATIC_LOCAL_CHECK_THREADSAFE_ACCESS(Name) \ |
| 95 static StaticLocalVerifier Name##StaticLocalVerifier; \ | 95 static StaticLocalVerifier Name##StaticLocalVerifier; \ |
| 96 ASSERT(Name##StaticLocalVerifier.isNotRacy()) | 96 ASSERT(Name##StaticLocalVerifier.isNotRacy()) |
| 97 #else | 97 #else |
| 98 #define DEFINE_STATIC_LOCAL_CHECK_THREADSAFE_ACCESS(Name) | 98 #define DEFINE_STATIC_LOCAL_CHECK_THREADSAFE_ACCESS(Name) |
| 99 #endif | 99 #endif |
| 100 | 100 |
| 101 // Use DEFINE_STATIC_LOCAL() to declare and define a static local variable | 101 // Use DEFINE_STATIC_LOCAL() to declare and define a static local variable |
| 102 // (static T;) so that it is leaked and its destructors are not called at exit. | 102 // (static T;) so that it is leaked and its destructors are not called at exit. |
| 103 // T may also be a Blink garbage collected object, in which case it is | 103 // T may also be a Blink garbage collected object, in which case it is |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 enum NotNullTag { NotNull }; | 238 enum NotNullTag { NotNull }; |
| 239 inline void* operator new(size_t, NotNullTag, void* location) { | 239 inline void* operator new(size_t, NotNullTag, void* location) { |
| 240 ASSERT(location); | 240 ASSERT(location); |
| 241 return location; | 241 return location; |
| 242 } | 242 } |
| 243 | 243 |
| 244 using WTF::bitwiseCast; | 244 using WTF::bitwiseCast; |
| 245 using WTF::safeCast; | 245 using WTF::safeCast; |
| 246 | 246 |
| 247 #endif // WTF_StdLibExtras_h | 247 #endif // WTF_StdLibExtras_h |
| OLD | NEW |