2014-04-11 02:30:00 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-04-11 02:30:00 +01:00
|
|
|
|
2015-05-06 04:04:25 +01:00
|
|
|
#include "common/assert.h"
|
|
|
|
#include "common/logging/log.h"
|
2014-12-22 06:30:09 +00:00
|
|
|
#include "core/arm/arm_interface.h"
|
2015-05-06 04:04:25 +01:00
|
|
|
#include "core/core.h"
|
2016-09-21 07:52:38 +01:00
|
|
|
#include "core/hle/hle.h"
|
2014-04-13 02:55:36 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2014-04-11 02:30:00 +01:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2016-03-21 06:48:40 +00:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
bool reschedule; ///< If true, immediately reschedules the CPU to a new thread
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace HLE {
|
2014-06-05 05:26:48 +01:00
|
|
|
|
2016-09-18 01:38:01 +01:00
|
|
|
void Reschedule(const char* reason) {
|
|
|
|
DEBUG_ASSERT_MSG(reason != nullptr && strlen(reason) < 256,
|
|
|
|
"Reschedule: Invalid or too long reason.");
|
2014-12-24 03:45:52 +00:00
|
|
|
|
|
|
|
// TODO(bunnei): It seems that games depend on some CPU execution time elapsing during HLE
|
|
|
|
// routines. This simulates that time by artificially advancing the number of CPU "ticks".
|
|
|
|
// The value was chosen empirically, it seems to work well enough for everything tested, but
|
|
|
|
// is likely not ideal. We should find a more accurate way to simulate timing with HLE.
|
|
|
|
Core::g_app_core->AddTicks(4000);
|
|
|
|
|
2014-06-02 02:42:50 +01:00
|
|
|
Core::g_app_core->PrepareReschedule();
|
2014-12-24 03:45:52 +00:00
|
|
|
|
2016-03-21 06:48:40 +00:00
|
|
|
reschedule = true;
|
|
|
|
}
|
|
|
|
|
2016-05-06 02:34:10 +01:00
|
|
|
bool IsReschedulePending() {
|
2016-03-21 06:48:40 +00:00
|
|
|
return reschedule;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoneRescheduling() {
|
|
|
|
reschedule = false;
|
2014-05-15 01:49:02 +01:00
|
|
|
}
|
|
|
|
|
2014-04-11 02:30:00 +01:00
|
|
|
void Init() {
|
2015-04-28 03:45:43 +01:00
|
|
|
Service::Init();
|
2015-01-02 05:41:34 +00:00
|
|
|
|
2016-03-21 06:48:40 +00:00
|
|
|
reschedule = false;
|
2015-04-28 03:45:43 +01:00
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Kernel, "initialized OK");
|
2014-04-11 02:30:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2014-04-13 04:31:39 +01:00
|
|
|
Service::Shutdown();
|
|
|
|
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Kernel, "shutdown OK");
|
2014-04-11 02:30:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|