| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // emulates google3/base/once.h | 5 // emulates google3/base/once.h |
| 6 // | 6 // |
| 7 // This header is intended to be included only by v8's internal code. Users | 7 // This header is intended to be included only by v8's internal code. Users |
| 8 // should not use this directly. | 8 // should not use this directly. |
| 9 // | 9 // |
| 10 // This is basically a portable version of pthread_once(). | 10 // This is basically a portable version of pthread_once(). |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 // } | 42 // } |
| 43 // | 43 // |
| 44 // Note that if CallOnce() is called before main() has begun, it must | 44 // Note that if CallOnce() is called before main() has begun, it must |
| 45 // only be called by the thread that will eventually call main() -- that is, | 45 // only be called by the thread that will eventually call main() -- that is, |
| 46 // the thread that performs dynamic initialization. In general this is a safe | 46 // the thread that performs dynamic initialization. In general this is a safe |
| 47 // assumption since people don't usually construct threads before main() starts, | 47 // assumption since people don't usually construct threads before main() starts, |
| 48 // but it is technically not guaranteed. Unfortunately, Win32 provides no way | 48 // but it is technically not guaranteed. Unfortunately, Win32 provides no way |
| 49 // whatsoever to statically-initialize its synchronization primitives, so our | 49 // whatsoever to statically-initialize its synchronization primitives, so our |
| 50 // only choice is to assume that dynamic initialization is single-threaded. | 50 // only choice is to assume that dynamic initialization is single-threaded. |
| 51 | 51 |
| 52 #ifndef V8_ONCE_H_ | 52 #ifndef V8_BASE_ONCE_H_ |
| 53 #define V8_ONCE_H_ | 53 #define V8_BASE_ONCE_H_ |
| 54 | 54 |
| 55 #include "src/atomicops.h" | 55 #include "src/base/atomicops.h" |
| 56 | 56 |
| 57 namespace v8 { | 57 namespace v8 { |
| 58 namespace internal { | 58 namespace base { |
| 59 | 59 |
| 60 typedef AtomicWord OnceType; | 60 typedef AtomicWord OnceType; |
| 61 | 61 |
| 62 #define V8_ONCE_INIT 0 | 62 #define V8_ONCE_INIT 0 |
| 63 | 63 |
| 64 #define V8_DECLARE_ONCE(NAME) ::v8::internal::OnceType NAME | 64 #define V8_DECLARE_ONCE(NAME) ::v8::base::OnceType NAME |
| 65 | 65 |
| 66 enum { | 66 enum { |
| 67 ONCE_STATE_UNINITIALIZED = 0, | 67 ONCE_STATE_UNINITIALIZED = 0, |
| 68 ONCE_STATE_EXECUTING_FUNCTION = 1, | 68 ONCE_STATE_EXECUTING_FUNCTION = 1, |
| 69 ONCE_STATE_DONE = 2 | 69 ONCE_STATE_DONE = 2 |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 typedef void (*NoArgFunction)(); | 72 typedef void (*NoArgFunction)(); |
| 73 typedef void (*PointerArgFunction)(void* arg); | 73 typedef void (*PointerArgFunction)(void* arg); |
| 74 | 74 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 88 | 88 |
| 89 template <typename Arg> | 89 template <typename Arg> |
| 90 inline void CallOnce(OnceType* once, | 90 inline void CallOnce(OnceType* once, |
| 91 typename OneArgFunction<Arg*>::type init_func, Arg* arg) { | 91 typename OneArgFunction<Arg*>::type init_func, Arg* arg) { |
| 92 if (Acquire_Load(once) != ONCE_STATE_DONE) { | 92 if (Acquire_Load(once) != ONCE_STATE_DONE) { |
| 93 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), | 93 CallOnceImpl(once, reinterpret_cast<PointerArgFunction>(init_func), |
| 94 static_cast<void*>(arg)); | 94 static_cast<void*>(arg)); |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 } } // namespace v8::internal | 98 } } // namespace v8::base |
| 99 | 99 |
| 100 #endif // V8_ONCE_H_ | 100 #endif // V8_BASE_ONCE_H_ |
| OLD | NEW |