| 9 | |
| 10 | namespace FEXCore::CPU { |
| 11 | DEF_OP(Copy) { |
| 12 | auto Op = IROp->C<IR::IROp_Copy>(); |
| 13 | |
| 14 | mov(ARMEmitter::Size::i64Bit, GetReg(Node), GetReg(Op->Source)); |
| 15 | } |
| 16 | |
| 17 | DEF_OP(RMWHandle) { |
| 18 | mov(ARMEmitter::Size::i64Bit, GetReg(Node), GetReg(IROp->Args[0])); |
nothing calls this directly
no outgoing calls
no test coverage detected