summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Thread.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-01-01 20:18:03 +0100
committerJosJuice <josjuice@gmail.com>2023-02-28 20:29:46 +0100
commit86c1f6e1e7e2abcc3f42e1182134e632b218b6d3 (patch)
tree21a12f638e632148a9ef82f6f6b696f8861ca41c /Source/Core/Common/Thread.cpp
parent0cdae98181d8bef6f6e9c8a2783318c400101aa0 (diff)
Jit: Don't use a second stack
This second stack leads to JNI problems on Android, because ART fetches the address and size of the original stack using pthread functions (see GetThreadStack in art/runtime/thread.cc), and (presumably) treats stack addresses outside of the original stack as invalid. (What I don't understand is why some JNI operations on the CPU thread work fine despite this but others don't.) Instead of creating a second stack, let's borrow the approach ART uses: Use pthread functions to find out the stack's address and size, then install guard pages at an appropriate location. This lets us get rid of a workaround we had in the MsgAlert function. Because we're no longer choosing the stack size ourselves, I've made some tweaks to where the put the guard pages. Previously we had a stack of 2 MiB and a safe zone of 512 KiB. We now accept stacks as small as 512 KiB (used on macOS) and use a safe zone of 256 KiB. I feel like this should be fine, but haven't done much testing beyond "it seems to work". By the way, on Windows it was already the case that we didn't create a second stack... But there was a bug in the implementation! The code for protecting the stack has to run on the CPU thread, since it's the CPU thread's stack we want to protect, but it was actually running on EmuThread. This commit fixes that, since now this bug matters on other operating systems too.
Diffstat (limited to 'Source/Core/Common/Thread.cpp')
-rw-r--r--Source/Core/Common/Thread.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/Source/Core/Common/Thread.cpp b/Source/Core/Common/Thread.cpp
index 7bbc27e5f4..810db15d78 100644
--- a/Source/Core/Common/Thread.cpp
+++ b/Source/Core/Common/Thread.cpp
@@ -7,6 +7,7 @@
#include <Windows.h>
#include <processthreadsapi.h>
#else
+#include <pthread.h>
#include <unistd.h>
#endif
@@ -185,6 +186,41 @@ void SetCurrentThreadName(const char* name)
#endif
}
+std::tuple<void*, size_t> GetCurrentThreadStack()
+{
+ void* stack_addr;
+ size_t stack_size;
+
+ pthread_t self = pthread_self();
+
+#ifdef __APPLE__
+ stack_size = pthread_get_stacksize_np(self);
+ stack_addr = reinterpret_cast<u8*>(pthread_get_stackaddr_np(self)) - stack_size;
+#elif defined __OpenBSD__
+ stack_t stack;
+ pthread_stackseg_np(self, &stack);
+
+ stack_addr = reinterpret_cast<u8*>(stack->ss_sp) - stack->ss_size;
+ stack_size = stack->ss_size;
+#else
+ pthread_attr_t attr;
+
+#ifdef __FreeBSD__
+ pthread_attr_init(&attr);
+ pthread_attr_get_np(self, &attr);
+#else
+ // Linux and NetBSD
+ pthread_getattr_np(self, &attr);
+#endif
+
+ pthread_attr_getstack(&attr, &stack_addr, &stack_size);
+
+ pthread_attr_destroy(&attr);
+#endif
+
+ return std::make_tuple(stack_addr, stack_size);
+}
+
#endif
} // namespace Common