mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
LLE JIT:
* Fixed a bug in the JCC instruction. * Changed the cycle count from u32 to u16. * Added cycle counting to the block linker. * Optimised the branch exit slightly. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6681 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -249,12 +249,13 @@ public:
|
||||
// CALL this to start the dispatcher
|
||||
const u8 *enterDispatcher;
|
||||
u16 compilePC;
|
||||
u16 startAddr;
|
||||
CompiledCode *blockLinks;
|
||||
u16 *blockSize;
|
||||
|
||||
private:
|
||||
CompiledCode *blocks;
|
||||
const u8 *blockLinkEntry;
|
||||
u16 *blockSize;
|
||||
u16 compileSR;
|
||||
|
||||
// The index of the last stored ext value (compile time).
|
||||
|
Reference in New Issue
Block a user