2018-06-21 06:49:43 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-31 12:06:09 +00:00
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/common_types.h"
|
2020-03-03 21:19:44 +00:00
|
|
|
#include "core/arm/exclusive_monitor.h"
|
2018-06-21 07:40:29 +00:00
|
|
|
#include "core/core.h"
|
2019-03-05 16:54:06 +00:00
|
|
|
#include "core/hle/kernel/address_arbiter.h"
|
2018-06-21 07:40:29 +00:00
|
|
|
#include "core/hle/kernel/errors.h"
|
2020-03-03 21:19:44 +00:00
|
|
|
#include "core/hle/kernel/handle_table.h"
|
|
|
|
#include "core/hle/kernel/kernel.h"
|
2018-08-31 16:21:34 +00:00
|
|
|
#include "core/hle/kernel/scheduler.h"
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2020-03-03 21:19:44 +00:00
|
|
|
#include "core/hle/kernel/time_manager.h"
|
2018-07-31 12:06:09 +00:00
|
|
|
#include "core/hle/result.h"
|
2018-06-21 06:49:43 +00:00
|
|
|
#include "core/memory.h"
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
namespace Kernel {
|
2019-12-11 15:55:38 +00:00
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Wake up num_to_wake (or all) threads in a vector.
|
2019-12-11 15:55:38 +00:00
|
|
|
void AddressArbiter::WakeThreads(const std::vector<std::shared_ptr<Thread>>& waiting_threads,
|
|
|
|
s32 num_to_wake) {
|
2020-03-03 21:19:44 +00:00
|
|
|
auto& time_manager = system.Kernel().TimeManager();
|
2018-06-22 03:05:34 +00:00
|
|
|
// Only process up to 'target' threads, unless 'target' is <= 0, in which case process
|
|
|
|
// them all.
|
2018-09-15 13:21:06 +00:00
|
|
|
std::size_t last = waiting_threads.size();
|
2019-03-05 17:22:13 +00:00
|
|
|
if (num_to_wake > 0) {
|
2019-03-13 23:04:40 +00:00
|
|
|
last = std::min(last, static_cast<std::size_t>(num_to_wake));
|
2019-03-05 17:22:13 +00:00
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
|
|
|
|
// Signal the waiting threads.
|
2018-09-15 13:21:06 +00:00
|
|
|
for (std::size_t i = 0; i < last; i++) {
|
2020-03-03 21:19:44 +00:00
|
|
|
if (waiting_threads[i]->GetStatus() != ThreadStatus::WaitArb) {
|
|
|
|
last++;
|
|
|
|
last = std::min(waiting_threads.size(), last);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
time_manager.CancelTimeEvent(waiting_threads[i].get());
|
|
|
|
|
2018-10-03 22:47:57 +00:00
|
|
|
ASSERT(waiting_threads[i]->GetStatus() == ThreadStatus::WaitArb);
|
2020-03-03 21:19:44 +00:00
|
|
|
waiting_threads[i]->SetSynchronizationResults(nullptr, RESULT_SUCCESS);
|
2019-12-11 15:55:38 +00:00
|
|
|
RemoveThread(waiting_threads[i]);
|
2020-03-03 21:19:44 +00:00
|
|
|
waiting_threads[i]->WaitForArbitration(false);
|
2018-10-03 22:47:57 +00:00
|
|
|
waiting_threads[i]->SetArbiterWaitAddress(0);
|
2018-06-22 03:05:34 +00:00
|
|
|
waiting_threads[i]->ResumeFromWait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 17:28:10 +00:00
|
|
|
AddressArbiter::AddressArbiter(Core::System& system) : system{system} {}
|
2019-03-05 16:54:06 +00:00
|
|
|
AddressArbiter::~AddressArbiter() = default;
|
|
|
|
|
2019-03-07 23:42:44 +00:00
|
|
|
ResultCode AddressArbiter::SignalToAddress(VAddr address, SignalType type, s32 value,
|
|
|
|
s32 num_to_wake) {
|
|
|
|
switch (type) {
|
|
|
|
case SignalType::Signal:
|
|
|
|
return SignalToAddressOnly(address, num_to_wake);
|
|
|
|
case SignalType::IncrementAndSignalIfEqual:
|
|
|
|
return IncrementAndSignalToAddressIfEqual(address, value, num_to_wake);
|
|
|
|
case SignalType::ModifyByWaitingCountAndSignalIfEqual:
|
|
|
|
return ModifyByWaitingCountAndSignalToAddressIfEqual(address, value, num_to_wake);
|
|
|
|
default:
|
|
|
|
return ERR_INVALID_ENUM_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ResultCode AddressArbiter::SignalToAddressOnly(VAddr address, s32 num_to_wake) {
|
2020-03-03 21:19:44 +00:00
|
|
|
SchedulerLock lock(system.Kernel());
|
2019-11-25 01:15:51 +00:00
|
|
|
const std::vector<std::shared_ptr<Thread>> waiting_threads =
|
|
|
|
GetThreadsWaitingOnAddress(address);
|
2018-06-22 03:05:34 +00:00
|
|
|
WakeThreads(waiting_threads, num_to_wake);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::IncrementAndSignalToAddressIfEqual(VAddr address, s32 value,
|
|
|
|
s32 num_to_wake) {
|
2020-03-03 21:19:44 +00:00
|
|
|
SchedulerLock lock(system.Kernel());
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can write to the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
const std::size_t current_core = system.CurrentCoreIndex();
|
|
|
|
auto& monitor = system.Monitor();
|
|
|
|
u32 current_value;
|
|
|
|
do {
|
|
|
|
monitor.SetExclusive(current_core, address);
|
|
|
|
current_value = memory.Read32(address);
|
|
|
|
|
|
|
|
if (current_value != value) {
|
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
|
|
|
current_value++;
|
|
|
|
} while (!monitor.ExclusiveWrite32(current_core, address, current_value));
|
2018-06-22 03:05:34 +00:00
|
|
|
|
2019-03-07 23:42:44 +00:00
|
|
|
return SignalToAddressOnly(address, num_to_wake);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::ModifyByWaitingCountAndSignalToAddressIfEqual(VAddr address, s32 value,
|
|
|
|
s32 num_to_wake) {
|
2020-03-03 21:19:44 +00:00
|
|
|
SchedulerLock lock(system.Kernel());
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
|
|
|
|
2018-06-22 03:05:34 +00:00
|
|
|
// Ensure that we can write to the address.
|
2019-11-26 21:29:34 +00:00
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
2018-06-22 03:05:34 +00:00
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get threads waiting on the address.
|
2019-11-25 01:15:51 +00:00
|
|
|
const std::vector<std::shared_ptr<Thread>> waiting_threads =
|
|
|
|
GetThreadsWaitingOnAddress(address);
|
2018-06-22 03:05:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
const std::size_t current_core = system.CurrentCoreIndex();
|
|
|
|
auto& monitor = system.Monitor();
|
2018-06-22 03:05:34 +00:00
|
|
|
s32 updated_value;
|
2020-03-03 21:19:44 +00:00
|
|
|
do {
|
|
|
|
monitor.SetExclusive(current_core, address);
|
|
|
|
updated_value = memory.Read32(address);
|
|
|
|
|
|
|
|
if (updated_value != value) {
|
|
|
|
return ERR_INVALID_STATE;
|
2019-10-07 23:09:57 +00:00
|
|
|
}
|
2020-03-03 21:19:44 +00:00
|
|
|
// Determine the modified value depending on the waiting count.
|
|
|
|
if (num_to_wake <= 0) {
|
|
|
|
if (waiting_threads.empty()) {
|
|
|
|
updated_value = value + 1;
|
|
|
|
} else {
|
|
|
|
updated_value = value - 1;
|
|
|
|
}
|
2019-10-07 23:09:57 +00:00
|
|
|
} else {
|
2020-03-03 21:19:44 +00:00
|
|
|
if (waiting_threads.empty()) {
|
|
|
|
updated_value = value + 1;
|
|
|
|
} else if (waiting_threads.size() <= static_cast<u32>(num_to_wake)) {
|
|
|
|
updated_value = value - 1;
|
|
|
|
} else {
|
|
|
|
updated_value = value;
|
|
|
|
}
|
2019-10-07 23:09:57 +00:00
|
|
|
}
|
2020-03-03 21:19:44 +00:00
|
|
|
} while (!monitor.ExclusiveWrite32(current_core, address, updated_value));
|
2018-06-22 03:05:34 +00:00
|
|
|
|
|
|
|
WakeThreads(waiting_threads, num_to_wake);
|
|
|
|
return RESULT_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2019-03-07 23:34:22 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddress(VAddr address, ArbitrationType type, s32 value,
|
|
|
|
s64 timeout_ns) {
|
|
|
|
switch (type) {
|
|
|
|
case ArbitrationType::WaitIfLessThan:
|
|
|
|
return WaitForAddressIfLessThan(address, value, timeout_ns, false);
|
|
|
|
case ArbitrationType::DecrementAndWaitIfLessThan:
|
|
|
|
return WaitForAddressIfLessThan(address, value, timeout_ns, true);
|
|
|
|
case ArbitrationType::WaitIfEqual:
|
|
|
|
return WaitForAddressIfEqual(address, value, timeout_ns);
|
|
|
|
default:
|
|
|
|
return ERR_INVALID_ENUM_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddressIfLessThan(VAddr address, s32 value, s64 timeout,
|
|
|
|
bool should_decrement) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
2020-03-03 21:19:44 +00:00
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
Thread* current_thread = system.CurrentScheduler().GetCurrentThread();
|
2019-11-26 21:29:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
Handle event_handle = InvalidHandle;
|
|
|
|
{
|
|
|
|
SchedulerLockAndSleep lock(kernel, event_handle, current_thread, timeout);
|
|
|
|
|
|
|
|
// Ensure that we can read the address.
|
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// TODO(Blinkhawk): Check termination pending.
|
|
|
|
|
|
|
|
s32 current_value = static_cast<s32>(memory.Read32(address));
|
|
|
|
if (current_value >= value) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
s32 decrement_value;
|
|
|
|
|
|
|
|
const std::size_t current_core = system.CurrentCoreIndex();
|
|
|
|
auto& monitor = system.Monitor();
|
|
|
|
do {
|
|
|
|
monitor.SetExclusive(current_core, address);
|
|
|
|
current_value = static_cast<s32>(memory.Read32(address));
|
|
|
|
if (should_decrement) {
|
|
|
|
decrement_value = current_value - 1;
|
|
|
|
} else {
|
|
|
|
decrement_value = current_value;
|
|
|
|
}
|
|
|
|
} while (
|
|
|
|
!monitor.ExclusiveWrite32(current_core, address, static_cast<u32>(decrement_value)));
|
|
|
|
|
|
|
|
// Short-circuit without rescheduling, if timeout is zero.
|
|
|
|
if (timeout == 0) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return RESULT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_thread->SetSynchronizationResults(nullptr, RESULT_TIMEOUT);
|
|
|
|
current_thread->SetArbiterWaitAddress(address);
|
|
|
|
InsertThread(SharedFrom(current_thread));
|
|
|
|
current_thread->SetStatus(ThreadStatus::WaitArb);
|
|
|
|
current_thread->WaitForArbitration(true);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
2019-03-05 17:22:13 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
if (event_handle != InvalidHandle) {
|
|
|
|
auto& time_manager = kernel.TimeManager();
|
|
|
|
time_manager.UnscheduleTimeEvent(event_handle);
|
2019-03-05 17:22:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
{
|
|
|
|
SchedulerLock lock(kernel);
|
|
|
|
if (current_thread->IsWaitingForArbitration()) {
|
|
|
|
RemoveThread(SharedFrom(current_thread));
|
|
|
|
current_thread->WaitForArbitration(false);
|
|
|
|
}
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
return current_thread->GetSignalingResult();
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2019-03-05 16:54:06 +00:00
|
|
|
ResultCode AddressArbiter::WaitForAddressIfEqual(VAddr address, s32 value, s64 timeout) {
|
2019-11-26 21:29:34 +00:00
|
|
|
auto& memory = system.Memory();
|
2020-03-03 21:19:44 +00:00
|
|
|
auto& kernel = system.Kernel();
|
|
|
|
Thread* current_thread = system.CurrentScheduler().GetCurrentThread();
|
2019-11-26 21:29:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
Handle event_handle = InvalidHandle;
|
|
|
|
{
|
|
|
|
SchedulerLockAndSleep lock(kernel, event_handle, current_thread, timeout);
|
|
|
|
|
|
|
|
// Ensure that we can read the address.
|
|
|
|
if (!memory.IsValidVirtualAddress(address)) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return ERR_INVALID_ADDRESS_STATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// TODO(Blinkhawk): Check termination pending.
|
2019-11-26 21:29:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
s32 current_value = static_cast<s32>(memory.Read32(address));
|
|
|
|
if (current_value != value) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return ERR_INVALID_STATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Short-circuit without rescheduling, if timeout is zero.
|
|
|
|
if (timeout == 0) {
|
|
|
|
lock.CancelSleep();
|
|
|
|
return RESULT_TIMEOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_thread->SetSynchronizationResults(nullptr, RESULT_TIMEOUT);
|
|
|
|
current_thread->SetArbiterWaitAddress(address);
|
|
|
|
InsertThread(SharedFrom(current_thread));
|
|
|
|
current_thread->SetStatus(ThreadStatus::WaitArb);
|
|
|
|
current_thread->WaitForArbitration(true);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
2019-11-26 21:29:34 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
if (event_handle != InvalidHandle) {
|
|
|
|
auto& time_manager = kernel.TimeManager();
|
|
|
|
time_manager.UnscheduleTimeEvent(event_handle);
|
2018-06-22 03:05:34 +00:00
|
|
|
}
|
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
{
|
|
|
|
SchedulerLock lock(kernel);
|
|
|
|
if (current_thread->IsWaitingForArbitration()) {
|
|
|
|
RemoveThread(SharedFrom(current_thread));
|
|
|
|
current_thread->WaitForArbitration(false);
|
|
|
|
}
|
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
return current_thread->GetSignalingResult();
|
2019-03-05 16:54:06 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 15:55:38 +00:00
|
|
|
void AddressArbiter::HandleWakeupThread(std::shared_ptr<Thread> thread) {
|
|
|
|
ASSERT(thread->GetStatus() == ThreadStatus::WaitArb);
|
|
|
|
RemoveThread(thread);
|
|
|
|
thread->SetArbiterWaitAddress(0);
|
|
|
|
}
|
2019-03-29 21:13:00 +00:00
|
|
|
|
2019-12-11 15:55:38 +00:00
|
|
|
void AddressArbiter::InsertThread(std::shared_ptr<Thread> thread) {
|
|
|
|
const VAddr arb_addr = thread->GetArbiterWaitAddress();
|
|
|
|
std::list<std::shared_ptr<Thread>>& thread_list = arb_threads[arb_addr];
|
2020-02-12 20:26:31 +00:00
|
|
|
|
|
|
|
const auto iter =
|
|
|
|
std::find_if(thread_list.cbegin(), thread_list.cend(), [&thread](const auto& entry) {
|
|
|
|
return entry->GetPriority() >= thread->GetPriority();
|
|
|
|
});
|
|
|
|
|
|
|
|
if (iter == thread_list.cend()) {
|
|
|
|
thread_list.push_back(std::move(thread));
|
|
|
|
} else {
|
|
|
|
thread_list.insert(iter, std::move(thread));
|
2019-03-29 21:13:00 +00:00
|
|
|
}
|
2019-12-11 15:55:38 +00:00
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
|
2019-12-11 15:55:38 +00:00
|
|
|
void AddressArbiter::RemoveThread(std::shared_ptr<Thread> thread) {
|
|
|
|
const VAddr arb_addr = thread->GetArbiterWaitAddress();
|
|
|
|
std::list<std::shared_ptr<Thread>>& thread_list = arb_threads[arb_addr];
|
2020-02-12 20:26:31 +00:00
|
|
|
|
|
|
|
const auto iter = std::find_if(thread_list.cbegin(), thread_list.cend(),
|
|
|
|
[&thread](const auto& entry) { return thread == entry; });
|
|
|
|
|
2020-03-03 21:19:44 +00:00
|
|
|
if (iter != thread_list.cend()) {
|
|
|
|
thread_list.erase(iter);
|
|
|
|
}
|
2019-12-11 15:55:38 +00:00
|
|
|
}
|
2019-03-05 16:54:06 +00:00
|
|
|
|
2020-02-12 20:07:15 +00:00
|
|
|
std::vector<std::shared_ptr<Thread>> AddressArbiter::GetThreadsWaitingOnAddress(
|
|
|
|
VAddr address) const {
|
|
|
|
const auto iter = arb_threads.find(address);
|
|
|
|
if (iter == arb_threads.cend()) {
|
|
|
|
return {};
|
2019-12-11 15:55:38 +00:00
|
|
|
}
|
2020-02-12 20:07:15 +00:00
|
|
|
|
|
|
|
const std::list<std::shared_ptr<Thread>>& thread_list = iter->second;
|
|
|
|
return {thread_list.cbegin(), thread_list.cend()};
|
2019-03-05 16:54:06 +00:00
|
|
|
}
|
|
|
|
} // namespace Kernel
|