2014-12-17 11:08:14 +05:30
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 05:47:46 +05:30
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 23:15:50 +05:30
|
|
|
#pragma once
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2016-12-12 02:56:23 +05:30
|
|
|
#include <chrono>
|
2014-09-03 10:35:45 +05:30
|
|
|
#include <condition_variable>
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <cstddef>
|
2014-09-03 10:35:45 +05:30
|
|
|
#include <mutex>
|
2016-09-18 06:08:01 +05:30
|
|
|
#include <thread>
|
2015-06-21 03:15:15 +05:30
|
|
|
#include "common/common_types.h"
|
2013-09-05 05:47:46 +05:30
|
|
|
|
2016-04-14 17:23:05 +05:30
|
|
|
namespace Common {
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
int CurrentThreadId();
|
|
|
|
|
|
|
|
void SetThreadAffinity(std::thread::native_handle_type thread, u32 mask);
|
|
|
|
void SetCurrentThreadAffinity(u32 mask);
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
class Event {
|
2013-09-05 05:47:46 +05:30
|
|
|
public:
|
2016-09-19 06:31:46 +05:30
|
|
|
Event() : is_set(false) {}
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
void Set() {
|
2016-04-14 17:23:05 +05:30
|
|
|
std::lock_guard<std::mutex> lk(mutex);
|
2015-04-17 02:25:30 +05:30
|
|
|
if (!is_set) {
|
2014-04-02 03:50:08 +05:30
|
|
|
is_set = true;
|
2016-04-14 17:23:05 +05:30
|
|
|
condvar.notify_one();
|
2014-04-02 03:50:08 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
void Wait() {
|
2016-04-14 17:23:05 +05:30
|
|
|
std::unique_lock<std::mutex> lk(mutex);
|
2016-09-18 06:08:01 +05:30
|
|
|
condvar.wait(lk, [&] { return is_set; });
|
2014-04-02 03:50:08 +05:30
|
|
|
is_set = false;
|
|
|
|
}
|
|
|
|
|
2018-08-08 09:20:03 +05:30
|
|
|
template <class Duration>
|
|
|
|
bool WaitFor(const std::chrono::duration<Duration>& time) {
|
|
|
|
std::unique_lock<std::mutex> lk(mutex);
|
|
|
|
if (!condvar.wait_for(lk, time, [this] { return is_set; }))
|
|
|
|
return false;
|
|
|
|
is_set = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-12-12 02:56:23 +05:30
|
|
|
template <class Clock, class Duration>
|
|
|
|
bool WaitUntil(const std::chrono::time_point<Clock, Duration>& time) {
|
|
|
|
std::unique_lock<std::mutex> lk(mutex);
|
|
|
|
if (!condvar.wait_until(lk, time, [this] { return is_set; }))
|
|
|
|
return false;
|
|
|
|
is_set = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
void Reset() {
|
2016-04-14 17:23:05 +05:30
|
|
|
std::unique_lock<std::mutex> lk(mutex);
|
2016-09-18 06:08:01 +05:30
|
|
|
// no other action required, since wait loops on the predicate and any lingering signal will
|
|
|
|
// get cleared on the first iteration
|
2014-04-02 03:50:08 +05:30
|
|
|
is_set = false;
|
|
|
|
}
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
private:
|
2015-04-17 02:25:30 +05:30
|
|
|
bool is_set;
|
2016-04-14 17:23:05 +05:30
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2013-09-05 05:47:46 +05:30
|
|
|
};
|
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
class Barrier {
|
2013-09-05 05:47:46 +05:30
|
|
|
public:
|
2018-09-07 01:33:28 +05:30
|
|
|
explicit Barrier(std::size_t count_) : count(count_), waiting(0), generation(0) {}
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2015-04-17 02:25:30 +05:30
|
|
|
/// Blocks until all "count" threads have called Sync()
|
|
|
|
void Sync() {
|
2016-04-14 17:23:05 +05:30
|
|
|
std::unique_lock<std::mutex> lk(mutex);
|
2018-09-07 01:33:28 +05:30
|
|
|
const std::size_t current_generation = generation;
|
2014-04-02 03:50:08 +05:30
|
|
|
|
2016-04-14 17:23:05 +05:30
|
|
|
if (++waiting == count) {
|
2016-04-14 17:24:06 +05:30
|
|
|
generation++;
|
2016-04-14 17:23:05 +05:30
|
|
|
waiting = 0;
|
|
|
|
condvar.notify_all();
|
2015-04-17 02:25:30 +05:30
|
|
|
} else {
|
2016-09-18 06:08:01 +05:30
|
|
|
condvar.wait(lk,
|
|
|
|
[this, current_generation] { return current_generation != generation; });
|
2014-04-02 03:50:08 +05:30
|
|
|
}
|
|
|
|
}
|
2013-09-05 05:47:46 +05:30
|
|
|
|
|
|
|
private:
|
2016-04-14 17:23:05 +05:30
|
|
|
std::condition_variable condvar;
|
|
|
|
std::mutex mutex;
|
2018-09-07 01:33:28 +05:30
|
|
|
const std::size_t count;
|
|
|
|
std::size_t waiting;
|
|
|
|
std::size_t generation; // Incremented once each time the barrier is used
|
2013-09-05 05:47:46 +05:30
|
|
|
};
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2013-09-05 05:47:46 +05:30
|
|
|
void SleepCurrentThread(int ms);
|
2016-09-18 06:08:01 +05:30
|
|
|
void SwitchCurrentThread(); // On Linux, this is equal to sleep 1ms
|
|
|
|
void SetCurrentThreadName(const char* name);
|
2014-11-19 14:19:13 +05:30
|
|
|
|
2013-09-05 05:47:46 +05:30
|
|
|
} // namespace Common
|