mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 15:08:22 +01:00
IR: Add IR instructions A64Memory{Read,Write}128
This implementation only works on macOS and Linux.
This commit is contained in:
parent
e00a522cba
commit
e1df7ae621
9 changed files with 72 additions and 4 deletions
|
|
@ -237,10 +237,12 @@ A64OPC(ReadMemory8, T::U8, T::U64
|
|||
A64OPC(ReadMemory16, T::U16, T::U64 )
|
||||
A64OPC(ReadMemory32, T::U32, T::U64 )
|
||||
A64OPC(ReadMemory64, T::U64, T::U64 )
|
||||
A64OPC(ReadMemory128, T::U128, T::U64 )
|
||||
A64OPC(WriteMemory8, T::Void, T::U64, T::U8 )
|
||||
A64OPC(WriteMemory16, T::Void, T::U64, T::U16 )
|
||||
A64OPC(WriteMemory32, T::Void, T::U64, T::U32 )
|
||||
A64OPC(WriteMemory64, T::Void, T::U64, T::U64 )
|
||||
A64OPC(WriteMemory128, T::Void, T::U64, T::U128 )
|
||||
|
||||
// Coprocessor
|
||||
A32OPC(CoprocInternalOperation, T::Void, T::CoprocInfo )
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ using U64 = TypedValue<Type::U64>;
|
|||
using U128 = TypedValue<Type::U128>;
|
||||
using U32U64 = TypedValue<Type::U32 | Type::U64>;
|
||||
using UAny = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64>;
|
||||
using UAnyU128 = TypedValue<Type::U8 | Type::U16 | Type::U32 | Type::U64 | Type::U128>;
|
||||
using NZCV = TypedValue<Type::NZCVFlags>;
|
||||
|
||||
} // namespace IR
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue