blob: a81cb8c2d073cd331eb580488bbaf80329adbecc [file] [log] [blame]
dvyukov@google.com6beeb832011-05-17 00:01:54 +09001// Copyright (c) 2011 The Chromium Authors. All rights reserved.
deanm@google.coma6deb002008-09-08 23:11:13 +09002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/lazy_instance.h"
6
7#include "base/at_exit.h"
8#include "base/atomicops.h"
9#include "base/basictypes.h"
brettw@chromium.org61391822011-01-01 05:02:16 +090010#include "base/threading/platform_thread.h"
timurrrr@chromium.orgf39c3ff2010-05-14 17:24:42 +090011#include "base/third_party/dynamic_annotations/dynamic_annotations.h"
deanm@google.coma6deb002008-09-08 23:11:13 +090012
13namespace base {
joth@chromium.orgb24883c2011-11-15 22:31:49 +090014namespace internal {
deanm@google.coma6deb002008-09-08 23:11:13 +090015
joth@chromium.orgb24883c2011-11-15 22:31:49 +090016// TODO(joth): This function could be shared with Singleton, in place of its
17// WaitForInstance() call.
18bool NeedsLazyInstance(subtle::AtomicWord* state) {
19 // Try to create the instance, if we're the first, will go from 0 to
20 // kLazyInstanceStateCreating, otherwise we've already been beaten here.
21 // The memory access has no memory ordering as state 0 and
22 // kLazyInstanceStateCreating have no associated data (memory barriers are
23 // all about ordering of memory accesses to *associated* data).
24 if (subtle::NoBarrier_CompareAndSwap(state, 0,
25 kLazyInstanceStateCreating) == 0)
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090026 // Caller must create instance
27 return true;
dvyukov@google.com6beeb832011-05-17 00:01:54 +090028
29 // It's either in the process of being created, or already created. Spin.
30 // The load has acquire memory ordering as a thread which sees
31 // state_ == STATE_CREATED needs to acquire visibility over
32 // the associated data (buf_). Pairing Release_Store is in
joth@chromium.orgb24883c2011-11-15 22:31:49 +090033 // CompleteLazyInstance().
34 while (subtle::Acquire_Load(state) == kLazyInstanceStateCreating) {
dvyukov@google.com6beeb832011-05-17 00:01:54 +090035 PlatformThread::YieldCurrentThread();
joth@chromium.orgb24883c2011-11-15 22:31:49 +090036 }
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090037 // Someone else created the instance.
38 return false;
39}
40
joth@chromium.orgb24883c2011-11-15 22:31:49 +090041void CompleteLazyInstance(subtle::AtomicWord* state,
42 subtle::AtomicWord new_instance,
43 void* lazy_instance,
44 void (*dtor)(void*)) {
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090045 // See the comment to the corresponding HAPPENS_AFTER in Pointer().
joth@chromium.orgb24883c2011-11-15 22:31:49 +090046 ANNOTATE_HAPPENS_BEFORE(state);
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090047
48 // Instance is created, go from CREATING to CREATED.
joth@chromium.orgb24883c2011-11-15 22:31:49 +090049 // Releases visibility over private_buf_ to readers. Pairing Acquire_Load's
50 // are in NeedsInstance() and Pointer().
51 subtle::Release_Store(state, new_instance);
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090052
craig.schlenter@chromium.org0cf58332010-03-13 00:28:48 +090053 // Make sure that the lazily instantiated object will get destroyed at exit.
evan@chromium.orga04f70c2010-10-22 05:41:47 +090054 if (dtor)
joth@chromium.orgb24883c2011-11-15 22:31:49 +090055 AtExitManager::RegisterCallback(dtor, lazy_instance);
deanm@google.coma6deb002008-09-08 23:11:13 +090056}
57
joth@chromium.orgb24883c2011-11-15 22:31:49 +090058} // namespace internal
deanm@google.coma6deb002008-09-08 23:11:13 +090059} // namespace base