2014-04-09 01:19:26 +02:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 06:38:14 +01:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-09 01:19:26 +02:00
|
|
|
// Refer to the license.txt file included.
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2015-12-30 00:03:08 +01:00
|
|
|
#include <memory>
|
2017-03-09 02:21:31 +01:00
|
|
|
#include <utility>
|
2017-12-20 19:44:32 +01:00
|
|
|
#include "audio_core/dsp_interface.h"
|
|
|
|
#include "audio_core/hle/hle.h"
|
2015-05-06 09:06:12 +02:00
|
|
|
#include "common/logging/log.h"
|
2014-12-22 07:30:09 +01:00
|
|
|
#include "core/arm/arm_interface.h"
|
2018-01-08 17:58:24 +01:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/arm/dynarmic/arm_dynarmic.h"
|
2018-01-08 17:58:24 +01:00
|
|
|
#endif
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/arm/dyncom/arm_dyncom.h"
|
2016-09-21 08:52:38 +02:00
|
|
|
#include "core/core.h"
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/core_timing.h"
|
|
|
|
#include "core/gdbstub/gdbstub.h"
|
2018-04-13 05:06:21 +02:00
|
|
|
#include "core/hle/kernel/client_port.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
2017-09-27 01:17:47 +02:00
|
|
|
#include "core/hle/kernel/process.h"
|
2014-05-23 04:54:07 +02:00
|
|
|
#include "core/hle/kernel/thread.h"
|
2018-09-29 18:39:31 +02:00
|
|
|
#include "core/hle/service/fs/archive.h"
|
2016-12-16 06:37:38 +01:00
|
|
|
#include "core/hle/service/service.h"
|
2018-04-13 05:06:21 +02:00
|
|
|
#include "core/hle/service/sm/sm.h"
|
2014-10-25 21:54:44 +02:00
|
|
|
#include "core/hw/hw.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "core/loader/loader.h"
|
2017-05-06 08:11:06 +02:00
|
|
|
#include "core/memory_setup.h"
|
2017-12-17 04:43:09 +01:00
|
|
|
#include "core/movie.h"
|
2018-09-24 00:16:57 +02:00
|
|
|
#ifdef ENABLE_SCRIPTING
|
2018-09-11 22:00:12 +02:00
|
|
|
#include "core/rpc/rpc_server.h"
|
2018-09-24 00:16:57 +02:00
|
|
|
#endif
|
2016-09-02 05:18:01 +02:00
|
|
|
#include "core/settings.h"
|
2017-08-19 19:14:33 +02:00
|
|
|
#include "network/network.h"
|
2016-12-16 01:01:48 +01:00
|
|
|
#include "video_core/video_core.h"
|
2015-09-02 14:56:38 +02:00
|
|
|
|
2013-09-06 00:33:46 +02:00
|
|
|
namespace Core {
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
/*static*/ System System::s_instance;
|
|
|
|
|
2017-12-03 03:57:08 +01:00
|
|
|
System::ResultStatus System::RunLoop(bool tight_loop) {
|
2017-06-02 23:03:38 +02:00
|
|
|
status = ResultStatus::Success;
|
2016-12-22 06:00:01 +01:00
|
|
|
if (!cpu_core) {
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::ErrorNotInitialized;
|
|
|
|
}
|
2013-09-06 00:33:46 +02:00
|
|
|
|
2016-12-15 22:19:30 +01:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
2015-09-02 14:56:38 +02:00
|
|
|
GDBStub::HandlePacket();
|
|
|
|
|
2016-09-18 02:38:01 +02:00
|
|
|
// If the loop is halted and we want to step, use a tiny (1) number of instructions to
|
2016-09-19 03:01:46 +02:00
|
|
|
// execute. Otherwise, get out of the loop function.
|
2015-09-02 14:56:38 +02:00
|
|
|
if (GDBStub::GetCpuHaltFlag()) {
|
|
|
|
if (GDBStub::GetCpuStepFlag()) {
|
2018-08-16 11:40:52 +02:00
|
|
|
tight_loop = false;
|
2015-09-02 14:56:38 +02:00
|
|
|
} else {
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::Success;
|
2015-09-02 14:56:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 21:09:10 +02:00
|
|
|
// If we don't have a currently active thread then don't execute instructions,
|
2015-01-07 16:10:58 +01:00
|
|
|
// instead advance to the next event and try to yield to the next thread
|
2015-05-11 21:09:10 +02:00
|
|
|
if (Kernel::GetCurrentThread() == nullptr) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_TRACE(Core_ARM11, "Idling");
|
2015-01-07 16:10:58 +01:00
|
|
|
CoreTiming::Idle();
|
|
|
|
CoreTiming::Advance();
|
2016-12-16 06:37:38 +01:00
|
|
|
PrepareReschedule();
|
2015-01-07 16:10:58 +01:00
|
|
|
} else {
|
2017-11-25 14:56:57 +01:00
|
|
|
CoreTiming::Advance();
|
2017-12-03 03:57:08 +01:00
|
|
|
if (tight_loop) {
|
|
|
|
cpu_core->Run();
|
|
|
|
} else {
|
|
|
|
cpu_core->Step();
|
|
|
|
}
|
2015-01-07 16:10:58 +01:00
|
|
|
}
|
|
|
|
|
2018-08-16 11:40:52 +02:00
|
|
|
if (GDBStub::IsServerEnabled()) {
|
|
|
|
GDBStub::SetCpuStepFlag(false);
|
|
|
|
}
|
|
|
|
|
2014-08-30 05:24:32 +02:00
|
|
|
HW::Update();
|
2016-12-16 06:37:38 +01:00
|
|
|
Reschedule();
|
2013-09-27 04:01:09 +02:00
|
|
|
|
2018-07-18 14:07:00 +02:00
|
|
|
if (reset_requested.exchange(false)) {
|
|
|
|
Reset();
|
|
|
|
} else if (shutdown_requested.exchange(false)) {
|
|
|
|
return ResultStatus::ShutdownRequested;
|
|
|
|
}
|
|
|
|
|
2017-06-02 23:03:38 +02:00
|
|
|
return status;
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
System::ResultStatus System::SingleStep() {
|
2017-12-03 03:57:08 +01:00
|
|
|
return RunLoop(false);
|
2013-09-27 04:01:09 +02:00
|
|
|
}
|
|
|
|
|
2018-08-24 15:18:46 +02:00
|
|
|
System::ResultStatus System::Load(EmuWindow& emu_window, const std::string& filepath) {
|
2016-12-16 01:01:48 +01:00
|
|
|
app_loader = Loader::GetLoader(filepath);
|
|
|
|
|
|
|
|
if (!app_loader) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to obtain loader for {}!", filepath);
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::ErrorGetLoader;
|
|
|
|
}
|
2018-10-05 12:37:55 +02:00
|
|
|
std::pair<std::optional<u32>, Loader::ResultStatus> system_mode =
|
2017-03-09 02:21:31 +01:00
|
|
|
app_loader->LoadKernelSystemMode();
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2017-03-09 02:21:31 +01:00
|
|
|
if (system_mode.second != Loader::ResultStatus::Success) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to determine system mode (Error {})!",
|
2018-06-29 15:56:12 +02:00
|
|
|
static_cast<int>(system_mode.second));
|
2017-03-08 22:28:30 +01:00
|
|
|
|
2017-03-09 02:21:31 +01:00
|
|
|
switch (system_mode.second) {
|
2017-03-08 22:28:30 +01:00
|
|
|
case Loader::ResultStatus::ErrorEncrypted:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorEncrypted;
|
|
|
|
case Loader::ResultStatus::ErrorInvalidFormat:
|
|
|
|
return ResultStatus::ErrorLoader_ErrorInvalidFormat;
|
|
|
|
default:
|
|
|
|
return ResultStatus::ErrorSystemMode;
|
|
|
|
}
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2018-10-05 16:51:33 +02:00
|
|
|
ASSERT(system_mode.first);
|
2018-10-05 12:37:55 +02:00
|
|
|
ResultStatus init_result{Init(emu_window, *system_mode.first)};
|
2016-12-16 01:01:48 +01:00
|
|
|
if (init_result != ResultStatus::Success) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to initialize system (Error {})!",
|
2018-06-29 15:56:12 +02:00
|
|
|
static_cast<u32>(init_result));
|
2016-12-16 01:01:48 +01:00
|
|
|
System::Shutdown();
|
|
|
|
return init_result;
|
|
|
|
}
|
|
|
|
|
2017-09-27 01:17:47 +02:00
|
|
|
const Loader::ResultStatus load_result{app_loader->Load(Kernel::g_current_process)};
|
2017-06-02 23:03:38 +02:00
|
|
|
if (Loader::ResultStatus::Success != load_result) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_CRITICAL(Core, "Failed to load ROM (Error {})!", static_cast<u32>(load_result));
|
2016-12-16 01:01:48 +01:00
|
|
|
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-09-27 01:17:47 +02:00
|
|
|
Memory::SetCurrentPageTable(&Kernel::g_current_process->vm_manager.page_table);
|
2017-03-08 22:28:30 +01:00
|
|
|
status = ResultStatus::Success;
|
2018-07-18 14:07:00 +02:00
|
|
|
m_emu_window = &emu_window;
|
|
|
|
m_filepath = filepath;
|
2017-06-02 23:03:38 +02:00
|
|
|
return status;
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
void System::PrepareReschedule() {
|
2016-12-22 06:00:01 +01:00
|
|
|
cpu_core->PrepareReschedule();
|
2016-12-16 06:37:38 +01:00
|
|
|
reschedule_pending = true;
|
|
|
|
}
|
|
|
|
|
2017-02-19 23:34:47 +01:00
|
|
|
PerfStats::Results System::GetAndResetPerfStats() {
|
2017-02-20 22:56:58 +01:00
|
|
|
return perf_stats.GetAndResetStats(CoreTiming::GetGlobalTimeUs());
|
2017-02-19 23:34:47 +01:00
|
|
|
}
|
|
|
|
|
2016-12-16 06:37:38 +01:00
|
|
|
void System::Reschedule() {
|
|
|
|
if (!reschedule_pending) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
reschedule_pending = false;
|
|
|
|
Kernel::Reschedule();
|
|
|
|
}
|
|
|
|
|
2018-08-24 15:18:46 +02:00
|
|
|
System::ResultStatus System::Init(EmuWindow& emu_window, u32 system_mode) {
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(HW_Memory, "initialized OK");
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2017-12-20 19:44:32 +01:00
|
|
|
CoreTiming::Init();
|
|
|
|
|
2016-09-02 05:18:01 +02:00
|
|
|
if (Settings::values.use_cpu_jit) {
|
2018-01-08 17:58:24 +01:00
|
|
|
#ifdef ARCHITECTURE_x86_64
|
2016-12-22 06:00:01 +01:00
|
|
|
cpu_core = std::make_unique<ARM_Dynarmic>(USER32MODE);
|
2018-01-08 17:58:24 +01:00
|
|
|
#else
|
|
|
|
cpu_core = std::make_unique<ARM_DynCom>(USER32MODE);
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_WARNING(Core, "CPU JIT requested, but Dynarmic not available");
|
2018-01-08 17:58:24 +01:00
|
|
|
#endif
|
2016-09-02 05:18:01 +02:00
|
|
|
} else {
|
2016-12-22 06:00:01 +01:00
|
|
|
cpu_core = std::make_unique<ARM_DynCom>(USER32MODE);
|
2016-12-16 01:01:48 +01:00
|
|
|
}
|
|
|
|
|
2017-12-20 19:44:32 +01:00
|
|
|
dsp_core = std::make_unique<AudioCore::DspHle>();
|
2018-07-02 15:03:14 +02:00
|
|
|
dsp_core->SetSink(Settings::values.sink_id, Settings::values.audio_device_id);
|
2017-12-20 19:44:32 +01:00
|
|
|
dsp_core->EnableStretching(Settings::values.enable_audio_stretching);
|
|
|
|
|
2017-05-02 06:09:15 +02:00
|
|
|
telemetry_session = std::make_unique<Core::TelemetrySession>();
|
2018-09-24 00:16:57 +02:00
|
|
|
|
|
|
|
#ifdef ENABLE_SCRIPTING
|
2018-09-11 22:00:12 +02:00
|
|
|
rpc_server = std::make_unique<RPC::RPCServer>();
|
2018-09-24 00:16:57 +02:00
|
|
|
#endif
|
|
|
|
|
2018-10-13 01:00:16 +02:00
|
|
|
service_manager = std::make_shared<Service::SM::ServiceManager>(*this);
|
2018-08-26 19:47:45 +02:00
|
|
|
shared_page_handler = std::make_shared<SharedPage::Handler>();
|
2018-10-13 22:11:20 +02:00
|
|
|
archive_manager = std::make_unique<Service::FS::ArchiveManager>(*this);
|
2017-05-02 06:09:15 +02:00
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
HW::Init();
|
2018-10-11 20:49:52 +02:00
|
|
|
kernel = std::make_unique<Kernel::KernelSystem>(system_mode);
|
2018-10-12 22:11:51 +02:00
|
|
|
Service::Init(*this);
|
2016-12-16 01:01:48 +01:00
|
|
|
GDBStub::Init();
|
|
|
|
|
2018-07-20 17:20:57 +02:00
|
|
|
ResultStatus result = VideoCore::Init(emu_window);
|
|
|
|
if (result != ResultStatus::Success) {
|
|
|
|
return result;
|
2016-09-02 05:18:01 +02:00
|
|
|
}
|
2014-10-25 21:54:44 +02:00
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Core, "Initialized OK");
|
2016-12-16 01:01:48 +01:00
|
|
|
|
2017-02-19 23:34:47 +01:00
|
|
|
// Reset counters and set time origin to current frame
|
|
|
|
GetAndResetPerfStats();
|
2017-02-20 22:56:58 +01:00
|
|
|
perf_stats.BeginSystemFrame();
|
2017-02-19 23:34:47 +01:00
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
return ResultStatus::Success;
|
2014-04-01 04:26:50 +02:00
|
|
|
}
|
|
|
|
|
2018-04-13 05:06:21 +02:00
|
|
|
Service::SM::ServiceManager& System::ServiceManager() {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::SM::ServiceManager& System::ServiceManager() const {
|
|
|
|
return *service_manager;
|
|
|
|
}
|
|
|
|
|
2018-09-29 18:39:31 +02:00
|
|
|
Service::FS::ArchiveManager& System::ArchiveManager() {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Service::FS::ArchiveManager& System::ArchiveManager() const {
|
|
|
|
return *archive_manager;
|
|
|
|
}
|
|
|
|
|
2018-10-11 20:49:52 +02:00
|
|
|
Kernel::KernelSystem& System::Kernel() {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
|
|
|
const Kernel::KernelSystem& System::Kernel() const {
|
|
|
|
return *kernel;
|
|
|
|
}
|
|
|
|
|
2018-06-20 14:01:50 +02:00
|
|
|
void System::RegisterSoftwareKeyboard(std::shared_ptr<Frontend::SoftwareKeyboard> swkbd) {
|
|
|
|
registered_swkbd = std::move(swkbd);
|
|
|
|
}
|
|
|
|
|
2016-12-16 01:01:48 +01:00
|
|
|
void System::Shutdown() {
|
2017-07-13 04:19:34 +02: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 01:01:48 +01:00
|
|
|
GDBStub::Shutdown();
|
|
|
|
VideoCore::Shutdown();
|
2016-12-16 06:37:38 +01:00
|
|
|
Service::Shutdown();
|
2018-10-11 20:49:52 +02:00
|
|
|
kernel.reset();
|
2016-12-16 01:01:48 +01:00
|
|
|
HW::Shutdown();
|
2018-04-13 05:06:21 +02:00
|
|
|
telemetry_session.reset();
|
2018-09-24 00:16:57 +02:00
|
|
|
#ifdef ENABLE_SCRIPTING
|
2018-09-11 22:00:12 +02:00
|
|
|
rpc_server.reset();
|
2018-09-24 00:16:57 +02:00
|
|
|
#endif
|
2018-04-13 05:06:21 +02:00
|
|
|
service_manager.reset();
|
|
|
|
dsp_core.reset();
|
|
|
|
cpu_core.reset();
|
2017-12-20 19:44:32 +01:00
|
|
|
CoreTiming::Shutdown();
|
2018-04-13 05:06:21 +02:00
|
|
|
app_loader.reset();
|
2017-12-20 19:44:32 +01:00
|
|
|
|
2017-08-19 19:14:33 +02:00
|
|
|
if (auto room_member = Network::GetRoomMember().lock()) {
|
|
|
|
Network::GameInfo game_info{};
|
|
|
|
room_member->SendGameInfo(game_info);
|
|
|
|
}
|
2014-04-05 21:26:03 +02:00
|
|
|
|
2018-06-29 13:18:07 +02:00
|
|
|
LOG_DEBUG(Core, "Shutdown OK");
|
2013-09-06 00:33:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-18 14:07:00 +02:00
|
|
|
void System::Reset() {
|
|
|
|
// This is NOT a proper reset, but a temporary workaround by shutting down the system and
|
|
|
|
// reloading.
|
|
|
|
// TODO: Properly implement the reset
|
|
|
|
|
|
|
|
Shutdown();
|
|
|
|
// Reload the system with the same setting
|
|
|
|
Load(*m_emu_window, m_filepath);
|
|
|
|
}
|
|
|
|
|
2017-09-27 01:17:47 +02:00
|
|
|
} // namespace Core
|