2014-04-09 04:49:26 +05:30
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 11:08:14 +05:30
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 04:49:26 +05:30
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2015-12-30 04:33:08 +05:30
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "common/make_unique.h"
|
2015-05-06 12:36:12 +05:30
|
|
|
#include "common/logging/log.h"
|
2014-08-30 08:54:32 +05:30
|
|
|
|
2014-05-17 21:29:18 +05:30
|
|
|
#include "core/core.h"
|
2015-01-07 20:40:58 +05:30
|
|
|
#include "core/core_timing.h"
|
2014-10-26 01:24:44 +05:30
|
|
|
|
2014-12-22 12:00:09 +05:30
|
|
|
#include "core/arm/arm_interface.h"
|
2014-10-26 01:24:44 +05:30
|
|
|
#include "core/arm/dyncom/arm_dyncom.h"
|
2014-06-05 09:56:48 +05:30
|
|
|
#include "core/hle/hle.h"
|
2014-05-23 08:24:07 +05:30
|
|
|
#include "core/hle/kernel/thread.h"
|
2014-10-26 01:24:44 +05:30
|
|
|
#include "core/hw/hw.h"
|
2014-05-23 08:24:07 +05:30
|
|
|
|
2015-09-02 18:26:38 +05:30
|
|
|
#include "core/gdbstub/gdbstub.h"
|
|
|
|
|
2013-09-06 04:03:46 +05:30
|
|
|
namespace Core {
|
|
|
|
|
2015-12-30 04:33:08 +05:30
|
|
|
std::unique_ptr<ARM_Interface> g_app_core; ///< ARM11 application core
|
|
|
|
std::unique_ptr<ARM_Interface> g_sys_core; ///< ARM11 system (OS) core
|
2013-09-06 04:03:46 +05:30
|
|
|
|
2013-09-27 07:31:09 +05:30
|
|
|
/// Run the core CPU loop
|
2014-08-30 08:54:32 +05:30
|
|
|
void RunLoop(int tight_loop) {
|
2015-09-02 18:26:38 +05:30
|
|
|
if (GDBStub::g_server_enabled) {
|
|
|
|
GDBStub::HandlePacket();
|
|
|
|
|
|
|
|
// If the loop is halted and we want to step, use a tiny (1) number of instructions to execute.
|
|
|
|
// Otherwise get out of the loop function.
|
|
|
|
if (GDBStub::GetCpuHaltFlag()) {
|
|
|
|
if (GDBStub::GetCpuStepFlag()) {
|
|
|
|
GDBStub::SetCpuStepFlag(false);
|
|
|
|
tight_loop = 1;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-12 00:39:10 +05:30
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
2015-01-07 20:40:58 +05:30
|
|
|
// instead advance to the next event and try to yield to the next thread
|
2015-05-12 00:39:10 +05:30
|
|
|
if (Kernel::GetCurrentThread() == nullptr) {
|
2015-01-07 20:40:58 +05:30
|
|
|
LOG_TRACE(Core_ARM11, "Idling");
|
|
|
|
CoreTiming::Idle();
|
|
|
|
CoreTiming::Advance();
|
|
|
|
HLE::Reschedule(__func__);
|
|
|
|
} else {
|
|
|
|
g_app_core->Run(tight_loop);
|
|
|
|
}
|
|
|
|
|
2014-08-30 08:54:32 +05:30
|
|
|
HW::Update();
|
2016-03-21 12:18:40 +05:30
|
|
|
if (HLE::RescheduleIsPending()) {
|
2014-08-30 08:54:32 +05:30
|
|
|
Kernel::Reschedule();
|
2014-05-17 21:29:18 +05:30
|
|
|
}
|
2013-09-27 07:31:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Step the CPU one instruction
|
|
|
|
void SingleStep() {
|
2014-08-30 08:54:32 +05:30
|
|
|
RunLoop(1);
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
2013-09-27 07:31:09 +05:30
|
|
|
/// Halt the core
|
2013-10-02 04:37:33 +05:30
|
|
|
void Halt(const char *msg) {
|
2014-04-01 07:56:50 +05:30
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-27 07:31:09 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Kill the core
|
2013-09-06 04:03:46 +05:30
|
|
|
void Stop() {
|
2014-04-01 07:56:50 +05:30
|
|
|
// TODO(ShizZy): ImplementMe
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize the core
|
2016-01-08 01:03:54 +05:30
|
|
|
void Init() {
|
2015-12-30 04:33:08 +05:30
|
|
|
g_sys_core = Common::make_unique<ARM_DynCom>(USER32MODE);
|
|
|
|
g_app_core = Common::make_unique<ARM_DynCom>(USER32MODE);
|
2014-10-26 01:24:44 +05:30
|
|
|
|
2015-02-13 01:41:39 +05:30
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
2014-04-01 07:56:50 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void Shutdown() {
|
2015-12-30 04:33:08 +05:30
|
|
|
g_app_core.reset();
|
|
|
|
g_sys_core.reset();
|
2014-04-06 00:56:03 +05:30
|
|
|
|
2015-02-13 01:41:39 +05:30
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2013-09-06 04:03:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|