mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
JitArm64: Implement divwx
This commit is contained in:
parent
a8b1347ea9
commit
f1a67bb1a2
4 changed files with 109 additions and 30 deletions
|
@ -651,6 +651,11 @@ public:
|
|||
ARM64Reg zr = Is64Bit(Rd) ? ZR : WZR;
|
||||
CSINC(Rd, zr, zr, (CCFlags)((u32)cond ^ 1));
|
||||
}
|
||||
void CSETM(ARM64Reg Rd, CCFlags cond)
|
||||
{
|
||||
ARM64Reg zr = Is64Bit(Rd) ? ZR : WZR;
|
||||
CSINV(Rd, zr, zr, (CCFlags)((u32)cond ^ 1));
|
||||
}
|
||||
void NEG(ARM64Reg Rd, ARM64Reg Rs) { SUB(Rd, Is64Bit(Rd) ? ZR : WZR, Rs); }
|
||||
// Data-Processing 1 source
|
||||
void RBIT(ARM64Reg Rd, ARM64Reg Rn);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue