| 68 | } |
| 69 | |
| 70 | bool IsMovRegsInstr(const R5900::OPCODE& op, u32 rawOp) |
| 71 | { |
| 72 | if (op.flags & IS_ALU) |
| 73 | return (op.flags & ALUTYPE_MASK) == ALUTYPE_ADDI && (_RS == 0 || _RT == 0); |
| 74 | |
| 75 | return false; |
| 76 | } |
| 77 | |
| 78 | bool ScanForAllocaSignature(DebugInterface* cpu, u32 pc) |
| 79 | { |
no outgoing calls
no test coverage detected