1 //===- Support/UniqueLock.h - Acquire/Release Mutex In Scope ----*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
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
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
>
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
) {
47 ~unique_lock() { if (owns_lock()) M
->unlock(); }
50 assert(!locked
&& "mutex already locked!");
51 assert(M
&& "no associated mutex!");
57 assert(locked
&& "unlocking a mutex that isn't locked!");
58 assert(M
&& "no associated mutex!");
63 bool owns_lock() { return locked
; }
66 } // end namespace llvm
68 #endif // LLVM_SUPPORT_UNIQUE_LOCK_H