mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Cleanup, preparations for Linux/Mac JIT (not yet working)
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@114 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -305,7 +305,7 @@ namespace Gen
|
||||
|
||||
void XCHG_AHAL();
|
||||
void BSWAP(int bits, X64Reg reg);
|
||||
void MOVSX(int dbits, int sbits, X64Reg dest, OpArg src); //auto uses MOVSXD if necessary
|
||||
void MOVSX(int dbits, int sbits, X64Reg dest, OpArg src); //automatically uses MOVSXD if necessary
|
||||
void MOVZX(int dbits, int sbits, X64Reg dest, OpArg src);
|
||||
|
||||
enum SSECompare
|
||||
@ -320,13 +320,11 @@ namespace Gen
|
||||
ORD,
|
||||
};
|
||||
|
||||
|
||||
//SSE2
|
||||
// WARNING - These two take 11-13 cycles and are VectorPath! (AMD64)
|
||||
void STMXCSR(OpArg memloc);
|
||||
void LDMXCSR(OpArg memloc);
|
||||
|
||||
//Regular SSE instructions
|
||||
// Regular SSE/SSE2 instructions
|
||||
void ADDSS(X64Reg regOp, OpArg arg);
|
||||
void ADDSD(X64Reg regOp, OpArg arg);
|
||||
void SUBSS(X64Reg regOp, OpArg arg);
|
||||
@ -492,7 +490,6 @@ namespace Gen
|
||||
|
||||
void PMOVMSKB(X64Reg dest, OpArg arg);
|
||||
|
||||
|
||||
namespace Util
|
||||
{
|
||||
// Sets up a __cdecl function.
|
||||
|
Reference in New Issue
Block a user