From 68644fe6d54390bed9e8731dc5e6f4831f2fb803 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:03:27 +0100 Subject: [PATCH 1/8] PXI: Switch from boost::filesystem to std::filesystem --- source/processes/pxi_fs.hpp | 8 ++++---- source/processes/pxi_fs_host_file.cpp | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/processes/pxi_fs.hpp b/source/processes/pxi_fs.hpp index b1be44a..93c72de 100644 --- a/source/processes/pxi_fs.hpp +++ b/source/processes/pxi_fs.hpp @@ -4,8 +4,8 @@ #include -#include -#include +#include +#include #include namespace HLE { @@ -133,8 +133,8 @@ public: }; private: - const boost::filesystem::path path; - boost::filesystem::fstream stream; + const std::filesystem::path path; + std::fstream stream; Policy policy; diff --git a/source/processes/pxi_fs_host_file.cpp b/source/processes/pxi_fs_host_file.cpp index 04e5a2e..ffa6ae6 100644 --- a/source/processes/pxi_fs_host_file.cpp +++ b/source/processes/pxi_fs_host_file.cpp @@ -3,9 +3,9 @@ #include "pxi_fs_file_buffer_emu.hpp" -#include +#include -#include +#include #include @@ -25,7 +25,7 @@ HostFile::HostFile(std::string_view path, Policy policy) : path(std::begin(path) ResultAnd<> HostFile::Open(FileContext& context, OpenFlags flags) { context.logger.info("Attempting to open {} (create={})", path, flags.create); - if (!flags.create && !boost::filesystem::exists(path)) { + if (!flags.create && !std::filesystem::exists(path)) { return std::make_tuple(-1); } @@ -58,7 +58,7 @@ void HostFile::Close(/*FakeThread& thread*/) { ResultAnd HostFile::GetSize(FileContext& context) { context.logger.info("Attempting to get size of file {}", path); - uint64_t size = boost::filesystem::file_size(path); + uint64_t size = std::filesystem::file_size(path); return std::make_tuple(OS::RESULT_OK, size); } @@ -68,7 +68,7 @@ ResultAnd<> HostFile::SetSize(FakeThread& thread, uint64_t size) { // TODO: Does this zero-fill the file as expected? // TODO: Expected by whom? If these are not the 3DS semantics, we still would want to have deterministic buffer contents here! - boost::filesystem::resize_file(path, size); + std::filesystem::resize_file(path, size); return std::make_tuple(OS::RESULT_OK); } From 3f181d63b9c305683988ddd6052ecbe98a1b25f3 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:04:32 +0100 Subject: [PATCH 2/8] Framework: Make fmt::formatter::format const fmt 11 requires it. --- source/framework/image_format.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/framework/image_format.hpp b/source/framework/image_format.hpp index 5d944ab..c093ea2 100644 --- a/source/framework/image_format.hpp +++ b/source/framework/image_format.hpp @@ -36,7 +36,7 @@ enum class GenericImageFormat { template<> struct fmt::formatter : fmt::formatter { template - auto format(GenericImageFormat format, FormatContext& ctx) -> decltype(ctx.out()) { + auto format(GenericImageFormat format, FormatContext& ctx) const -> decltype(ctx.out()) { std::string_view name = std::invoke([format]() -> std::string_view { switch (format) { case GenericImageFormat::RGBA8: return "RGBA8"; From f27ab7817741bcc4c3ffb41d9ccba83aa6b9002c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:06:14 +0100 Subject: [PATCH 3/8] Use .Value() everywhere needed in format arguments fmt 11 requires it. --- source/os.cpp | 10 +++++----- source/processes/dsp.cpp | 2 +- source/processes/fs.cpp | 4 ++-- source/video_core/src/video_core/shader_microcode.cpp | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/source/os.cpp b/source/os.cpp index 9460e90..18ccd86 100644 --- a/source/os.cpp +++ b/source/os.cpp @@ -1406,7 +1406,7 @@ void MemoryManager::TransferOwnership( std::shared_ptr old_ow const uint32_t chunk_addr = block_it->first; const uint32_t chunk_size = block_it->second.size_bytes; - fmt::print("Chunk: {:#x}-{:#x} (owner {})\n", chunk_addr, chunk_addr + chunk_size, fmt::ptr(block_it->second.owner.lock())); + fmt::print("Chunk: {:#x}-{:#x} (owner {})\n", chunk_addr, chunk_addr + chunk_size, fmt::ptr(block_it->second.owner.lock().get())); ValidateContract(!block_it->second.owner.expired()); @@ -3494,7 +3494,7 @@ void OS::TranslateIPCMessage(Thread& source, Thread& dest, bool is_reply) { } source.GetLogger()->info("{}Copying {}/{} bytes of static buffer data from {:#010x} to {:#010x} in thread {}:", - ThreadPrinter{source}, descriptor.static_buffer.size, dest_buffer_size, source_data_addr, + ThreadPrinter{source}, descriptor.static_buffer.size.Value(), dest_buffer_size, source_data_addr, dest_buffer_addr, ThreadPrinter{dest}); std::string data; auto max_size = std::min(64, descriptor.static_buffer.size); @@ -3544,7 +3544,7 @@ void OS::TranslateIPCMessage(Thread& source, Thread& dest, bool is_reply) { uint32_t static_buffer_offset = 0; source.GetLogger()->info("{}Setting up PXI buffer table {:#x} at address {:#x} in target process", - ThreadPrinter{source}, descriptor.pxi_buffer.id, dest_buffer_addr); + ThreadPrinter{source}, descriptor.pxi_buffer.id.Value(), dest_buffer_addr); auto base_physical_chunk = ResolveVirtualAddrWithSize(source.GetParentProcess(), buffer_address); if (!base_physical_chunk) { @@ -3581,7 +3581,7 @@ void OS::TranslateIPCMessage(Thread& source, Thread& dest, bool is_reply) { dest.WriteMemory32(dest_buffer_addr + static_buffer_offset + 4, buffer_size); source.GetLogger()->info("Added PXI physical memory chunk {:#x} of size {:#x} in static buffer {} at {:#x}", - base_physical_chunk->first, buffer_size, descriptor.pxi_buffer.id, dest_buffer_addr + static_buffer_offset); + base_physical_chunk->first, buffer_size, descriptor.pxi_buffer.id.Value(), dest_buffer_addr + static_buffer_offset); static_buffer_offset += 8; @@ -3613,7 +3613,7 @@ void OS::TranslateIPCMessage(Thread& source, Thread& dest, bool is_reply) { dest.WriteMemory32(dest_buffer_addr + static_buffer_offset + 4, chunk_size); source.GetLogger()->info("Added PXI physical memory chunk {:#x} of size {:#x} in static buffer {} at {:#x}", - physical_chunk_address, chunk_size, descriptor.pxi_buffer.id, dest_buffer_addr + static_buffer_offset); + physical_chunk_address, chunk_size, descriptor.pxi_buffer.id.Value(), dest_buffer_addr + static_buffer_offset); static_buffer_offset += 8; diff --git a/source/processes/dsp.cpp b/source/processes/dsp.cpp index 3be5c63..73a1430 100644 --- a/source/processes/dsp.cpp +++ b/source/processes/dsp.cpp @@ -785,7 +785,7 @@ void FakeDSP::OnIPCRequest(FakeThread& thread, Handle sender, const IPC::Command default: // TODO: Throw and catch IPCError instead - throw std::runtime_error(fmt::format("Unknown DSP IPC request {:#x}", header.command_id)); + throw std::runtime_error(fmt::format("Unknown DSP IPC request {:#x}", header.command_id.Value())); } } diff --git a/source/processes/fs.cpp b/source/processes/fs.cpp index 98d5743..92f46dc 100644 --- a/source/processes/fs.cpp +++ b/source/processes/fs.cpp @@ -1818,7 +1818,7 @@ static decltype(HLE::OS::ServiceHelper::SendReply) OnFileIPCRequest(FakeThread& return HLE::OS::ServiceHelper::SendReply; } catch (std::ios_base::failure& err) { thread.GetLogger()->error("Unexpected fstream exception in File IPC command {:#x} handled via object {}: {}", - header.command_id, boost::core::demangle(typeid(*file).name()), + header.command_id.Value(), boost::core::demangle(typeid(*file).name()), IosExceptionInfo(err)); throw; } @@ -1860,7 +1860,7 @@ static decltype(HLE::OS::ServiceHelper::SendReply) OnDirIPCRequest(FakeThread& t return HLE::OS::ServiceHelper::SendReply; } catch (std::ios_base::failure& err) { thread.GetLogger()->error("Unexpected fstream exception in Directory IPC command {:#x} handled via object {}: {}", - header.command_id, boost::core::demangle(typeid(dir).name()), + header.command_id.Value(), boost::core::demangle(typeid(dir).name()), IosExceptionInfo(err)); throw; } diff --git a/source/video_core/src/video_core/shader_microcode.cpp b/source/video_core/src/video_core/shader_microcode.cpp index 7ec6baa..73448d2 100644 --- a/source/video_core/src/video_core/shader_microcode.cpp +++ b/source/video_core/src/video_core/shader_microcode.cpp @@ -1554,7 +1554,7 @@ std::unique_ptr CreateMicroCodeRecompiler(Context& context) try { auto vis = VisualizeShaderControlFlowGraph(prog, context.shader_memory.data(), context.shader_memory.size(), context.swizzle_data.data(), context.swizzle_data.size()); // std::cerr << vis << "\n"; - throw std::runtime_error(fmt::format("OMG: {:#x}", context.registers.vs_main_offset)); + throw std::runtime_error(fmt::format("OMG: {:#x}", context.registers.vs_main_offset.Value())); } } // namespace Pica::VertexShader From 278db8d1f828453a94f332fd35c51548fa4a7b6c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:07:48 +0100 Subject: [PATCH 4/8] =?UTF-8?q?Use=20fmt/ostream.h=E2=80=99s=20implementat?= =?UTF-8?q?ion=20to=20generate=20formatter=20against=20ostream?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fmt 11 requires it. --- source/os.hpp | 6 ++++++ source/processes/pxi.cpp | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/source/os.hpp b/source/os.hpp index ae4d422..28d09b4 100644 --- a/source/os.hpp +++ b/source/os.hpp @@ -2044,5 +2044,11 @@ std::ostream& operator<<(std::ostream& os, const HandlePrinter& printer); } // namespace HLE +template <> struct fmt::formatter : ostream_formatter {}; +template <> struct fmt::formatter : ostream_formatter {}; +template <> struct fmt::formatter : ostream_formatter {}; +template <> struct fmt::formatter : ostream_formatter {}; +template <> struct fmt::formatter : ostream_formatter {}; + // Now that we're done with the definitions, include some definitions that are required to instantiate the above structs (e.g. due to unique_ptr being used on incomplete types) #include "gdb_stub.h" diff --git a/source/processes/pxi.cpp b/source/processes/pxi.cpp index 39f5a78..6f6d36d 100644 --- a/source/processes/pxi.cpp +++ b/source/processes/pxi.cpp @@ -24,6 +24,8 @@ #include #include +#include + std::vector* nand_titles = nullptr; namespace std { @@ -36,6 +38,8 @@ static std::ostream& operator<<(std::ostream& os, const Platform::PXI::PM::Progr } // namespace std +template <> struct fmt::formatter : ostream_formatter {}; + namespace HLE { // namespace OS { From a3d56a4d0b82eeea562155a50c85d00853917999 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:08:44 +0100 Subject: [PATCH 5/8] Use fmt/ranges.h for fmt::join() fmt 11 requires it. --- source/processes/am_hpv.cpp | 1 + source/processes/fs_hpv.cpp | 2 ++ source/processes/pxi_fs.cpp | 2 ++ source/ui/installer.cpp | 2 ++ 4 files changed, 7 insertions(+) diff --git a/source/processes/am_hpv.cpp b/source/processes/am_hpv.cpp index fe6caac..e7dae57 100644 --- a/source/processes/am_hpv.cpp +++ b/source/processes/am_hpv.cpp @@ -3,6 +3,7 @@ #include "os.hpp" #include +#include namespace HLE { diff --git a/source/processes/fs_hpv.cpp b/source/processes/fs_hpv.cpp index dfbba23..511f9d4 100644 --- a/source/processes/fs_hpv.cpp +++ b/source/processes/fs_hpv.cpp @@ -17,6 +17,8 @@ #include #include +#include + namespace HLE { namespace OS { diff --git a/source/processes/pxi_fs.cpp b/source/processes/pxi_fs.cpp index 803b47d..5c4244c 100644 --- a/source/processes/pxi_fs.cpp +++ b/source/processes/pxi_fs.cpp @@ -25,6 +25,8 @@ #include #include +#include + // Hardcoded size for PXI buffers. // TODO: These buffers should only be 0x1000 bytes large, but our PXI tables currently may span more than that because they map individual pages as entries const auto pxi_static_buffer_size = 0x2000; diff --git a/source/ui/installer.cpp b/source/ui/installer.cpp index 0c20d0e..05cc103 100644 --- a/source/ui/installer.cpp +++ b/source/ui/installer.cpp @@ -17,6 +17,8 @@ #include +#include + namespace HLE::PXI { std::array GenerateAESKey(const std::array& key_x, const std::array& key_y); } From d0550d56cbbc4ab3766cb319545c2c88fade407c Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:09:05 +0100 Subject: [PATCH 6/8] Use fmt/std.h for std::filesystem::path formatting fmt 11 requires it. --- source/processes/fs.cpp | 2 ++ source/processes/fs_common.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/source/processes/fs.cpp b/source/processes/fs.cpp index 92f46dc..aa4ffd0 100644 --- a/source/processes/fs.cpp +++ b/source/processes/fs.cpp @@ -35,6 +35,8 @@ #include #include +#include + using namespace Platform::FS; namespace HLE { diff --git a/source/processes/fs_common.cpp b/source/processes/fs_common.cpp index 818965b..749ac1c 100644 --- a/source/processes/fs_common.cpp +++ b/source/processes/fs_common.cpp @@ -8,6 +8,8 @@ #include +#include + namespace HLE { CommonPath CommonPath::FromUtf16(std::u16string_view utf16_data) { From 85db6177976d85f7216913d637ccecf65223da49 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:13:26 +0100 Subject: [PATCH 7/8] GDB Stub: Use HLE::OS::ProcessPrinter for formatting fmt 11 requires it. --- source/gdb_stub.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/gdb_stub.cpp b/source/gdb_stub.cpp index 783aab5..bd6104b 100644 --- a/source/gdb_stub.cpp +++ b/source/gdb_stub.cpp @@ -800,8 +800,9 @@ std::optional GDBStub::HandlePacket(const std::string& command) { auto emu_process = std::dynamic_pointer_cast(process); if (!emu_process) { + auto process_printer = HLE::OS::ProcessPrinter { *process.get() }; logger->warn("Debugger attempting to attach to non-emulated process {} ({})", - pid_opt->first, process); + pid_opt->first, process_printer); return "E02"; } From 04df96a515e4a9d1805c63c66a5d6b01ebd014c4 Mon Sep 17 00:00:00 2001 From: Emmanuel Gil Peyrot Date: Sun, 29 Dec 2024 19:15:18 +0100 Subject: [PATCH 8/8] Build: Bump fmt dependency to 11.1.1, and spdlog to 1.15.0 --- conanfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conanfile.py b/conanfile.py index 925c08a..7448166 100644 --- a/conanfile.py +++ b/conanfile.py @@ -8,7 +8,7 @@ class MikageConan(ConanFile): requires = [ #"boost/1.79.0", "boost/1.84.0", - "spdlog/1.10.0", + "spdlog/1.15.0", "cryptopp/8.5.0", "sdl/2.0.20", # 2.0.18 fixed swapped X/Y buttons on Switch Pro Controller "range-v3/0.11.0", @@ -17,7 +17,7 @@ class MikageConan(ConanFile): "spirv-tools/1.3.268.0", "tracy/0.11.1", "xxhash/0.8.0", - "fmt/8.1.1", + "fmt/11.1.1", ] options = {