2014-04-08 23:19:26 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-08 23:19:26 +00:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2015-12-29 23:03:08 +00:00
|
|
|
#include <memory>
|
2017-03-09 01:21:31 +00:00
|
|
|
#include <utility>
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "audio_core/audio_core.h"
|
2015-05-06 07:06:12 +00:00
|
|
|
#include "common/logging/log.h"
|
2017-10-10 03:56:20 +00:00
|
|
|
#include "core/arm/unicorn/arm_unicorn.h"
|
2016-09-21 06:52:38 +00:00
|
|
|
#include "core/core.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-09-26 23:17:47 +00:00
|
|
|
#include "core/hle/kernel/process.h"
|
2014-05-23 02:54:07 +00:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2016-12-16 05:37:38 +00:00
|
|
|
#include "core/hle/service/service.h"
|
2014-10-25 19:54:44 +00:00
|
|
|
#include "core/hw/hw.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "core/loader/loader.h"
|
2017-05-06 06:11:06 +00:00
|
|
|
#include "core/memory_setup.h"
|
2016-09-02 03:18:01 +00:00
|
|
|
#include "core/settings.h"
|
2017-08-19 17:14:33 +00:00
|
|
|
#include "network/network.h"
|
2016-12-16 00:01:48 +00:00
|
|
|
#include "video_core/video_core.h"
|
2015-09-02 12:56:38 +00:00
|
|
|
|
2013-09-05 22:33:46 +00:00
|
|
|
namespace Core {
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
/*static*/ System System::s_instance;
|
|
|
|
|
|
|
|
System::ResultStatus System::RunLoop(int tight_loop) {
|
2017-06-02 21:03:38 +00:00
|
|
|
status = ResultStatus::Success;
|
2016-12-22 05:00:01 +00:00
|
|
|
if (!cpu_core) {
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
|
|
|
}
|
2013-09-05 22:33:46 +00:00
|
|
|
|
2016-12-15 21:19:30 +00:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
2015-09-02 12:56:38 +00:00
|
|
|
GDBStub::HandlePacket();
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
// If the loop is halted and we want to step, use a tiny (1) number of instructions to
|
2016-09-19 01:01:46 +00:00
|
|
|
// execute. Otherwise, get out of the loop function.
|
2015-09-02 12:56:38 +00:00
|
|
|
if (GDBStub::GetCpuHaltFlag()) {
|
|
|
|
if (GDBStub::GetCpuStepFlag()) {
|
|
|
|
GDBStub::SetCpuStepFlag(false);
|
|
|
|
tight_loop = 1;
|
|
|
|
} else {
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::Success;
|
2015-09-02 12:56:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 19:09:10 +00:00
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
2015-01-07 15:10:58 +00:00
|
|
|
// instead advance to the next event and try to yield to the next thread
|
2015-05-11 19:09:10 +00:00
|
|
|
if (Kernel::GetCurrentThread() == nullptr) {
|
2017-10-23 04:13:12 +00:00
|
|
|
LOG_TRACE(Core_ARM, "Idling");
|
2015-01-07 15:10:58 +00:00
|
|
|
CoreTiming::Idle();
|
|
|
|
CoreTiming::Advance();
|
2016-12-16 05:37:38 +00:00
|
|
|
PrepareReschedule();
|
2015-01-07 15:10:58 +00:00
|
|
|
} else {
|
2016-12-22 05:00:01 +00:00
|
|
|
cpu_core->Run(tight_loop);
|
2015-01-07 15:10:58 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 03:24:32 +00:00
|
|
|
HW::Update();
|
2016-12-16 05:37:38 +00:00
|
|
|
Reschedule();
|
2013-09-27 02:01:09 +00:00
|
|
|
|
2017-06-02 21:03:38 +00:00
|
|
|
return status;
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
System::ResultStatus System::SingleStep() {
|
|
|
|
return RunLoop(1);
|
2013-09-27 02:01:09 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& filepath) {
|
|
|
|
app_loader = Loader::GetLoader(filepath);
|
|
|
|
|
|
|
|
if (!app_loader) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to obtain loader for %s!", filepath.c_str());
|
|
|
|
return ResultStatus::ErrorGetLoader;
|
|
|
|
}
|
2017-03-09 01:21:31 +00:00
|
|
|
std::pair<boost::optional<u32>, Loader::ResultStatus> system_mode =
|
|
|
|
app_loader->LoadKernelSystemMode();
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2017-03-09 01:21:31 +00:00
|
|
|
if (system_mode.second != Loader::ResultStatus::Success) {
|
2017-04-13 05:18:54 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to determine system mode (Error %i)!",
|
|
|
|
static_cast<int>(system_mode.second));
|
2017-03-08 21:28:30 +00:00
|
|
|
System::Shutdown();
|
|
|
|
|
2017-03-09 01:21:31 +00:00
|
|
|
switch (system_mode.second) {
|
2017-03-08 21:28:30 +00:00
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorSystemMode;
|
|
|
|
}
|
2016-12-16 00:01:48 +00:00
|
|
|
}
|
|
|
|
|
2017-03-09 01:21:31 +00:00
|
|
|
ResultStatus init_result{Init(emu_window, system_mode.first.get())};
|
2016-12-16 00:01:48 +00:00
|
|
|
if (init_result != ResultStatus::Success) {
|
|
|
|
LOG_CRITICAL(Core, "Failed to initialize system (Error %i)!", init_result);
|
|
|
|
System::Shutdown();
|
|
|
|
return init_result;
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:17:47 +00:00
|
|
|
const Loader::ResultStatus load_result{app_loader->Load(Kernel::g_current_process)};
|
2017-06-02 21:03:38 +00:00
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2016-12-16 00:01:48 +00:00
|
|
|
LOG_CRITICAL(Core, "Failed to load ROM (Error %i)!", load_result);
|
|
|
|
System::Shutdown();
|
|
|
|
|
|
|
|
switch (load_result) {
|
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorLoader;
|
|
|
|
}
|
|
|
|
}
|
2017-03-08 21:28:30 +00:00
|
|
|
status = ResultStatus::Success;
|
2017-06-02 21:03:38 +00:00
|
|
|
return status;
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
void System::PrepareReschedule() {
|
2016-12-22 05:00:01 +00:00
|
|
|
cpu_core->PrepareReschedule();
|
2016-12-16 05:37:38 +00:00
|
|
|
reschedule_pending = true;
|
|
|
|
}
|
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
PerfStats::Results System::GetAndResetPerfStats() {
|
2017-02-20 21:56:58 +00:00
|
|
|
return perf_stats.GetAndResetStats(CoreTiming::GetGlobalTimeUs());
|
2017-02-19 22:34:47 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 05:37:38 +00:00
|
|
|
void System::Reschedule() {
|
|
|
|
if (!reschedule_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reschedule_pending = false;
|
|
|
|
Kernel::Reschedule();
|
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
System::ResultStatus System::Init(EmuWindow* emu_window, u32 system_mode) {
|
2017-05-06 06:11:06 +00:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK");
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2018-01-04 05:13:23 +00:00
|
|
|
cpu_core = std::make_unique<ARM_Unicorn>();
|
2017-05-02 04:09:15 +00:00
|
|
|
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
CoreTiming::Init();
|
|
|
|
HW::Init();
|
|
|
|
Kernel::Init(system_mode);
|
2016-12-16 05:37:38 +00:00
|
|
|
Service::Init();
|
2016-12-16 00:01:48 +00:00
|
|
|
AudioCore::Init();
|
|
|
|
GDBStub::Init();
|
|
|
|
|
|
|
|
if (!VideoCore::Init(emu_window)) {
|
2017-03-09 01:21:31 +00:00
|
|
|
return ResultStatus::ErrorVideoCore;
|
2016-09-02 03:18:01 +00:00
|
|
|
}
|
2014-10-25 19:54:44 +00:00
|
|
|
|
2015-02-12 20:11:39 +00:00
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
2016-12-16 00:01:48 +00:00
|
|
|
|
2017-02-19 22:34:47 +00:00
|
|
|
// Reset counters and set time origin to current frame
|
|
|
|
GetAndResetPerfStats();
|
2017-02-20 21:56:58 +00:00
|
|
|
perf_stats.BeginSystemFrame();
|
2017-02-19 22:34:47 +00:00
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
return ResultStatus::Success;
|
2014-04-01 02:26:50 +00:00
|
|
|
}
|
|
|
|
|
2016-12-16 00:01:48 +00:00
|
|
|
void System::Shutdown() {
|
2017-07-13 02:19:34 +00:00
|
|
|
// Log last frame performance stats
|
|
|
|
auto perf_results = GetAndResetPerfStats();
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_EmulationSpeed",
|
|
|
|
perf_results.emulation_speed * 100.0);
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_Framerate",
|
|
|
|
perf_results.game_fps);
|
|
|
|
Telemetry().AddField(Telemetry::FieldType::Performance, "Shutdown_Frametime",
|
|
|
|
perf_results.frametime * 1000.0);
|
|
|
|
|
|
|
|
// Shutdown emulation session
|
2016-12-16 00:01:48 +00:00
|
|
|
GDBStub::Shutdown();
|
|
|
|
AudioCore::Shutdown();
|
|
|
|
VideoCore::Shutdown();
|
2016-12-16 05:37:38 +00:00
|
|
|
Service::Shutdown();
|
2016-12-16 00:01:48 +00:00
|
|
|
Kernel::Shutdown();
|
|
|
|
HW::Shutdown();
|
|
|
|
CoreTiming::Shutdown();
|
2017-02-11 11:29:46 +00:00
|
|
|
cpu_core = nullptr;
|
|
|
|
app_loader = nullptr;
|
2017-05-02 04:09:15 +00:00
|
|
|
telemetry_session = nullptr;
|
2017-08-19 17:14:33 +00:00
|
|
|
if (auto room_member = Network::GetRoomMember().lock()) {
|
|
|
|
Network::GameInfo game_info{};
|
|
|
|
room_member->SendGameInfo(game_info);
|
|
|
|
}
|
2014-04-05 19:26:03 +00:00
|
|
|
|
2015-02-12 20:11:39 +00:00
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2013-09-05 22:33:46 +00:00
|
|
|
}
|
|
|
|
|
2017-09-26 23:17:47 +00:00
|
|
|
} // namespace Core
|