mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
PPU: Implemented some instructions in the recompiler. Fixed some bugs in the interpreter.
This commit is contained in:
parent
205e1d88b3
commit
6ea50567b6
4 changed files with 241 additions and 85 deletions
|
@ -1022,6 +1022,9 @@ namespace ppu_recompiler_llvm {
|
|||
};
|
||||
};
|
||||
|
||||
/// Log
|
||||
llvm::raw_fd_ostream * m_log;
|
||||
|
||||
/// Lock for accessing m_pending_execution_traces. TODO: Eliminate this and use a lock-free queue.
|
||||
std::mutex m_pending_execution_traces_lock;
|
||||
|
||||
|
@ -1047,9 +1050,6 @@ namespace ppu_recompiler_llvm {
|
|||
/// PPU Compiler
|
||||
Compiler m_compiler;
|
||||
|
||||
/// Log
|
||||
llvm::raw_fd_ostream * m_log;
|
||||
|
||||
/// Executable lookup table
|
||||
Executable m_executable_lookup[10000]; // TODO: Adjust size
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue