mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
cpu_state -> cpu_flag vm::stack_allocator template improved ppu_cmd type changed to enum, cmd64 type added
61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "../Utilities/Thread.h"
|
|
#include "../Utilities/bit_set.h"
|
|
|
|
// cpu_thread state flags
|
|
enum class cpu_flag : u32
|
|
{
|
|
stop, // Thread not running (HLE, initial state)
|
|
exit, // Irreversible exit
|
|
suspend, // Thread paused
|
|
ret, // Callback return requested
|
|
signal, // Thread received a signal (HLE)
|
|
|
|
dbg_global_pause, // Emulation paused
|
|
dbg_global_stop, // Emulation stopped
|
|
dbg_pause, // Thread paused
|
|
dbg_step, // Thread forced to pause after one step (one instruction, etc)
|
|
|
|
__bitset_enum_max
|
|
};
|
|
|
|
// cpu_flag set for pause state
|
|
constexpr bs_t<cpu_flag> cpu_state_pause = cpu_flag::suspend + cpu_flag::dbg_global_pause + cpu_flag::dbg_pause;
|
|
|
|
class cpu_thread : public named_thread
|
|
{
|
|
void on_task() override;
|
|
|
|
public:
|
|
virtual void on_stop() override;
|
|
virtual ~cpu_thread() override;
|
|
|
|
const id_value<> id{};
|
|
|
|
cpu_thread();
|
|
|
|
// Public thread state
|
|
atomic_t<bs_t<cpu_flag>> state{+cpu_flag::stop};
|
|
|
|
// Object associated with sleep state, possibly synchronization primitive (mutex, semaphore, etc.)
|
|
atomic_t<void*> owner{};
|
|
|
|
// Process thread state, return true if the checker must return
|
|
bool check_state();
|
|
|
|
// Run thread
|
|
void run();
|
|
|
|
virtual std::string dump() const = 0; // Print CPU state
|
|
virtual void cpu_init() {} // Obsolete, must be removed
|
|
virtual void cpu_task() = 0;
|
|
};
|
|
|
|
inline cpu_thread* get_current_cpu_thread() noexcept
|
|
{
|
|
extern thread_local cpu_thread* g_tls_current_cpu_thread;
|
|
|
|
return g_tls_current_cpu_thread;
|
|
}
|