mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-05 22:18:16 +01:00
IR: Implement A64OrQC
This commit is contained in:
parent
f0fecf2615
commit
ecbf9dbae5
5 changed files with 22 additions and 0 deletions
|
|
@ -341,6 +341,7 @@ bool Inst::ReadsFromFPSRCumulativeSaturationBit() const {
|
|||
|
||||
bool Inst::WritesToFPSRCumulativeSaturationBit() const {
|
||||
switch (op) {
|
||||
case Opcode::A64OrQC:
|
||||
case Opcode::VectorSignedSaturatedNarrowToSigned16:
|
||||
case Opcode::VectorSignedSaturatedNarrowToSigned32:
|
||||
case Opcode::VectorSignedSaturatedNarrowToSigned64:
|
||||
|
|
|
|||
|
|
@ -59,6 +59,7 @@ A64OPC(SetQ, T::Void, T::A64Vec,
|
|||
A64OPC(SetSP, T::Void, T::U64 )
|
||||
A64OPC(SetFPCR, T::Void, T::U32 )
|
||||
A64OPC(SetFPSR, T::Void, T::U32 )
|
||||
A64OPC(OrQC, T::Void, T::U1 )
|
||||
A64OPC(SetPC, T::Void, T::U64 )
|
||||
A64OPC(CallSupervisor, T::Void, T::U32 )
|
||||
A64OPC(ExceptionRaised, T::Void, T::U64, T::U64 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue