mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-10 00:18:23 +01:00
RegAlloc: Allow allocation of XMM registers
This commit is contained in:
parent
864081d1a0
commit
4414ec5bc8
5 changed files with 218 additions and 131 deletions
|
|
@ -41,6 +41,8 @@ enum class Type {
|
|||
U16 = 1 << 5,
|
||||
U32 = 1 << 6,
|
||||
U64 = 1 << 7,
|
||||
F32 = 1 << 8,
|
||||
F64 = 1 << 9,
|
||||
};
|
||||
|
||||
Type GetTypeOf(Opcode op);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue