1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/sequence_manager/atomic_flag_set.h"
#include <bit>
#include <utility>
#include "base/check_op.h"
#include "base/functional/callback.h"
namespace base::sequence_manager::internal {
AtomicFlagSet::AtomicFlagSet(
scoped_refptr<const AssociatedThreadId> associated_thread)
: associated_thread_(std::move(associated_thread)) {}
AtomicFlagSet::~AtomicFlagSet() {
DCHECK(!alloc_list_head_);
DCHECK(!partially_free_list_head_);
}
AtomicFlagSet::AtomicFlag::AtomicFlag() = default;
AtomicFlagSet::AtomicFlag::~AtomicFlag() {
ReleaseAtomicFlag();
}
AtomicFlagSet::AtomicFlag::AtomicFlag(AtomicFlagSet* outer,
Group* element,
size_t flag_bit)
: outer_(outer), group_(element), flag_bit_(flag_bit) {}
AtomicFlagSet::AtomicFlag::AtomicFlag(AtomicFlag&& other)
: outer_(other.outer_), group_(other.group_), flag_bit_(other.flag_bit_) {
other.outer_ = nullptr;
other.group_ = nullptr;
}
void AtomicFlagSet::AtomicFlag::SetActive(bool active) {
DCHECK(group_);
if (active) {
// Release semantics are required to ensure that all memory accesses made on
// this thread happen-before any others done on the thread running the
// active callbacks.
group_->flags.fetch_or(flag_bit_, std::memory_order_release);
} else {
// No operation is being performed based on the bit *not* being set (i.e.
// state of other memory is irrelevant); hence no memory order is required
// when unsetting it.
group_->flags.fetch_and(~flag_bit_, std::memory_order_relaxed);
}
}
void AtomicFlagSet::AtomicFlag::ReleaseAtomicFlag() {
if (!group_) {
return;
}
DCHECK_CALLED_ON_VALID_THREAD(outer_->associated_thread_->thread_checker);
SetActive(false);
// If |group_| was full then add it on the partially free list.
if (group_->IsFull()) {
outer_->AddToPartiallyFreeList(group_);
}
size_t index = Group::IndexOfFirstFlagSet(flag_bit_);
DCHECK(!group_->flag_callbacks[index].is_null());
group_->flag_callbacks[index] = RepeatingClosure();
group_->allocated_flags &= ~flag_bit_;
// If |group_| has become empty delete it.
if (group_->IsEmpty()) {
auto ptr = group_.ExtractAsDangling();
outer_->RemoveFromPartiallyFreeList(ptr);
outer_->RemoveFromAllocList(ptr);
}
outer_ = nullptr;
group_ = nullptr;
}
AtomicFlagSet::AtomicFlag AtomicFlagSet::AddFlag(RepeatingClosure callback) {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
// Allocate a new Group if needed.
if (!partially_free_list_head_) {
AddToAllocList(std::make_unique<Group>());
AddToPartiallyFreeList(alloc_list_head_.get());
}
DCHECK(partially_free_list_head_);
Group* group = partially_free_list_head_;
size_t first_unoccupied_index = group->FindFirstUnallocatedFlag();
DCHECK(!group->flag_callbacks[first_unoccupied_index]);
group->flag_callbacks[first_unoccupied_index] = std::move(callback);
size_t flag_bit = size_t{1} << first_unoccupied_index;
group->allocated_flags |= flag_bit;
if (group->IsFull()) {
RemoveFromPartiallyFreeList(group);
}
return AtomicFlag(this, group, flag_bit);
}
void AtomicFlagSet::RunActiveCallbacks() const {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
for (Group* iter = alloc_list_head_.get(); iter; iter = iter->next.get()) {
// Acquire semantics are required to guarantee that all memory side-effects
// made by other threads that were allowed to perform operations are
// synchronized with this thread before it returns from this method.
size_t active_flags = std::atomic_exchange_explicit(
&iter->flags, size_t{0}, std::memory_order_acquire);
// This is O(number of bits set).
while (active_flags) {
size_t index = Group::IndexOfFirstFlagSet(active_flags);
// Clear the flag.
active_flags ^= size_t{1} << index;
iter->flag_callbacks[index].Run();
}
}
}
AtomicFlagSet::Group::Group() = default;
AtomicFlagSet::Group::~Group() {
DCHECK_EQ(allocated_flags, 0u);
DCHECK(!partially_free_list_prev);
DCHECK(!partially_free_list_next);
}
bool AtomicFlagSet::Group::IsFull() const {
return (~allocated_flags) == 0u;
}
bool AtomicFlagSet::Group::IsEmpty() const {
return allocated_flags == 0u;
}
size_t AtomicFlagSet::Group::FindFirstUnallocatedFlag() const {
size_t unallocated_flags = ~allocated_flags;
DCHECK_NE(unallocated_flags, 0u);
size_t index = IndexOfFirstFlagSet(unallocated_flags);
DCHECK_LT(index, static_cast<size_t>(kNumFlags));
return index;
}
// static
size_t AtomicFlagSet::Group::IndexOfFirstFlagSet(size_t flag) {
DCHECK_NE(flag, 0u);
// std::countr_zero is non-negative.
return static_cast<size_t>(std::countr_zero(flag));
}
void AtomicFlagSet::AddToAllocList(std::unique_ptr<Group> group) {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
if (alloc_list_head_) {
alloc_list_head_->prev = group.get();
}
group->next = std::move(alloc_list_head_);
alloc_list_head_ = std::move(group);
}
void AtomicFlagSet::RemoveFromAllocList(Group* group) {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
if (group->next) {
group->next->prev = group->prev;
}
if (group->prev) {
group->prev->next = std::move(group->next);
} else {
alloc_list_head_ = std::move(group->next);
}
}
void AtomicFlagSet::AddToPartiallyFreeList(Group* group) {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
DCHECK_NE(partially_free_list_head_, group);
DCHECK(!group->partially_free_list_prev);
DCHECK(!group->partially_free_list_next);
if (partially_free_list_head_) {
partially_free_list_head_->partially_free_list_prev = group;
}
group->partially_free_list_next = partially_free_list_head_;
partially_free_list_head_ = group;
}
void AtomicFlagSet::RemoveFromPartiallyFreeList(Group* group) {
DCHECK_CALLED_ON_VALID_THREAD(associated_thread_->thread_checker);
DCHECK(partially_free_list_head_);
// Check |group| is in the list.
DCHECK(partially_free_list_head_ == group || group->partially_free_list_prev);
if (group->partially_free_list_next) {
group->partially_free_list_next->partially_free_list_prev =
group->partially_free_list_prev;
}
if (group->partially_free_list_prev) {
group->partially_free_list_prev->partially_free_list_next =
group->partially_free_list_next;
} else {
partially_free_list_head_ = group->partially_free_list_next;
}
group->partially_free_list_prev = nullptr;
group->partially_free_list_next = nullptr;
}
} // namespace base::sequence_manager::internal
|