Recommit [NFC] Better encapsulation of llvm::Optional Storage
[llvm-complete.git] / include / llvm / Support / UniqueLock.h
blob0a887ad5965da403a2e7482cb6c492b34c4a5aa2
1 //===- Support/UniqueLock.h - Acquire/Release Mutex In Scope ----*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines a guard for a block of code that ensures a Mutex is locked
10 // upon construction and released upon destruction.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_SUPPORT_UNIQUE_LOCK_H
15 #define LLVM_SUPPORT_UNIQUE_LOCK_H
17 #include <cassert>
19 namespace llvm {
21 /// A pared-down imitation of std::unique_lock from C++11. Contrary to the
22 /// name, it's really more of a wrapper for a lock. It may or may not have
23 /// an associated mutex, which is guaranteed to be locked upon creation
24 /// and unlocked after destruction. unique_lock can also unlock the mutex
25 /// and re-lock it freely during its lifetime.
26 /// Guard a section of code with a mutex.
27 template<typename MutexT>
28 class unique_lock {
29 MutexT *M = nullptr;
30 bool locked = false;
32 public:
33 unique_lock() = default;
34 explicit unique_lock(MutexT &m) : M(&m), locked(true) { M->lock(); }
35 unique_lock(const unique_lock &) = delete;
36 unique_lock &operator=(const unique_lock &) = delete;
38 void operator=(unique_lock &&o) {
39 if (owns_lock())
40 M->unlock();
41 M = o.M;
42 locked = o.locked;
43 o.M = nullptr;
44 o.locked = false;
47 ~unique_lock() { if (owns_lock()) M->unlock(); }
49 void lock() {
50 assert(!locked && "mutex already locked!");
51 assert(M && "no associated mutex!");
52 M->lock();
53 locked = true;
56 void unlock() {
57 assert(locked && "unlocking a mutex that isn't locked!");
58 assert(M && "no associated mutex!");
59 M->unlock();
60 locked = false;
63 bool owns_lock() { return locked; }
66 } // end namespace llvm
68 #endif // LLVM_SUPPORT_UNIQUE_LOCK_H