summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_spin_lock.cpp
blob: 4df2e5c1aabc356cc9f4413149c659648a935c82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// Copyright 2021 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#include "core/hle/kernel/k_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 {

void ThreadPause() {
#if __x86_64__
    _mm_pause();
#elif __aarch64__ && _MSC_VER
    __yield();
#elif __aarch64__
    asm("yield");
#endif
}

} // namespace

namespace Kernel {

void KSpinLock::Lock() {
    lck.lock();
}

void KSpinLock::Unlock() {
    lck.unlock();
}

bool KSpinLock::TryLock() {
    return lck.try_lock();
}

} // namespace Kernel