From 7b276e0a08c28679fefd7410c25641dd51651bc1 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Wed, 1 Nov 2023 12:40:56 +0200 Subject: [PATCH] some HLE implementation for undertale game to process further --- src/core/hle/libraries/libc/libc.cpp | 31 +++++++++++++++++++++++ src/core/hle/libraries/libc/libc_math.cpp | 2 ++ src/core/hle/libraries/libc/libc_math.h | 1 + 3 files changed, 34 insertions(+) diff --git a/src/core/hle/libraries/libc/libc.cpp b/src/core/hle/libraries/libc/libc.cpp index e8e30d4c..6074f2c6 100644 --- a/src/core/hle/libraries/libc/libc.cpp +++ b/src/core/hle/libraries/libc/libc.cpp @@ -3,6 +3,7 @@ #include #include +#include "Emulator/Util/singleton.h" #include "Util/log.h" #include "core/PS4/HLE/Libs.h" #include "core/hle/libraries/libc/libc.h" @@ -16,6 +17,32 @@ namespace Core::Libraries::LibC { constexpr bool log_file_libc = true; // disable it to disable logging static u32 g_need_sceLibc = 1; +using cxa_destructor_func_t = void (*)(void*); + +struct CxaDestructor { + cxa_destructor_func_t destructor_func; + void* destructor_object; + void* module_id; +}; + +struct CContext { + std::vector cxa; +}; + +static PS4_SYSV_ABI int __cxa_atexit(void (*func)(void*), void* arg, void* dso_handle) { + auto* cc = singleton::instance(); + CxaDestructor c{}; + c.destructor_func = func; + c.destructor_object = arg; + c.module_id = dso_handle; + cc->cxa.push_back(c); + return 0; +} + +void PS4_SYSV_ABI __cxa_finalize(void* d) { __debugbreak(); } + +void PS4_SYSV_ABI __cxa_pure_virtual() { __debugbreak(); } + static PS4_SYSV_ABI void init_env() { PRINT_DUMMY_FUNCTION_NAME(); } static PS4_SYSV_ABI void catchReturnFromMain(int status) { LOG_INFO_IF(log_file_libc, "catchReturnFromMain returned ={}\n", status); } @@ -65,6 +92,7 @@ void libcSymbolsRegister(SymbolsResolver* sym) { LIB_FUNCTION("9LCjpWyQ5Zc", "libc", 1, "libc", 1, 1, pow); LIB_FUNCTION("cCXjU72Z0Ow", "libc", 1, "libc", 1, 1, _Sin); LIB_FUNCTION("ZtjspkJQ+vw", "libc", 1, "libc", 1, 1, _Fsin); + LIB_FUNCTION("dnaeGXbjP6E", "libc", 1, "libc", 1, 1, exp2); // string functions LIB_FUNCTION("Ovb2dSJOAuE", "libc", 1, "libc", 1, 1, strcmp); @@ -91,6 +119,9 @@ void libcSymbolsRegister(SymbolsResolver* sym) { LIB_FUNCTION("eT2UsmTewbU", "libc", 1, "libc", 1, 1, _ZSt11_Xbad_allocv); LIB_FUNCTION("tQIo+GIPklo", "libc", 1, "libc", 1, 1, _ZSt14_Xlength_errorPKc); LIB_FUNCTION("fJnpuVVBbKk", "libc", 1, "libc", 1, 1, _Znwm); + LIB_FUNCTION("tsvEmnenz48", "libc", 1, "libc", 1, 1, __cxa_atexit); + LIB_FUNCTION("H2e8t5ScQGc", "libc", 1, "libc", 1, 1, __cxa_finalize); + LIB_FUNCTION("zr094EQ39Ww", "libc", 1, "libc", 1, 1, __cxa_pure_virtual); } }; // namespace Core::Libraries::LibC \ No newline at end of file diff --git a/src/core/hle/libraries/libc/libc_math.cpp b/src/core/hle/libraries/libc/libc_math.cpp index 5e373d05..e66c6334 100644 --- a/src/core/hle/libraries/libc/libc_math.cpp +++ b/src/core/hle/libraries/libc/libc_math.cpp @@ -18,4 +18,6 @@ double PS4_SYSV_ABI _Sin(double x) { return std::sin(x); } float PS4_SYSV_ABI _Fsin(float arg) { return std::sinf(arg); } +double PS4_SYSV_ABI exp2(double arg) { return std::exp2(arg); } + } // namespace Core::Libraries::LibC \ No newline at end of file diff --git a/src/core/hle/libraries/libc/libc_math.h b/src/core/hle/libraries/libc/libc_math.h index 2927c09e..d4961689 100644 --- a/src/core/hle/libraries/libc/libc_math.h +++ b/src/core/hle/libraries/libc/libc_math.h @@ -10,4 +10,5 @@ float PS4_SYSV_ABI asinf(float num); double PS4_SYSV_ABI pow(double base, double exponent); double PS4_SYSV_ABI _Sin(double x); float PS4_SYSV_ABI _Fsin(float arg); +double PS4_SYSV_ABI exp2(double arg); } // namespace Core::Libraries::LibC \ No newline at end of file