mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 07:39:45 -06:00
XEmitter: add BLENDPS/BLENDPD
This commit is contained in:
@ -1775,6 +1775,8 @@ void XEmitter::PMOVZXDQ(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3835, dest
|
|||||||
void XEmitter::PBLENDVB(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3810, dest, arg);}
|
void XEmitter::PBLENDVB(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3810, dest, arg);}
|
||||||
void XEmitter::BLENDVPS(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3814, dest, arg);}
|
void XEmitter::BLENDVPS(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3814, dest, arg);}
|
||||||
void XEmitter::BLENDVPD(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3815, dest, arg);}
|
void XEmitter::BLENDVPD(X64Reg dest, OpArg arg) {WriteSSE41Op(0x66, 0x3815, dest, arg);}
|
||||||
|
void XEmitter::BLENDPS(X64Reg dest, OpArg arg, u8 blend) {WriteSSE41Op(0x66, 0x3A0C, dest, arg, 1); Write8(blend);}
|
||||||
|
void XEmitter::BLENDPD(X64Reg dest, OpArg arg, u8 blend) {WriteSSE41Op(0x66, 0x3A0D, dest, arg, 1); Write8(blend);}
|
||||||
|
|
||||||
void XEmitter::PAND(X64Reg dest, OpArg arg) {WriteSSEOp(0x66, 0xDB, dest, arg);}
|
void XEmitter::PAND(X64Reg dest, OpArg arg) {WriteSSEOp(0x66, 0xDB, dest, arg);}
|
||||||
void XEmitter::PANDN(X64Reg dest, OpArg arg) {WriteSSEOp(0x66, 0xDF, dest, arg);}
|
void XEmitter::PANDN(X64Reg dest, OpArg arg) {WriteSSEOp(0x66, 0xDF, dest, arg);}
|
||||||
|
@ -789,10 +789,12 @@ public:
|
|||||||
void PMOVZXWQ(X64Reg dest, OpArg arg);
|
void PMOVZXWQ(X64Reg dest, OpArg arg);
|
||||||
void PMOVZXDQ(X64Reg dest, OpArg arg);
|
void PMOVZXDQ(X64Reg dest, OpArg arg);
|
||||||
|
|
||||||
// SSE4: variable blend instructions (xmm0 implicit argument)
|
// SSE4: blend instructions
|
||||||
void PBLENDVB(X64Reg dest, OpArg arg);
|
void PBLENDVB(X64Reg dest, OpArg arg);
|
||||||
void BLENDVPS(X64Reg dest, OpArg arg);
|
void BLENDVPS(X64Reg dest, OpArg arg);
|
||||||
void BLENDVPD(X64Reg dest, OpArg arg);
|
void BLENDVPD(X64Reg dest, OpArg arg);
|
||||||
|
void BLENDPS(X64Reg dest, OpArg arg, u8 blend);
|
||||||
|
void BLENDPD(X64Reg dest, OpArg arg, u8 blend);
|
||||||
|
|
||||||
// AVX
|
// AVX
|
||||||
void VADDSD(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
void VADDSD(X64Reg regOp1, X64Reg regOp2, OpArg arg);
|
||||||
|
Reference in New Issue
Block a user