mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-24 14:49:42 -06:00
Arm64Emitter: Add shorthand member functions for hint instructions
Allows for more concise code.
This commit is contained in:
@ -603,6 +603,13 @@ public:
|
||||
void CNTVCT(ARM64Reg Rt);
|
||||
|
||||
void HINT(SystemHint op);
|
||||
void NOP() { HINT(SystemHint::NOP); }
|
||||
void SEV() { HINT(SystemHint::SEV); }
|
||||
void SEVL() { HINT(SystemHint::SEVL); }
|
||||
void WFE() { HINT(SystemHint::WFE); }
|
||||
void WFI() { HINT(SystemHint::WFI); }
|
||||
void YIELD() { HINT(SystemHint::YIELD); }
|
||||
|
||||
void CLREX();
|
||||
void DSB(BarrierType type);
|
||||
void DMB(BarrierType type);
|
||||
|
Reference in New Issue
Block a user