mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-07 15:08:22 +01:00
VFP: Implement VMOV (all variants)
This commit is contained in:
parent
aba705f6b9
commit
a2c2db277b
11 changed files with 301 additions and 27 deletions
|
|
@ -274,6 +274,22 @@ IR::Value IREmitter::ByteReverseDual(const IR::Value& a) {
|
|||
return Inst(IR::Opcode::ByteReverseDual, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::TransferToFP32(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::TransferToFP32, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::TransferToFP64(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::TransferToFP64, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::TransferFromFP32(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::TransferFromFP32, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::TransferFromFP64(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::TransferFromFP64, {a});
|
||||
}
|
||||
|
||||
IR::Value IREmitter::FPAbs32(const IR::Value& a) {
|
||||
return Inst(IR::Opcode::FPAbs32, {a});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue