mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Linux Speed up
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@362 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -183,11 +183,6 @@ namespace Jit64
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef _WIN32
|
|
||||||
#undef INSTRUCTION_START
|
|
||||||
#define INSTRUCTION_START Default(inst); return;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
void stX(UGeckoInstruction inst)
|
void stX(UGeckoInstruction inst)
|
||||||
{
|
{
|
||||||
INSTRUCTION_START;
|
INSTRUCTION_START;
|
||||||
@ -263,6 +258,13 @@ namespace Jit64
|
|||||||
}
|
}
|
||||||
|
|
||||||
//Still here? Do regular path.
|
//Still here? Do regular path.
|
||||||
|
#ifndef _WIN32
|
||||||
|
if(accessSize == 8)
|
||||||
|
{
|
||||||
|
Default(inst);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
gpr.Lock(s, a);
|
gpr.Lock(s, a);
|
||||||
gpr.FlushLockX(ABI_PARAM1, ABI_PARAM2);
|
gpr.FlushLockX(ABI_PARAM1, ABI_PARAM2);
|
||||||
MOV(32, R(ABI_PARAM2), gpr.R(a));
|
MOV(32, R(ABI_PARAM2), gpr.R(a));
|
||||||
|
Reference in New Issue
Block a user