mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 03:39:59 +00:00
x64-emitter: add RCPSS SSE instruction
This commit is contained in:
parent
250d474280
commit
16f39aa452
2 changed files with 2 additions and 0 deletions
|
@ -1535,6 +1535,7 @@ void XEmitter::MAXSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseMAX,
|
||||||
void XEmitter::MAXSD(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF2, sseMAX, regOp, arg);}
|
void XEmitter::MAXSD(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF2, sseMAX, regOp, arg);}
|
||||||
void XEmitter::SQRTSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseSQRT, regOp, arg);}
|
void XEmitter::SQRTSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseSQRT, regOp, arg);}
|
||||||
void XEmitter::SQRTSD(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF2, sseSQRT, regOp, arg);}
|
void XEmitter::SQRTSD(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF2, sseSQRT, regOp, arg);}
|
||||||
|
void XEmitter::RCPSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseRCP, regOp, arg);}
|
||||||
void XEmitter::RSQRTSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseRSQRT, regOp, arg);}
|
void XEmitter::RSQRTSS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0xF3, sseRSQRT, regOp, arg);}
|
||||||
|
|
||||||
void XEmitter::ADDPS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0x00, sseADD, regOp, arg);}
|
void XEmitter::ADDPS(X64Reg regOp, const OpArg& arg) {WriteSSEOp(0x00, sseADD, regOp, arg);}
|
||||||
|
|
|
@ -586,6 +586,7 @@ public:
|
||||||
void MAXSD(X64Reg regOp, const OpArg& arg);
|
void MAXSD(X64Reg regOp, const OpArg& arg);
|
||||||
void SQRTSS(X64Reg regOp, const OpArg& arg);
|
void SQRTSS(X64Reg regOp, const OpArg& arg);
|
||||||
void SQRTSD(X64Reg regOp, const OpArg& arg);
|
void SQRTSD(X64Reg regOp, const OpArg& arg);
|
||||||
|
void RCPSS(X64Reg regOp, const OpArg& arg);
|
||||||
void RSQRTSS(X64Reg regOp, const OpArg& arg);
|
void RSQRTSS(X64Reg regOp, const OpArg& arg);
|
||||||
|
|
||||||
// SSE/SSE2: Floating point bitwise (yes)
|
// SSE/SSE2: Floating point bitwise (yes)
|
||||||
|
|
Loading…
Reference in a new issue