diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index 0eadecfab5..163262de09 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -1849,7 +1849,7 @@ static atomic_t s_thread_bits{0}; static atomic_t s_thread_pool[128]{}; -void thread_base::start(native_entry entry) +void thread_base::start() { for (u128 bits = s_thread_bits.load(); bits; bits &= bits - 1) { @@ -1867,22 +1867,20 @@ void thread_base::start(native_entry entry) continue; } - // Send "this" and entry point - const u64 entry_val = reinterpret_cast(entry); - m_thread = entry_val; - atomic_storage::release(*tls, this); + // Receive "that" native thread handle, sent "this" thread_base + const u64 _self = reinterpret_cast(atomic_storage::load(*tls)); + m_thread.release(_self); + verify(HERE), _self != reinterpret_cast(this); + atomic_storage::store(*tls, this); s_thread_pool[pos].notify_all(); - - // Wait for actual "m_thread" in return - m_thread.wait(entry_val); return; } #ifdef _WIN32 - m_thread = ::_beginthreadex(nullptr, 0, entry, this, CREATE_SUSPENDED, nullptr); + m_thread = ::_beginthreadex(nullptr, 0, entry_point, this, CREATE_SUSPENDED, nullptr); verify("thread_ctrl::start" HERE), m_thread, ::ResumeThread(reinterpret_cast(+m_thread)) != -1; #else - verify("thread_ctrl::start" HERE), pthread_create(reinterpret_cast(&m_thread.raw()), nullptr, entry, this) == 0; + verify("thread_ctrl::start" HERE), pthread_create(reinterpret_cast(&m_thread.raw()), nullptr, entry_point, this) == 0; #endif } @@ -2026,7 +2024,7 @@ u64 thread_base::finalize(thread_state result_state) noexcept return m_thread; } -u64 thread_base::finalize(u64 _self) noexcept +thread_base::native_entry thread_base::finalize(u64 _self) noexcept { g_tls_fault_all = 0; g_tls_fault_rsx = 0; @@ -2043,7 +2041,7 @@ u64 thread_base::finalize(u64 _self) noexcept if (!_self) { - return 0; + return nullptr; } // Try to add self to thread pool @@ -2138,17 +2136,14 @@ u64 thread_base::finalize(u64 _self) noexcept if (--s_pool_ctr & s_stop_bit) { - return 0; + return nullptr; } - // Restore thread id + // Restore thread base const auto _this = atomic_storage::load(*tls); - const auto entry = _this->m_thread.exchange(_self); - verify(HERE), entry != _self; - _this->m_thread.notify_one(); // Return new entry - return entry; + return _this->entry_point; } thread_base::native_entry thread_base::make_trampoline(u64(*entry)(thread_base* _base)) @@ -2166,7 +2161,7 @@ thread_base::native_entry thread_base::make_trampoline(u64(*entry)(thread_base* // Call finalize, return if zero c.mov(args[0], x86::rax); - c.call(imm_ptr(finalize)); + c.call(imm_ptr(finalize)); c.test(x86::rax, x86::rax); c.jz(_ret); @@ -2260,8 +2255,9 @@ std::string thread_ctrl::get_name_cached() return *name_cache; } -thread_base::thread_base(std::string_view name) - : m_tname(stx::shared_cptr::make(name)) +thread_base::thread_base(native_entry entry, std::string_view name) + : entry_point(entry) + , m_tname(stx::shared_cptr::make(name)) { } diff --git a/Utilities/Thread.h b/Utilities/Thread.h index 1e5d0143f6..401e174fae 100644 --- a/Utilities/Thread.h +++ b/Utilities/Thread.h @@ -100,6 +100,8 @@ public: using native_entry = void*(*)(void* arg); #endif + const native_entry entry_point; + private: // Thread handle (platform-specific) atomic_t m_thread{0}; @@ -111,7 +113,7 @@ private: stx::atomic_cptr m_tname; // Start thread - void start(native_entry); + void start(); // Called at the thread start void initialize(void (*error_cb)()); @@ -120,7 +122,7 @@ private: u64 finalize(thread_state result) noexcept; // Cleanup after possibly deleting the thread instance - static u64 finalize(u64 _self) noexcept; + static native_entry finalize(u64 _self) noexcept; // Set name for debugger static void set_name(std::string); @@ -134,7 +136,7 @@ private: friend class named_thread; protected: - thread_base(std::string_view name); + thread_base(native_entry, std::string_view name); ~thread_base(); @@ -316,26 +318,26 @@ public: template && thread_thread_name(), typename = std::enable_if_t> named_thread() : Context() - , thread(Context::thread_name) + , thread(trampoline, Context::thread_name) { - thread::start(trampoline); + thread::start(); } // Normal forwarding constructor template >> named_thread(std::string_view name, Args&&... args) : Context(std::forward(args)...) - , thread(name) + , thread(trampoline, name) { - thread::start(trampoline); + thread::start(); } // Lambda constructor, also the implicit deduction guide candidate named_thread(std::string_view name, Context&& f) : Context(std::forward(f)) - , thread(name) + , thread(trampoline, name) { - thread::start(trampoline); + thread::start(); } named_thread(const named_thread&) = delete;