diff --git a/CMakeLists.txt b/CMakeLists.txt index aef7fa46..4cf8f8b0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -155,7 +155,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/termcolor.hpp include/result/result_gsp.hpp include/result/result_kernel.hpp include/result/result_os.hpp include/crypto/aes_engine.hpp include/metaprogramming.hpp include/PICA/pica_vertex.hpp include/config.hpp include/services/ir_user.hpp include/httpserver.hpp include/cheats.hpp - include/action_replay.hpp include/renderer_sw/renderer_sw.hpp + include/action_replay.hpp include/renderer_sw/renderer_sw.hpp include/compiler_builtins.hpp ) set(THIRD_PARTY_SOURCE_FILES third_party/imgui/imgui.cpp diff --git a/include/compiler_builtins.hpp b/include/compiler_builtins.hpp new file mode 100644 index 00000000..92882436 --- /dev/null +++ b/include/compiler_builtins.hpp @@ -0,0 +1,7 @@ +#pragma once + +#ifdef _MSC_VER +#define ALWAYS_INLINE __forceinline +#else +#define ALWAYS_INLINE __attribute__((always_inline)) +#endif \ No newline at end of file diff --git a/include/helpers.hpp b/include/helpers.hpp index 4162309e..b4806dee 100644 --- a/include/helpers.hpp +++ b/include/helpers.hpp @@ -154,5 +154,4 @@ namespace Helpers { // UDLs for memory size values constexpr size_t operator""_KB(unsigned long long int x) { return 1024ULL * x; } constexpr size_t operator""_MB(unsigned long long int x) { return 1024_KB * x; } -constexpr size_t operator""_GB(unsigned long long int x) { return 1024_MB * x; } - +constexpr size_t operator""_GB(unsigned long long int x) { return 1024_MB * x; } \ No newline at end of file diff --git a/include/kernel/kernel.hpp b/include/kernel/kernel.hpp index cc2f4a4c..2db7cdda 100644 --- a/include/kernel/kernel.hpp +++ b/include/kernel/kernel.hpp @@ -107,9 +107,9 @@ private: MAKE_LOG_FUNCTION(log, kernelLogger) MAKE_LOG_FUNCTION(logSVC, svcLogger) MAKE_LOG_FUNCTION(logThread, threadLogger) - MAKE_LOG_FUNCTION(logDebugString, debugStringLogger) MAKE_LOG_FUNCTION(logError, errorLogger) MAKE_LOG_FUNCTION(logFileIO, fileIOLogger) + MAKE_LOG_FUNCTION_USER(logDebugString, debugStringLogger) // SVC implementations void arbitrateAddress(); diff --git a/include/logger.hpp b/include/logger.hpp index e1b425b9..92555269 100644 --- a/include/logger.hpp +++ b/include/logger.hpp @@ -2,61 +2,78 @@ #include #include +#include "compiler_builtins.hpp" + namespace Log { - // Our logger class - template - class Logger { - public: - void log(const char* fmt, ...) { - if constexpr (!enabled) return; - - std::va_list args; - va_start(args, fmt); - std::vprintf(fmt, args); - va_end(args); - } - }; + // Our logger class + template + class Logger { + public: + ALWAYS_INLINE void log(const char* fmt, ...) { + if constexpr (!enabled) return; - // Our loggers here. Enable/disable by toggling the template param - static Logger kernelLogger; - static Logger debugStringLogger; // Enables output for the outputDebugString SVC - static Logger errorLogger; - static Logger fileIOLogger; - static Logger svcLogger; - static Logger threadLogger; - static Logger gpuLogger; - static Logger rendererLogger; - static Logger shaderJITLogger; + std::va_list args; + va_start(args, fmt); + std::vprintf(fmt, args); + va_end(args); + } + }; - // Service loggers - static Logger acLogger; - static Logger actLogger; - static Logger amLogger; - static Logger aptLogger; - static Logger bossLogger; - static Logger camLogger; - static Logger cecdLogger; - static Logger cfgLogger; - static Logger dspServiceLogger; - static Logger dlpSrvrLogger; - static Logger frdLogger; - static Logger fsLogger; - static Logger hidLogger; + // Our loggers here. Enable/disable by toggling the template param + static Logger kernelLogger; + // Enables output for the outputDebugString SVC + static Logger debugStringLogger; + static Logger errorLogger; + static Logger fileIOLogger; + static Logger svcLogger; + static Logger threadLogger; + static Logger gpuLogger; + static Logger rendererLogger; + static Logger shaderJITLogger; + + // Service loggers + static Logger acLogger; + static Logger actLogger; + static Logger amLogger; + static Logger aptLogger; + static Logger bossLogger; + static Logger camLogger; + static Logger cecdLogger; + static Logger cfgLogger; + static Logger dspServiceLogger; + static Logger dlpSrvrLogger; + static Logger frdLogger; + static Logger fsLogger; + static Logger hidLogger; static Logger irUserLogger; - static Logger gspGPULogger; - static Logger gspLCDLogger; - static Logger ldrLogger; - static Logger micLogger; - static Logger nfcLogger; - static Logger nimLogger; - static Logger ndmLogger; - static Logger ptmLogger; - static Logger y2rLogger; - static Logger srvLogger; + static Logger gspGPULogger; + static Logger gspLCDLogger; + static Logger ldrLogger; + static Logger micLogger; + static Logger nfcLogger; + static Logger nimLogger; + static Logger ndmLogger; + static Logger ptmLogger; + static Logger y2rLogger; + static Logger srvLogger; - #define MAKE_LOG_FUNCTION(functionName, logger) \ - template \ - void functionName(const char* fmt, Args... args) { \ - Log::logger.log(fmt, args...); \ - } -} + // We have 2 ways to create a log function + // MAKE_LOG_FUNCTION: Creates a log function which is toggleable but always killed for user-facing builds + // MAKE_LOG_FUNCTION_USER: Creates a log function which is toggleable, may be on for user builds as well + // We need this because sadly due to the loggers taking variadic arguments, compilers will not properly + // Kill them fully even when they're disabled. The only way they will is if the function with varargs is totally empty + +#define MAKE_LOG_FUNCTION_USER(functionName, logger) \ + template \ + ALWAYS_INLINE void functionName(const char* fmt, Args&&... args) { \ + Log::logger.log(fmt, args...); \ + } + +#ifdef PANDA3DS_USER_BUILD +#define MAKE_LOG_FUNCTION(functionName, logger) \ + template \ + ALWAYS_INLINE void functionName(const char* fmt, Args&&... args) {} +#else +#define MAKE_LOG_FUNCTION(functionName, logger) MAKE_LOG_FUNCTION_USER(functionName, logger) +#endif +} \ No newline at end of file