This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-02-04 15:23:12 +00:00
|
|
|
|
|
|
|
#include "common/spin_lock.h"
|
|
|
|
|
|
|
|
#if _MSC_VER
|
|
|
|
#include <intrin.h>
|
|
|
|
#if _M_AMD64
|
|
|
|
#define __x86_64__ 1
|
|
|
|
#endif
|
|
|
|
#if _M_ARM64
|
|
|
|
#define __aarch64__ 1
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#if __x86_64__
|
|
|
|
#include <xmmintrin.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2020-06-27 22:20:06 +00:00
|
|
|
void ThreadPause() {
|
2020-02-04 15:23:12 +00:00
|
|
|
#if __x86_64__
|
|
|
|
_mm_pause();
|
|
|
|
#elif __aarch64__ && _MSC_VER
|
|
|
|
__yield();
|
|
|
|
#elif __aarch64__
|
|
|
|
asm("yield");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-06-27 22:20:06 +00:00
|
|
|
} // Anonymous namespace
|
2020-02-04 15:23:12 +00:00
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
void SpinLock::lock() {
|
2020-02-10 18:45:08 +00:00
|
|
|
while (lck.test_and_set(std::memory_order_acquire)) {
|
2020-06-27 22:20:06 +00:00
|
|
|
ThreadPause();
|
2020-02-10 18:45:08 +00:00
|
|
|
}
|
2020-02-04 15:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SpinLock::unlock() {
|
|
|
|
lck.clear(std::memory_order_release);
|
|
|
|
}
|
|
|
|
|
2020-02-05 19:48:20 +00:00
|
|
|
bool SpinLock::try_lock() {
|
|
|
|
if (lck.test_and_set(std::memory_order_acquire)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-04 15:23:12 +00:00
|
|
|
} // namespace Common
|