Austin Schuh | 36244a1 | 2019-09-21 17:52:38 -0700 | [diff] [blame] | 1 | // Copyright 2017 The Abseil Authors. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // https://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | // This file is a no-op if the required LowLevelAlloc support is missing. |
| 16 | #include "absl/base/internal/low_level_alloc.h" |
| 17 | #ifndef ABSL_LOW_LEVEL_ALLOC_MISSING |
| 18 | |
| 19 | #include "absl/synchronization/internal/per_thread_sem.h" |
| 20 | |
| 21 | #include <atomic> |
| 22 | |
| 23 | #include "absl/base/attributes.h" |
| 24 | #include "absl/base/internal/thread_identity.h" |
| 25 | #include "absl/synchronization/internal/waiter.h" |
| 26 | |
| 27 | namespace absl { |
Austin Schuh | b4691e9 | 2020-12-31 12:37:18 -0800 | [diff] [blame^] | 28 | ABSL_NAMESPACE_BEGIN |
Austin Schuh | 36244a1 | 2019-09-21 17:52:38 -0700 | [diff] [blame] | 29 | namespace synchronization_internal { |
| 30 | |
| 31 | void PerThreadSem::SetThreadBlockedCounter(std::atomic<int> *counter) { |
| 32 | base_internal::ThreadIdentity *identity; |
| 33 | identity = GetOrCreateCurrentThreadIdentity(); |
| 34 | identity->blocked_count_ptr = counter; |
| 35 | } |
| 36 | |
| 37 | std::atomic<int> *PerThreadSem::GetThreadBlockedCounter() { |
| 38 | base_internal::ThreadIdentity *identity; |
| 39 | identity = GetOrCreateCurrentThreadIdentity(); |
| 40 | return identity->blocked_count_ptr; |
| 41 | } |
| 42 | |
| 43 | void PerThreadSem::Init(base_internal::ThreadIdentity *identity) { |
Austin Schuh | b4691e9 | 2020-12-31 12:37:18 -0800 | [diff] [blame^] | 44 | new (Waiter::GetWaiter(identity)) Waiter(); |
Austin Schuh | 36244a1 | 2019-09-21 17:52:38 -0700 | [diff] [blame] | 45 | identity->ticker.store(0, std::memory_order_relaxed); |
| 46 | identity->wait_start.store(0, std::memory_order_relaxed); |
| 47 | identity->is_idle.store(false, std::memory_order_relaxed); |
| 48 | } |
| 49 | |
Austin Schuh | b4691e9 | 2020-12-31 12:37:18 -0800 | [diff] [blame^] | 50 | void PerThreadSem::Destroy(base_internal::ThreadIdentity *identity) { |
| 51 | Waiter::GetWaiter(identity)->~Waiter(); |
| 52 | } |
| 53 | |
Austin Schuh | 36244a1 | 2019-09-21 17:52:38 -0700 | [diff] [blame] | 54 | void PerThreadSem::Tick(base_internal::ThreadIdentity *identity) { |
| 55 | const int ticker = |
| 56 | identity->ticker.fetch_add(1, std::memory_order_relaxed) + 1; |
| 57 | const int wait_start = identity->wait_start.load(std::memory_order_relaxed); |
| 58 | const bool is_idle = identity->is_idle.load(std::memory_order_relaxed); |
| 59 | if (wait_start && (ticker - wait_start > Waiter::kIdlePeriods) && !is_idle) { |
| 60 | // Wakeup the waiting thread since it is time for it to become idle. |
| 61 | Waiter::GetWaiter(identity)->Poke(); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | } // namespace synchronization_internal |
Austin Schuh | b4691e9 | 2020-12-31 12:37:18 -0800 | [diff] [blame^] | 66 | ABSL_NAMESPACE_END |
Austin Schuh | 36244a1 | 2019-09-21 17:52:38 -0700 | [diff] [blame] | 67 | } // namespace absl |
| 68 | |
| 69 | extern "C" { |
| 70 | |
| 71 | ABSL_ATTRIBUTE_WEAK void AbslInternalPerThreadSemPost( |
| 72 | absl::base_internal::ThreadIdentity *identity) { |
| 73 | absl::synchronization_internal::Waiter::GetWaiter(identity)->Post(); |
| 74 | } |
| 75 | |
| 76 | ABSL_ATTRIBUTE_WEAK bool AbslInternalPerThreadSemWait( |
| 77 | absl::synchronization_internal::KernelTimeout t) { |
| 78 | bool timeout = false; |
| 79 | absl::base_internal::ThreadIdentity *identity; |
| 80 | identity = absl::synchronization_internal::GetOrCreateCurrentThreadIdentity(); |
| 81 | |
| 82 | // Ensure wait_start != 0. |
| 83 | int ticker = identity->ticker.load(std::memory_order_relaxed); |
| 84 | identity->wait_start.store(ticker ? ticker : 1, std::memory_order_relaxed); |
| 85 | identity->is_idle.store(false, std::memory_order_relaxed); |
| 86 | |
| 87 | if (identity->blocked_count_ptr != nullptr) { |
| 88 | // Increment count of threads blocked in a given thread pool. |
| 89 | identity->blocked_count_ptr->fetch_add(1, std::memory_order_relaxed); |
| 90 | } |
| 91 | |
| 92 | timeout = |
| 93 | !absl::synchronization_internal::Waiter::GetWaiter(identity)->Wait(t); |
| 94 | |
| 95 | if (identity->blocked_count_ptr != nullptr) { |
| 96 | identity->blocked_count_ptr->fetch_sub(1, std::memory_order_relaxed); |
| 97 | } |
| 98 | |
| 99 | identity->is_idle.store(false, std::memory_order_relaxed); |
| 100 | identity->wait_start.store(0, std::memory_order_relaxed); |
| 101 | return !timeout; |
| 102 | } |
| 103 | |
| 104 | } // extern "C" |
| 105 | |
| 106 | #endif // ABSL_LOW_LEVEL_ALLOC_MISSING |